/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff4081 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 157, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #ff6b9d;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: block;
    text-decoration: none;
    width: fit-content;
   
}

.btn-secondary:hover {
    background: #ff6b9d;
    color: white;
    transform: translateY(-2px);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cookie-modal,
.age-modal {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-overlay.active .cookie-modal,
.modal-overlay.active .age-modal {
    transform: scale(1);
}

.cookie-icon,
.age-icon {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff4081 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-weight: bold;
}

.cookie-modal h2,
.age-modal h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cookie-modal p,
.age-modal p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #cccccc;
    line-height: 1.6;
}

.cookie-modal a {
    color: #ff6b9d;
    text-decoration: none;
}

.cookie-modal a:hover {
    text-decoration: underline;
}

.cookie-modal .btn-secondary,
.age-modal .btn-secondary {
    margin-top: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #cccccc;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 15px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    font-family: "Irish Grover", system-ui;
    text-decoration: none;
}

.logo-icon {
    margin-right: 10px;
    font-size: 28px;
}

.nav-pill {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff4081 100%);
    border-radius: 50px;
    padding: 8px 25px;
    border-radius: 84px;
border: 1px solid rgba(255, 255, 255, 0.10);
background: #FF4D80;
box-shadow: 0 0 22px 0 rgba(0, 0, 0, 0.10), 0 12px 20px 0 rgba(255, 255, 255, 0.20) inset;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.nav-list a:hover {
    opacity: 0.8;
}

/* Disclaimer Notice */
.disclaimer-notice {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 12px 20px;
    border-radius: 40px;
border: 1px solid #FF4D80;
background: rgba(255, 255, 255, 0.02);
    max-width: fit-content;
    margin: 0 auto;
}

.disclaimer-icon {
    background: #ffffff;
    color: #000000;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.disclaimer-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-btn span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    padding: 260px 0 100px;
   
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
    position: relative;
    overflow: hidden;
    background-image: url(../images/hero.png);
    background-position: center;
    background-size: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255, 64, 129, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    width: 100%;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    color: #cccccc;
    max-width: 800px;
    margin: 0 0 40px;
}

/* About Section */
.about {
    background: rgba(255, 255, 255, 0.02);
}

.about h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.about-text {
    border-radius: 24px;
background: linear-gradient(0deg, rgba(0, 0, 0, 0.00) 0%, rgba(255, 77, 128, 0.40) 90.27%);
padding: 24px;
}

.about-text p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 20px;
    text-align: center;
   width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Perspective Section */
.perspective {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(255, 64, 129, 0.05) 100%);
}

.perspective h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.perspective-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.perspective-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border-radius: 24px;
background: linear-gradient(0deg, rgba(0, 0, 0, 0.00) 0%, rgba(255, 77, 128, 0.40) 90.27%);
}

.perspective-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ff6b9d;
}

.perspective-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Trust Section */
.trust h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.trust-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.trust-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
}

.trust-item p {
    color: #cccccc;
    font-size: 14px;
}

/* Featured Game Section */
.featured-game {
    background: rgba(255, 255, 255, 0.02);
}

.game-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.game-image {
    position: relative;
}

.game-image img {
    width: 100%;
}

.game-placeholder {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff4081 100%);
    height: 300px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.game-placeholder h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.game-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #ffffff;
}

.game-details {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.game-details p {
    color: #cccccc;
    margin-bottom: 5px;
}

.game-info > p {
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Gallery Section */
.gallery h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
  
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
}

.gallery-item img {
    width: 100%;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cccccc;
    font-weight: 500;
    background: linear-gradient(45deg, rgba(255, 107, 157, 0.1), rgba(255, 64, 129, 0.1));
}

/* Featured Titles Section */
.featured-titles {
    background: rgba(255, 255, 255, 0.02);
}

.featured-titles h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.game-image-placeholder {
   width: 100%;
   
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b9d;
    font-weight: 600;
    font-size: 18px;
    padding: 20px;
}

.game-image-placeholder img {
    width: 100%;
}

.game-card-content {
    padding: 20px;
}

.game-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffffff;
}

.game-card p {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Community Section */
.community {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(255, 64, 129, 0.05) 100%);
}

.community-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.community h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #ffffff;
}

.community p {
    color: #cccccc;
    margin-bottom: 40px;
    font-size: 16px;
}

.community-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder {
    color: #888888;
}

.form-group input:focus {
    outline: none;
    border-color: #ff6b9d;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

/* Responsible Gaming Section */
.responsible-gaming {
    background: rgba(255, 255, 255, 0.02);
}

.responsible-gaming h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.responsible-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.responsible-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
border: 1px solid #292929;
background: linear-gradient(0deg, rgba(0, 0, 0, 0.00) 0%, rgba(255, 77, 128, 0.40) 90.27%);
}

.responsible-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ff6b9d;
}

.responsible-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 100%);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo .logo {
    justify-content: center;
    font-size: 28px;
}

.footer-platforms {
    margin-bottom: 30px;
}

.platform-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.platform-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.icon-18 {
    background: #ffffff;
    color: #000000;
    font-weight: bold;
    font-size: 14px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-gambling-info {
    margin-bottom: 30px;
}

.gambling-banner {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.gamcare-section {
    display: flex;
    align-items: center;
}

.gamcare-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gamcare-g {
    background: #6B46C1;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.gamcare-text {
    color: #000000;
}

.gam {
    font-weight: bold;
    color: #6B46C1;
}

.care {
    font-weight: bold;
    color: #000000;
}

.gamcare-subtitle {
    font-size: 10px;
    color: #666666;
    margin-top: 2px;
}

.therapy-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.therapy-badge {
    background: #FF4500;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    text-align: center;
    font-size: 10px;
    font-weight: bold;
}

.therapy-text {
    display: block;
}

.addiction-text {
    display: block;
}

.therapy-icon {
    font-size: 20px;
}

.gambleaware-section {
    display: flex;
    align-items: center;
}

.gambleaware-logo {
    font-size: 18px;
    font-weight: bold;
}

.gamble {
    color: #000000;
}

.aware {
    color: #FF4500;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    color: #888888;
    font-size: 14px;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b9d;
}

iframe {
    width: 100%;
    aspect-ratio: 11 / 6;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 120px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 120px);
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(10px);
        transition: left 0.3s ease;
        padding: 50px 20px;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-pill {
        background: transparent;
        padding: 0;
        border-radius: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .nav-list a {
        font-size: 20px;
        color: #ffffff;
    }
    
    .disclaimer-content {
        
        gap: 10px;
        text-align: center;
        padding: 10px;
    }
    
    .disclaimer-text {
        font-size: 12px;
    }
    
    .gambling-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .platform-icons {
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .game-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .cookie-modal,
    .age-modal {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .cookie-modal h2,
    .age-modal h2 {
        font-size: 24px;
    }
    
    .perspective-grid,
    .trust-grid,
    .games-grid,
    .responsible-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 250px 0 80px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .btn-primary {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .game-placeholder {
        height: 200px;
    }
    
    .game-placeholder h3 {
        font-size: 24px;
    }
    
    .therapy-badge {
        font-size: 8px;
        padding: 6px 8px;
    }
    
    .gamcare-subtitle {
        font-size: 8px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling offset for fixed header */
html {
    scroll-padding-top: 120px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff4081 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff4081 0%, #ff6b9d 100%);
}

              .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;
                }

                