/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary {
    border-radius: 8px;
background: #B739E5;
    color: #fff;
    padding: 12px 24px;
    border: none;

    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #91389f, #8842b3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(155, 74, 195, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 12px 24px;
    border: 2px solid white;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: #4a90a4;
}

.btn-play {
    display: flex;
    border-radius: 8px;
background: #B739E5;
    color: #fff;
    padding: 10px 20px;
    border: none;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
    text-align: center;
    justify-content: center;
}

.btn-play:hover {
    background: linear-gradient(135deg, #91389f, #8842b3);
    transform: translateY(-1px);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #4a90a4, #5a9db0);
    color: white;
    z-index: 1001;
    padding: 20px 0;
    border-radius: 0 0 20px 20px;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.cookie-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cookie-content p {
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cookie-content a {
    color: #8bc34a;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-consent.hidden {
    display: none;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    padding: 20px;
}

.age-content {
    background: linear-gradient(135deg, #4a90a4, #5a9db0);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.age-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.age-content p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-modal.hidden {
    display: none;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #2F2F2F;
text-align: center;
font-family: Montserrat;
font-size: 24px;
font-style: normal;
font-weight: 800;
line-height: 140%; /* 33.6px */
    text-decoration: none;
}

.logo-icon {
    
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #4a90a4;
}

.nav-games-btn {
   border-radius: 8px;
background: #B739E5;
    color: #fff !important;
    padding: 8px 20px;
    border: none;
   
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-games-btn:hover {
    background: #a835d2;
    transform: translateY(-1px);
}

/* Warning Banner */
.warning-banner {
   background: #B739E5;
    color: white;
    padding: 10px 0;
    text-align: center;
}

.warning-banner p {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Hero Section */
.hero {
    
   
    padding: 48px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="30" opacity="0.1">♠♥♦♣</text></svg>');
    background-repeat: repeat;
    background-size: 100px 100px;
    opacity: 0.1;
}

.hero-content {
    
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background-image: url(../images/hero.png);
    background-position: center;
    background-size: cover;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 1008px;
    width: 100%;
}

.hero-image {
    margin-top: 40px;
    max-width: 560px;
    width: 100%;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-header {
   
    margin-bottom: 30px;
}

.about-header h2 {
    border-radius: 8px;
background: #EAF4E9;
    color: #4a90a4;
    font-size: 20px;
    padding: 4px 12px;
    margin-bottom: 10px;
    font-weight: 500;
    width: fit-content;
}

.about-header h3 {
    color: #333;
    font-size: 36px;
    font-weight: 700;
}

.about-content {
    
}

.about-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #666;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature {
    text-align: center;
    padding: 24px 20px;
    border-radius: 8px;
background: #F1E9F4;
}

.feature h4 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Games Section */
.games {
    padding: 80px 0;
    background: #f8f9fa;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.game-card {
    
    
    overflow: hidden;
    
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    
}

.game-image {
    width: 100%;
   
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-content {
    padding-top: 25px;
}

.game-content h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.game-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Contact Form */
.contact {
    padding: 80px 0;
 
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input {
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
  
    color: #000;
    border-radius: 8px;
border: 1px solid #000;
    transition: all 0.3s ease;
}

.contact-form input::placeholder {
   
}

.contact-form input:focus {
    outline: none;
    border-color: #8bc34a;
    background: rgba(255, 255, 255, 0.15);
}

.btn-submit {
    border-radius: 8px;
background: #B739E5;
    color: white;
    padding: 15px 30px;
    border: none;
   
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    border-radius: 8px;
background: #8e2cb2;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #B739E5;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-disclaimer {
    margin-bottom: 40px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.footer-icons {
    margin-bottom: 40px;
}

.platform-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    max-width: 400px;
    width: 100%;
    margin: 0 auto 20px;
}

.platform-icons img {
    width: 100%;
}

.age-icon {
    background: white;
    color: #4a90a4;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid white;
}

.platform-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.platform-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-links {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    font-size: 14px;
    opacity: 0.9;
    text-decoration: none;
}

.footer-partners {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.partner-logos-container {
    background: white;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    max-width: 910px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
}

.gamcare {
    align-items: center;
}

.logo-g {
    background: #6f4e8c;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.gamcare-text {
    font-weight: 700;
    font-size: 16px;
    color: #6f4e8c;
}

.gamcare-subtitle {
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

.therapy {
    flex-direction: column;
    text-align: center;
    position: relative;
}

.therapy-text {
    background: #ff6b35;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
}

.therapy-highlight {
    background: #ff6b35;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 2px;
}

.therapy-symbol {
    color: #ff6b35;
    font-size: 20px;
    margin-top: 5px;
}

.gambleaware {
    align-items: center;
}

.gamble-text {
    color: #333;
    font-weight: 700;
    font-size: 18px;
}

.aware-text {
    color: #ff6b35;
    font-weight: 700;
    font-size: 18px;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.footer-copyright p {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-icons {
        flex-direction: column;
        gap: 20px;
    }
    
    .platform-icons {
        gap: 15px;
    }
    
    .partner-logos-container {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }
    
    .partner-logo {
        justify-content: center;
    }
    
    .cookie-buttons,
    .age-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .age-content {
        padding: 30px 20px;
    }
    
    .cookie-content {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .about,
    .games,
    .contact {
        padding: 60px 0;
    }
    
    .about-header h3 {
        font-size: 28px;
    }
    
    .game-card {
        margin: 0 10px;
    }
}

.page-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-image img {
    width: 100%;
}

iframe {
    width: 100%;
    aspect-ratio: 11 / 6;
    border-radius: 10px;
    margin-bottom: 30px;
}

              .page {
                padding: 180px 0 80px;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                