/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: radial-gradient(71.77% 71.77% at 50% 28.23%, #091D5A 0%, #111727 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 29, 41, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-modal-content {
    background: linear-gradient(135deg, #2a2d3e 0%, #3a4553 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.age-modal-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

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

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2a2d3e 0%, #3a4553 100%);
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 8888;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cookie-content p {
    color: #e2e8f0;
    max-width: 600px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(66, 153, 225, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-tertiary {
    background: transparent;
    color: #a0aec0;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    text-decoration: underline;
    font-size: 1rem;
}

.btn-tertiary:hover {
    color: #e2e8f0;
}

/* Utility Classes */
.hidden {
    display: none;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
   
    z-index: 1000;
 
}

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

.nav-brand {
    text-decoration: none;
}

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

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

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

.nav-links a:hover {
    color: #4299e1;
}

/* Main Content */
.main {
    
    min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero {
    padding: 7rem 2rem 4rem;
  min-height: 100vh;
  height: 100vh;
    position: relative;
    overflow: hidden;
    background-image: url(/wp-content/themes/techfile_ldxstvpc/assets/images/hero.webp);
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%234299e1" stop-opacity="0.1"/><stop offset="100%" stop-color="%234299e1" stop-opacity="0"/></radialGradient></defs><circle cx="50" cy="50" r="50" fill="url(/wp-content/themes/techfile_ldxstvpc/%23a)"/></svg>') center/400px;
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.hero-title {
    text-align: right;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(180deg, #E8E9E6 0%, #A6A29F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}





.hero-description {
    font-size: 1.1rem;
    color: #fff;
    width: 100%;
    margin: 0 auto;
    line-height: 1.4;
    border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.30);
background: #091D5A;
padding: 24px;
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(180deg, #E8E9E6 0%, #A6A29F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Casinos Section */
.casinos {
    padding: 4rem 2rem;
  
}

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

.casino-card {
   border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.30);
background: #091D5A;
    padding: 24px;
  display: flex;
  flex-direction: column;
    text-align: center;
align-items: center;
    transition: all 0.3s ease;
    position: relative;
   
}



.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.casino-header {
    margin-bottom: 2rem;
}

.casino-logo {
    border-radius: 10px;
background: linear-gradient(180deg, #1B3793 0%, #0C175A 100%);
padding: 20px;
max-width: 208px;
width: 100%;
margin-top: -50px;
}

.casino-logo img {
    width: 100%;
}

.casino-card:first-child .logo-text {
    color: #48bb78;
}

.casino-card:last-child .logo-text {
    color: #4299e1;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: #ffd700;
    font-size: 1.2rem;
}

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

.casino-features li {
    padding: 0.5rem 0;
    color: #e2e8f0;
    position: relative;
}

.casino-features li::before {
    content: '✓';
    color: #48bb78;
    font-weight: bold;
    margin-right: 0.5rem;
}

.casino-btn {
    border-radius: 10px;
background: linear-gradient(180deg, #E8E9E6 0%, #A6A29F 100%);
    color: #091D5A;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
}

.casino-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(66, 153, 225, 0.4);
}

/* About Section */
.about {
    padding: 4rem 2rem;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e2e8f0;
}

.about-content p {
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq {
    padding: 4rem 2rem;
  
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #2a2d3e 0%, #3a4553 100%);
    margin-bottom: 1rem;
    border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.30);
background: #091D5A;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #4299e1;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: #e2e8f0;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.2);
    padding: 3rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.responsible-gaming {
    margin-bottom: 2rem;
}

.responsible-gaming h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.responsible-gaming p {
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.certifications {
    margin-bottom: 2rem;
}

.cert-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
   
    margin-bottom: 2rem;
}

.cert-item {
    color: #a0aec0;
    font-size: 0.9rem;
    font-weight: 500;
}

.cert-item img {
    max-width: 100%;
}

.age-warning {
    margin-bottom: 2rem;
}

.age-warning p {
    color: #ed8936;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

.footer-links a:hover {
    color: #4299e1;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .main {
      
    }
    
    .hero {
        padding: 10rem 1rem 4rem;
    }

    .hero-title {
        font-size: 64px;
    }
    
    .hero-visual {
        gap: 2rem;
        flex-direction: column;
    }
    
    .casinos-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .casino-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .age-modal-buttons {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    
    .cert-logos {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {

    .hero {
        min-height: auto;
        height: auto;
        background-position: center top;
        padding: 10rem 15px 4rem;
    }
    .hero-title {
        font-size: 3rem;
        text-align: center;
    }

    .hero-content {
        gap: 45vw;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .casino-card {
        padding: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }
    
    .age-modal-content {
        padding: 2rem 1.5rem;
    }
    
    .cookie-consent {
        padding: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.casino-card {
    animation: fadeInUp 0.6s ease-out;
}

.casino-card:nth-child(2) {
    animation-delay: 0.2s;
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
    .hero-visual .card,
    .hero-visual .chip {
        animation: float 3s ease-in-out infinite alternate;
    }
    
    .card-1 {
        animation-delay: 0s;
    }
    
    .card-2 {
        animation-delay: 0.5s;
    }
    
    .card-3 {
        animation-delay: 1s;
    }
    
    .chip-1 {
        animation-delay: 0.2s;
    }
    
    .chip-2 {
        animation-delay: 0.7s;
    }
    
    .chip-3 {
        animation-delay: 1.2s;
    }
    
    .chip-4 {
        animation-delay: 1.7s;
    }
}

@keyframes float {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-10px);
    }
}
              .page {
                padding: 140px 0 80px;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                max-width: 1200px;
                padding: 40px 20px 0;
                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;
              }

              
                

                