/* Ph777login Click - CSS Styles */
/* All classes use u1e3b- prefix for namespace isolation */

/* CSS Variables - Color Palette */
:root {
  --u1e3b-primary: #556B2F;
  --u1e3b-secondary: #F5F5DC;
  --u1e3b-accent: #2F4F4F;
  --u1e3b-highlight: #FF6347;
  --u1e3b-purple: #DDA0DD;
  --u1e3b-dark: #1a1a1a;
  --u1e3b-light: #ffffff;
  --u1e3b-gray: #666666;
  --u1e3b-light-gray: #f5f5f5;
  --u1e3b-border: #e0e0e0;
  --u1e3b-shadow: rgba(0, 0, 0, 0.1);
  --u1e3b-gradient: linear-gradient(135deg, var(--u1e3b-primary), var(--u1e3b-accent));
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--u1e3b-secondary);
  color: var(--u1e3b-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

/* Header Styles */
.u1e3b-header {
  background: var(--u1e3b-gradient);
  box-shadow: 0 2px 10px var(--u1e3b-shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.u1e3b-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.u1e3b-logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--u1e3b-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.u1e3b-logo i {
  font-size: 28px;
  color: var(--u1e3b-highlight);
}

.u1e3b-nav {
  display: none;
}

.u1e3b-header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.u1e3b-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.u1e3b-btn-primary {
  background: var(--u1e3b-highlight);
  color: var(--u1e3b-light);
}

.u1e3b-btn-primary:hover {
  background: #e55a3c;
  transform: translateY(-2px);
}

.u1e3b-btn-secondary {
  background: var(--u1e3b-purple);
  color: var(--u1e3b-light);
}

.u1e3b-btn-secondary:hover {
  background: #c48ac4;
  transform: translateY(-2px);
}

.u1e3b-hamburger {
  display: block;
  background: none;
  border: none;
  color: var(--u1e3b-light);
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
}

/* Mobile Menu */
.u1e3b-mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: var(--u1e3b-light);
  box-shadow: -2px 0 10px var(--u1e3b-shadow);
  z-index: 9999;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.u1e3b-mobile-menu.active {
  right: 0;
}

.u1e3b-menu-header {
  background: var(--u1e3b-gradient);
  color: var(--u1e3b-light);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.u1e3b-menu-close {
  background: none;
  border: none;
  color: var(--u1e3b-light);
  font-size: 24px;
  cursor: pointer;
}

.u1e3b-menu-nav {
  padding: 20px;
}

.u1e3b-menu-nav ul {
  list-style: none;
}

.u1e3b-menu-nav li {
  margin-bottom: 15px;
}

.u1e3b-menu-nav a {
  color: var(--u1e3b-dark);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.u1e3b-menu-nav a:hover {
  background: var(--u1e3b-light-gray);
  color: var(--u1e3b-primary);
}

.u1e3b-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.u1e3b-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Main Content */
.u1e3b-main {
  margin-top: 70px;
}

.u1e3b-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.u1e3b-hero {
  background: var(--u1e3b-secondary);
  padding: 40px 0;
  text-align: center;
}

.u1e3b-hero h1 {
  font-size: 32px;
  color: var(--u1e3b-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.u1e3b-hero p {
  font-size: 18px;
  color: var(--u1e3b-gray);
  margin-bottom: 30px;
}

/* Carousel Styles */
.u1e3b-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto 40px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--u1e3b-shadow);
}

.u1e3b-carousel-container {
  position: relative;
  width: 100%;
  height: 300px;
}

.u1e3b-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.u1e3b-carousel-slide.active {
  opacity: 1;
}

.u1e3b-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.u1e3b-carousel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--u1e3b-light);
  padding: 30px;
  text-align: center;
}

.u1e3b-carousel-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.u1e3b-carousel-content p {
  font-size: 16px;
  margin-bottom: 15px;
}

.u1e3b-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.u1e3b-carousel-prev {
  left: 20px;
}

.u1e3b-carousel-next {
  right: 20px;
}

.u1e3b-carousel-nav:hover {
  background: var(--u1e3b-light);
  transform: translateY(-50%) scale(1.1);
}

.u1e3b-carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.u1e3b-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.u1e3b-carousel-dot.active {
  background: var(--u1e3b-highlight);
  transform: scale(1.2);
}

/* Section Styles */
.u1e3b-section {
  padding: 60px 0;
}

.u1e3b-section-title {
  text-align: center;
  font-size: 28px;
  color: var(--u1e3b-primary);
  margin-bottom: 40px;
  font-weight: 700;
}

/* Game Categories */
.u1e3b-categories {
  background: var(--u1e3b-light);
}

.u1e3b-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.u1e3b-filter-btn {
  padding: 12px 24px;
  border: 2px solid var(--u1e3b-border);
  background: var(--u1e3b-light);
  color: var(--u1e3b-gray);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.u1e3b-filter-btn.active,
.u1e3b-filter-btn:hover {
  background: var(--u1e3b-primary);
  color: var(--u1e3b-light);
  border-color: var(--u1e3b-primary);
}

/* Game Grid */
.u1e3b-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.u1e3b-game-card {
  background: var(--u1e3b-light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--u1e3b-shadow);
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
}

.u1e3b-game-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.u1e3b-game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--u1e3b-shadow);
}

.u1e3b-game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.u1e3b-game-card:hover .u1e3b-game-image {
  transform: scale(1.05);
}

.u1e3b-game-info {
  padding: 20px;
}

.u1e3b-game-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--u1e3b-primary);
  margin-bottom: 8px;
}

