/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #00091A;
    --secondary-bg: #112240;
    --card-bg: #1a2942;
    --accent-green: #00ff88;
    --text-white: #ffffff;
    --text-gray: #a8b2d1;
    --border-color: #233554;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: url(../images/body-bcg.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 20px;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent.hidden {
    display: none;
}

.cookie-content {
    background: linear-gradient(135deg, #1a2942 0%, #0f1b2e 100%);
    border-radius: 20px;
    padding: 30px 40px;
    max-width: 650px;
    margin: 0 auto;
    border-radius: 30px;
border: 2px solid rgba(21, 197, 109, 0.30);
background: #0F1D39;
box-shadow: 0 0 20px 0 rgba(21, 197, 109, 0.30);
}

.cookie-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-white);
}

.cookie-text {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-accept-all {
    background: var(--accent-green);
    color: var(--primary-bg);
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-accept-all:hover {
    background: #00dd77;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.btn-cookie-settings {
    background: transparent;
    color: var(--accent-green);
    border: 2px solid var(--accent-green);
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cookie-settings:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-2px);
}

/* Header */
.header {
    
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}



.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-green);
}

/* Burger Button */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.burger-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition);
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    position: relative;

}

.hero-title {
    font-size: 68px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-green {
    color: var(--accent-green);
}

.hero-description {
    color: var(--text-gray);
    font-size: 15px;
    max-width: 890px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.btn-primary {
    border-radius: 60px;
background: linear-gradient(0deg, #15C56D 0%, #45FFA2 100%);
box-shadow: 0 5px 21px 0 rgba(21, 197, 109, 0.65);
    color: var(--primary-bg);
}

.btn-primary:hover {
  
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-green);
    border-radius: 60px;
border: 1px solid #45FFA2;
}

.btn-secondary:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-2px);
}

.hero-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature-badge {
    background: var(--secondary-bg);
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 13px;
    color: var(--text-gray);
    border: 1px solid var(--border-color);
}

.hero-icon {
    margin: 50px 0;
    display: flex;
    justify-content: center;
}

.spinner-icon {
    width: 100%;
   max-width: 140px;
    animation: rotate 3s linear infinite;
}

.spinner-icon img {
    width: 100%;
}



@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    width: 100%;
    border-radius: 60px;
background: rgba(255, 255, 255, 0.06);
padding: 14px 30px;
}

.hero-footer-text {
    color: #fff;
    font-size: 13px;
}

.gamcare-logo {
  max-width: 94px;
}

/* platforms Section */
.platforms {
    padding: 60px 0;
}

.platform-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 22px;
border: 2px solid rgba(21, 197, 109, 0.30);
background: #0F1D39;
    position: relative;
    transition: var(--transition);
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.platform-badge {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 22px 0;
background: #15C56D;
   color: #020E2B;
font-family: Poppins;
font-size: 13px;
font-style: normal;
font-weight: 700;
line-height: normal;
    padding: 7px 20px;

   
}



.platform-header {
    display: flex;
   justify-content: space-between;
    gap: 30px;
    align-items: center;
}

.platform-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 205px;
    width: 100%;
}

.platform-logo img {
    width: 100%;
    height: auto;
}

.platform-info {
    text-align: center;
    max-width: 624px;
}

.platform-bonus-label {
    color: #fff;
    font-size: 14px;
    margin-bottom: 8px;
}

.platform-bonus {
    color: #15C56D;
text-align: center;
font-family: Poppins;
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: normal;
}


.platform-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 195px;
    width: 100%;
}

.platform-rating {
    display: flex;
  justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
}

.stars {
    color: #ffd700;
    font-size: 14px;
    letter-spacing: 2px;
}

.rating-value {
    color: #15C56D;
    font-size: 16px;
    font-weight: 600;
}

