* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Kanit', Arial, sans-serif;
  background-color: #1a1a1a;
  color: #fff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  box-shadow: 0 2px 20px rgba(255, 215, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.logo svg {
  filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
  color: #FFD700;
  background: rgba(255, 215, 0, 0.1);
}

.cta-button {
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #1a1a1a;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.cta-button.large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #FFD700;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.hero-cta {
  display: inline-block;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #1a1a1a;
  padding: 1.2rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.hero-image {
  text-align: center;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: #2d2d2d;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #FFD700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin: 1rem 0;
  color: #FFD700;
}

.feature-card p {
  color: #ccc;
  line-height: 1.8;
}

/* Get Started Section */
.get-started {
  padding: 80px 0;
  background: #1a1a1a;
}

.get-started h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #FFD700;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.step-card {
  padding: 2rem;
}

.step-card h3 {
  font-size: 1.5rem;
  margin: 1rem 0;
  color: #FFD700;
}

.step-card p {
  color: #ccc;
}

/* Why Us Section */
.why-us {
  padding: 80px 0;
  background: #2d2d2d;
}

.why-us h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: #FFD700;
}

.why-us-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.why-us-item:nth-child(even) .why-us-image {
  order: 2;
}

.why-us-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.why-us-content h3 {
  font-size: 2rem;
  color: #FFD700;
  margin-bottom: 1.5rem;
}

.why-us-content p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

/* Latest Articles Section */
.latest-articles {
  padding: 80px 0;
  background: #1a1a1a;
}

.latest-articles h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #FFD700;
}

/* Content Section */
.content {
  padding: 80px 0;
  background: #1a1a1a;
}

.content article {
  max-width: 1000px;
  margin: 0 auto;
}

.content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #FFD700;
  text-align: center;
}

.content h3 {
  font-size: 2rem;
  margin: 3rem 0 1.5rem;
  color: #FFD700;
}

.content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #ccc;
}

/* FAQ Section */
.faq {
  margin: 4rem 0;
}

.faq h3 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #FFD700;
}

.faq-item {
  background: #2d2d2d;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #FFD700;
}

.faq-item h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #FFD700;
}

.faq-item p {
  color: #ccc;
  line-height: 1.7;
}

/* Summary Section */
.summary {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  padding: 3rem;
  border-radius: 20px;
  margin: 4rem 0;
  border: 2px solid rgba(255, 215, 0, 0.1);
}

.summary h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #FFD700;
  text-align: center;
}

.summary p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ccc;
  text-align: center;
}

/* Page Hero */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  color: #FFD700;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.3rem;
  color: #ccc;
}

/* Promotions Grid */
.promotions-grid {
  padding: 60px 0;
  background: #2d2d2d;
}

.promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.promo-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s;
}

.promo-card.featured {
  border-color: #FFD700;
  transform: scale(1.05);
}

.promo-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #FFD700;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.promo-icon {
  margin-bottom: 1.5rem;
}

.promo-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #FFD700;
}

.promo-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 1.5rem;
}

.promo-details {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
}

.promo-details li {
  padding: 0.5rem 0;
  color: #ccc;
  position: relative;
  padding-left: 1.5rem;
}

.promo-details li::before {
  content: '\2713';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.promo-btn {
  display: inline-block;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #1a1a1a;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1rem;
  transition: all 0.3s;
}

.promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Games Grid */
.games-grid {
  padding: 60px 0;
  background: #1a1a1a;
}

.game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.game-category {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s;
}

.game-category:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.game-category h3 {
  font-size: 1.8rem;
  margin: 1.5rem 0;
  color: #FFD700;
}

.game-category p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.game-providers {
  margin: 4rem 0;
  text-align: center;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.provider-card {
  background: #2d2d2d;
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s;
}

.provider-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-5px);
}

.provider-card h4 {
  color: #FFD700;
  margin-bottom: 1rem;
}

/* Articles Grid */
.articles-grid {
  padding: 60px 0;
  background: #2d2d2d;
}

.articles-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.article-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s;
}

.article-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.article-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #FFD700;
}

.article-card h3 a {
  color: #FFD700;
  text-decoration: none;
}

.article-card h3 a:hover {
  color: #FFA500;
}

.article-meta {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.article-card p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Register Form */
.register-form {
  padding: 60px 0;
  background: #1a1a1a;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #FFD700;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  background: #1a1a1a;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: #FFD700;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #FFD700;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #FFD700;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  color: #999;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero .container, .why-us-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .why-us-item:nth-child(even) .why-us-image {
    order: 1;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .features h2,
  .content h2,
  .get-started h2,
  .why-us h2,
  .latest-articles h2,
  .page-hero h1 {
    font-size: 2rem;
  }
  
  .feature-card, .promo-card {
    padding: 2rem;
  }
  
  .nav-container {
    padding: 1rem;
  }
}