.u1e3b-game-category {
  font-size: 14px;
  color: var(--u1e3b-gray);
  margin-bottom: 15px;
}

.u1e3b-game-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}

.u1e3b-stars {
  color: #ffd700;
}

.u1e3b-rating-text {
  font-size: 14px;
  color: var(--u1e3b-gray);
}

.u1e3b-play-btn {
  width: 100%;
  padding: 12px;
  background: var(--u1e3b-gradient);
  color: var(--u1e3b-light);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.u1e3b-play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--u1e3b-shadow);
}

/* Content Modules */
.u1e3b-content-modules {
  background: var(--u1e3b-light);
}

.u1e3b-modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.u1e3b-module {
  background: var(--u1e3b-light-gray);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.u1e3b-module:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--u1e3b-shadow);
}

.u1e3b-module-icon {
  font-size: 48px;
  color: var(--u1e3b-primary);
  margin-bottom: 20px;
}

.u1e3b-module h3 {
  font-size: 20px;
  color: var(--u1e3b-primary);
  margin-bottom: 15px;
}

.u1e3b-module p {
  color: var(--u1e3b-gray);
  line-height: 1.6;
}

/* Partners Section */
.u1e3b-partners {
  background: var(--u1e3b-secondary);
  text-align: center;
}

.u1e3b-partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.u1e3b-partner {
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.u1e3b-partner:hover {
  opacity: 1;
  transform: scale(1.1);
}

.u1e3b-partner img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Bottom Navigation */
.u1e3b-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--u1e3b-light);
  box-shadow: 0 -2px 10px var(--u1e3b-shadow);
  z-index: 1000;
  display: none;
}

.u1e3b-bottom-nav-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  padding: 0 10px;
}

.u1e3b-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 50px;
  background: none;
  border: none;
  color: var(--u1e3b-gray);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.u1e3b-bottom-nav-item:hover,
.u1e3b-bottom-nav-item.active {
  color: var(--u1e3b-primary);
  background: var(--u1e3b-light-gray);
  transform: translateY(-2px);
}

.u1e3b-bottom-nav-item i {
  font-size: 24px;
  margin-bottom: 2px;
}

/* Footer */
.u1e3b-footer {
  background: var(--u1e3b-accent);
  color: var(--u1e3b-light);
  padding: 40px 0 20px;
}

.u1e3b-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.u1e3b-footer-section h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--u1e3b-highlight);
}

.u1e3b-footer-section ul {
  list-style: none;
}

.u1e3b-footer-section li {
  margin-bottom: 8px;
}

.u1e3b-footer-section a {
  color: var(--u1e3b-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.u1e3b-footer-section a:hover {
  color: var(--u1e3b-highlight);
}

.u1e3b-footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Toast Notification */
.u1e3b-toast {
  position: fixed;
  top: 100px;
  right: 20px;
  background: var(--u1e3b-primary);
  color: var(--u1e3b-light);
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px var(--u1e3b-shadow);
  z-index: 10000;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
}

.u1e3b-toast.show {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Design */
@media (min-width: 769px) {
  .u1e3b-bottom-nav {
    display: none !important;
  }

  .u1e3b-main {
    padding-bottom: 0;
  }

  .u1e3b-nav {
    display: block;
  }

  .u1e3b-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
  }

  .u1e3b-nav a {
    color: var(--u1e3b-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .u1e3b-nav a:hover {
    color: var(--u1e3b-highlight);
  }

  .u1e3b-hamburger {
    display: none;
  }

  .u1e3b-hero h1 {
    font-size: 48px;
  }

  .u1e3b-carousel-container {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .u1e3b-main {
    padding-bottom: 80px;
  }

  .u1e3b-bottom-nav {
    display: block;
  }

  .u1e3b-games-grid {
    grid-template-columns: 1fr;
  }

  .u1e3b-modules-grid {
    grid-template-columns: 1fr;
  }

  .u1e3b-partners-grid {
    gap: 20px;
  }

  .u1e3b-partner {
    width: 80px;
    height: 40px;
  }

  .u1e3b-footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .u1e3b-header-container {
    padding: 0 15px;
  }

  .u1e3b-hero {
    padding: 30px 0;
  }

  .u1e3b-hero h1 {
    font-size: 28px;
  }

  .u1e3b-section {
    padding: 40px 0;
  }

  .u1e3b-section-title {
    font-size: 24px;
  }

  .u1e3b-filter-tabs {
    gap: 10px;
  }

  .u1e3b-filter-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}