/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== AGE VERIFICATION MODAL ===== */
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.5s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.age-icon {
    margin-bottom: 20px;
}

.age-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.modal-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.modal-content p {
    font-size: 1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.btn-confirm, .btn-cancel {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: #27ae60;
    color: white;
}

.btn-confirm:hover {
    background: #2ecc71;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

.btn-cancel {
    background: #e74c3c;
    color: white;
}

.btn-cancel:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.age-disclaimer {
    font-size: 0.85rem;
    opacity: 0.8;
    font-style: italic;
}

/* ===== HEADER SECTION ===== */
.hero-header {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
}

.header-content {
    text-align: center;
    color: white;
}

.logo-section {
    margin-bottom: 30px;
}

.brand-icon {
    font-size: 3rem;
    color: #f39c12;
    margin-bottom: 15px;
    display: block;
}

.brand-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff, #f1c40f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 500;
}

.indicator i {
    font-size: 1.3rem;
    color: #f39c12;
}

/* ===== HERO BANNER ===== */
.hero-banner {
    position: relative;
    padding: 80px 0;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(243, 156, 18, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-headline {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* ===== SHOWCASE SECTION ===== */
.showcase-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== BOOKMAKER SHOWCASE ===== */
.bookmaker-showcase {
    display: grid;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Premium Card */
.premium-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.6);
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #2c3e50;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Heritage Card */
.heritage-card {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1) 0%, rgba(46, 125, 50, 0.05) 100%);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    border: 2px solid rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.heritage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4caf50, #81c784);
}

.heritage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.6);
}

.heritage-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4caf50, #81c784);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Prestige Card */
.prestige-card {
    background: linear-gradient(135deg, rgba(103, 58, 183, 0.1) 0%, rgba(103, 58, 183, 0.05) 100%);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    border: 2px solid rgba(156, 39, 176, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.prestige-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9c27b0, #ba68c8);
}

.prestige-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(156, 39, 176, 0.2);
    border-color: rgba(156, 39, 176, 0.6);
}

.prestige-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #9c27b0, #ba68c8);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Card Header */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.brand-identity {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.brand-logo {
    height: 60px;
    max-width: 180px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 10px;
}

.brand-heritage {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.heritage-tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.excellence-rating {
    text-align: right;
    color: white;
}

.stars-display {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.rating-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.rating-value {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Offer Showcase */
.offer-showcase {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.offer-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.offer-amount, .offer-receive {
    font-size: 2rem;
    font-weight: 700;
    color: #f39c12;
}

.offer-arrow {
    font-size: 1.5rem;
    color: white;
    opacity: 0.7;
}

.offer-type {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.offer-details p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Features Section */
.premium-features h4,
.heritage-features h4,
.prestige-features h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.feature-item i {
    color: #f39c12;
    width: 20px;
}

/* Card Actions */
.card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.premium-cta,
.heritage-cta,
.prestige-cta {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-cta:hover,
.heritage-cta:hover,
.prestige-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.4);
}

.license-verification {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.license-verification i {
    color: #27ae60;
}

/* ===== RESPONSIBILITY SECTION ===== */
.responsibility-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.05) 100%);
}

.responsibility-content {
    color: white;
}

.responsibility-header {
    text-align: center;
    margin-bottom: 60px;
}

.responsibility-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.responsibility-title i {
    color: #e74c3c;
    font-size: 2.2rem;
}

.responsibility-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.responsibility-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.principle {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.principle i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 20px;
    display: block;
}

.principle h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.principle p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Support Network */
.support-network h3 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.support-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.support-organizations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.support-org {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.support-org:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.org-link {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: white;
}

.org-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 15px;
    background: white;
    padding: 10px;
}

.org-details h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.org-details p {
    opacity: 0.8;
    margin-bottom: 8px;
    line-height: 1.5;
}

.org-website,
.org-contact {
    color: #3498db;
    font-weight: 500;
    font-size: 0.9rem;
}

.phone {
    display: block;
    margin-bottom: 5px;
}

/* ===== FOOTER ===== */
.elite-footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
    color: white;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand i {
    font-size: 2rem;
    color: #f39c12;
    margin-bottom: 15px;
}

.footer-brand h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-credentials h4,
.footer-support h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f39c12;
}

.footer-credentials ul,
.footer-support ul {
    list-style: none;
}

.footer-credentials li,
.footer-support li {
    padding: 8px 0;
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-disclaimer {
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .brand-title {
        font-size: 2.2rem;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .trust-indicators {
        gap: 20px;
    }
    
    .card-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .excellence-rating {
        text-align: left;
    }
    
    .offer-highlight {
        flex-direction: column;
        gap: 10px;
    }
    
    .card-actions {
        flex-direction: column;
        text-align: center;
    }
    
    .support-organizations {
        grid-template-columns: 1fr;
    }
    
    .org-link {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .responsibility-principles {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-header {
        padding: 30px 0;
    }
    
    .brand-title {
        font-size: 1.8rem;
    }
    
    .hero-banner {
        padding: 60px 0;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .showcase-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .premium-card,
    .heritage-card,
    .prestige-card {
        padding: 25px;
    }
    
    .responsibility-section {
        padding: 60px 0;
    }
    
    .responsibility-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .support-network h3 {
        font-size: 1.6rem;
    }
}

/* ===== ACCESSIBILITY ===== */
.premium-cta:focus,
.heritage-cta:focus,
.prestige-cta:focus,
.org-link:focus {
    outline: 3px solid #f39c12;
    outline-offset: 3px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .age-verification,
    .hero-banner,
    .elite-footer {
        display: none;
    }
    
    .premium-card,
    .heritage-card,
    .prestige-card {
        break-inside: avoid;
        margin-bottom: 20px;
        background: white;
        color: black;
    }
    
    .support-org {
        background: white;
        color: black;
    }
}