.btn-play {
    border-radius: 60px;
background: linear-gradient(0deg, #15C56D 0%, #45FFA2 100%);
    color: var(--primary-bg);
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    width: 100%;
    text-align: center;
}

.btn-play:hover {
    
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.affiliate-disclosure {
    border-radius: 60px;
background: rgba(255, 255, 255, 0.06);
    padding: 20px 25px;
text-align: center;
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-top: 30px;
   
}

.affiliate-disclosure strong {
    color: var(--text-white);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-image: url(../images/faq.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 50px;
}

.faq-list {
  width: 100%;
    margin: 0 auto;
}

.faq-item {
    
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 22px;
background: rgba(21, 197, 109, 0.15);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.faq-question:hover {
    background: rgba(0, 255, 136, 0.05);
}

.faq-icon {
    color: var(--accent-green);
    font-size: 14px;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
}

.faq-footer {
    text-align: center;
    color: var(--text-gray);
    font-size: 13px;
    margin-top: 40px;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-intro {
    text-align: center;
    color: var(--text-gray);
    font-size: 15px;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.div1 {
    grid-column: span 4 / span 4;
    grid-row: span 2 / span 2;
}

.div2 {
    grid-column: span 4 / span 4;
    grid-column-start: 5;
}

.div3 {
    grid-column: span 4 / span 4;
    grid-column-start: 5;
    grid-row-start: 2;
}

.div4 {
    grid-column: span 8 / span 8;
    grid-row-start: 3;
}

.about-item {
    border-radius: 30px;
background: rgba(21, 197, 109, 0.15);
padding: 20px;
display: flex;
gap: 20px;
justify-content: space-between;
}

.about-item:first-of-type {
    flex-direction: column;
    align-items: flex-end;
}

.ab-icon {
    max-width: 100px;
    width: 100%;
    margin-top: auto;
}

.about-subtitle {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-white);
}

.about-column > p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-list {
    list-style: none;
    color: #fff;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 30px;
}

.about-list li {
    padding-left: 20px;
    position: relative;
}

.about-list li::before {
    content: '•';
    color: var(--accent-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}



.responsible-gambling {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    position: relative;
    border: 1px solid var(--border-color);
}

.rg-text {
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.rg-list {
    display: flex;
    gap: 30px;
    list-style: none;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.rg-list li {
    color: #fff;
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.rg-list li::before {
    content: '•';
    color: var(--accent-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.rg-footer {
    color:#fff;
    font-size: 14px;
}

/* Footer */
.footer {
    background: var(--secondary-bg);
    padding: 50px 0 30px;
    border-top: 3px solid #15C56D;
border-bottom: 3px solid #15C56D;
background: rgba(255, 255, 255, 0.05);
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-logo {
    
}

.age-restriction {
    background: #ff4444;
    color: var(--text-white);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
}

.footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
}

.footer-disclaimer {
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--text-white);
}

.footer-copyright {
    text-align: center;
    color: var(--text-gray);
    font-size: 12px;
    margin-top: 30px;
}

/* Responsive Design */

/* Tablet */
@media (max-width: 1023px) {
    .platform-header {
        grid-template-columns: 120px 1fr;
        gap: 20px;
    }

    .platform-rating,
    .btn-play {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .platform-rating {
        flex-direction: row;
        gap: 10px;
        margin-top: 10px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.platform-rating_mod{
    display: none;
}

@media (max-width: 768px) {
    /* Header */
    .burger-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
       background-color: #00091A;
        background-image: url(../images/menu.png);
        background-position: center;
        background-size: cover;
        padding: 80px 30px 30px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .nav-link {
        font-size: 16px;
    }

    .nav-link.active::after {
        bottom: -5px;
    }

    /* Hero */
    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    /* platform Cards */
    .platform-header {
        grid-template-columns: 1fr;
        text-align: center;
        flex-wrap: wrap;
        justify-content: center;
    }

    .platform-logo {
        flex: 0 1 40%;
    }

    .platform-info {
        flex: 0 1 46%;
    }
    .platform-bonus-label{
        display: none;
    }

    .platform-rating{
        display: none;
    }

    .platform-rating_mod{
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        margin-left: auto;
        margin-top: 0;
    }



    .platform-right {
        max-width: none;
        width: 80%;
    }

    .btn-play {
        width: 100%;
    }

    .about-content {
        display: flex;
        flex-direction: column;
    }

    /* Cookie */
    .cookie-content {
        padding: 25px 25px;
    }

    .cookie-title {
        font-size: 24px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .btn-accept-all,
    .btn-cookie-settings {
        width: 100%;
    }

    /* Section titles */
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 520px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-features {
       flex-wrap: nowrap;
       gap: 10px;
    }

    .feature-badge {
        width: 100%;
        max-width: 250px;
        text-align: center;
        padding: 10px;
        font-size: 12px;
    }

    .platform-card {
        padding: 20px;
    }

    .platform-badge {
       
    }

    .platform-info {
        flex: 0 1 50%;
    }

    .platform-bonus {
        font-size: 14px;
        line-height: 1.2;
    }

    .faq-question {
        font-size: 14px;
        padding: 15px 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .about-item {
        flex-direction: column;
        align-items: flex-end;
    }

    .about-subtitle {
        font-size: 18px;
    }

    .responsible-gambling {
        padding: 25px 20px;
    }

    .rg-list {
        flex-direction: column;
        gap: 10px;
    }

    .footer-logos {
        gap: 16px;
    }
}
              .page {
                padding: 120px 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;
                }

                