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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff;
    font-size: 16px;
    background: rgba(0, 0, 0, 1);

    overflow-x: hidden;
}

.hidden {
    display: none;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.15);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #000;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
}

.modal-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: 2px;
}

.modal-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #fff;
}

.modal-content a {
    color: #fff;
    text-decoration: underline;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-enter, .btn-leave {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
    font-family: 'Inter', sans-serif;
}

.btn-enter {
    background: rgba(249, 255, 87, 1);
    color: #000;
}

.btn-enter:hover {
    background: rgba(249, 255, 87, 0.7);
    transform: translateY(-2px);
}

.btn-leave {
    background: rgba(249, 255, 87, 1);
    color: #000;
}

.btn-leave:hover {
    background: rgba(249, 255, 87, 0.7);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    text-decoration: unset;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: rgba(249, 255, 87, 1);
}

.age-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    font-family: 'Passion One';
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #fff;
    padding-left: 20px;
    padding-right: 20px;
}

.age-icon {
    background: #e74c3c;
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.8rem;
}

/* Hero Section */
.hero {
  position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 600px;
    padding-bottom: 150px;
    background: url(./images/hero-bg.png) no-repeat center;
    background-size: cover;

}

@media (max-width:768px){
    .hero {
      background: url(./images/hero-bg-mob.png) no-repeat center;
      background-size: cover;
      padding-top: 580px;
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff;
    max-width: 610px;
    text-align: center;
}


/* Social Casino Section */
.social-casino-section {
    padding: 80px 2rem 40px;
    text-align: center;
}

.section-title {
  font-family: 'Passion One';
  font-weight: 700;
  font-size: 100px;
  line-height: 82%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 12px;
}

@media (max-width:768px){
    .section-title {
      font-size: 48px;
    }
}

.social-casino-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

/* Popular Games Section */
.popular-games {
    padding: 40px 2rem;
}
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 20px;
}

.game-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    height: 140px;
}

.game-card:hover {
    transform: translateY(-10px) !important;
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    padding: 2rem 1rem 1rem;
    font-family: 'Passion One';
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
}

/* Free to Play Section */
.free-to-play {
    padding: 6rem 2rem;
    background: #000;
    text-align: center;
}

.free-to-play h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #fff;
    letter-spacing: 2px;
}

.free-to-play > p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #fff;
}

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

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
   position: relative;
   overflow: hidden;
    padding: 2rem;
    border-radius: 10px;
    text-align: left;
    transition: transform 0.3s ease;
    height: 500px;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
  position: absolute;
  top: 0;
  left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card h3 {
    font-family: 'Passion One';
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #fff;
    z-index: 2;
    position: relative;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
    z-index: 2;
    position: relative;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    text-align: center;
   background: linear-gradient(90deg, #7130F0 0%, #7FDBF9 100%);
}

.cta-section h2 {
    margin-bottom: 12px;
    color: #fff;
    font-family: 'Passion One';
    font-weight: 700;
    font-size: 64px;
    line-height: 110%;
    text-align: center;
    text-transform: uppercase;

}

.cta-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 12px;
    color: #fff;
}

.cta-button {
    background: rgba(249, 255, 87, 1);
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.05);
    text-decoration: unset;
    color: #000;
    width: max-content;
    max-width: 100%;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: rgba(249, 255, 87, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #000;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
}

.age-restriction {
   
}

.disclaimer h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.disclaimer ul {
    list-style: none;
    margin-bottom: 2rem;
}

.disclaimer p {
  text-align: left;
}

.disclaimer li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: left;
}

.disclaimer li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(249, 255, 87, 1);
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 24px;
    padding-bottom: 24px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: rgba(249, 255, 87, 1);
}

.copyright {
    font-size: 0.9rem;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .modal-content {
        padding: 2rem;
        margin: 1rem;
    }
}

@media (max-width: 480px) {
    
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .social-casino-section,
    .popular-games,
    .free-to-play,
    .cta-section {
        padding: 4rem 1rem;
    }
    

    
    .modal-content h2 {
        font-size: 1.5rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.social-casino-section,
.popular-games,
.free-to-play,
.cta-section {
    animation: fadeIn 0.8s ease-out;
}

.game-content {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 40px;
  align-items: center;
}


.game-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.game-text h1 {
  font-family: 'Passion One';
  font-weight: 700;
  font-size: 100px;
  line-height: 82%;
  text-transform: uppercase;
  word-break: break-word;
}



.game-text p {
  margin-bottom: 56px;
}

.game-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.game-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.game {
  margin-top: 80px;
  padding-top: 60px;
  padding-bottom: 60px;
}


@media (max-width:768px){
    .game-content {
      display: flex;
      flex-direction: column-reverse;
    }

    .game-text h1 {
      font-size: 64px;
    }
    .game {
      margin-top: 120px;
    }
}

#game-play {
  background: rgba(255, 255, 255, 0.1);
  max-width: 996px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 996/540;
  border-radius: 30px;
  overflow: hidden;
  margin-top: 60px;
}

@media (max-width:1000px){
    #game-play { 
      margin-left: 20px;
      margin-right: 20px;
      width: calc(100% - 40px);
    }
}

#game-play iframe {
  width: 100%;
  height: 100%;
}

.policy {
  margin-top: 120px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.policy-content {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.policy-content h1 {
  font-family: 'Passion One';
  font-weight: 700;
  font-size: 64px;
  line-height: 110%;
  text-align: center;
  text-transform: uppercase;
}

.policy-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy-text li {
  list-style-position: inside;
}