/* Esbet Premium Styles - 2025 SEO Optimized */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0e1b1d;
    color: #e8e6e3;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Gradient Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(192, 138, 51, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(230, 179, 69, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    background: linear-gradient(90deg, #c08a33, #e6b345);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #e6b345;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #d4d2cf;
    font-size: 1rem;
    line-height: 1.7;
}

/* Header Navigation */
header {
    background: linear-gradient(135deg, #0e1b1d 0%, #1a2426 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(192, 138, 51, 0.15);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(192, 138, 51, 0.2);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-main {
    color: #fff;
}

.logo-accent {
    background: linear-gradient(135deg, #c08a33, #e6b345);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
    font-size: 0.9em;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #d4d2cf;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 5px 10px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c08a33, #e6b345);
    transition: width 0.3s;
}

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

.nav-links a:hover::after {
    width: 80%;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, #0e1b1d 0%, #162223 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(192, 138, 51, 0.05) 0%, transparent 70%);
    animation: pulse 20s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(192, 138, 51, 0.1), rgba(230, 179, 69, 0.1));
    border: 1px solid rgba(192, 138, 51, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #e6b345;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.badge-icon {
    color: #e6b345;
    font-size: 1rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #d4d2cf;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Wrapper */
.cta-wrapper {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Button Styles */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #c08a33, #e6b345);
    color: #0e1b1d;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(192, 138, 51, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(230, 179, 69, 0.5);
}

.btn-hero {
    padding: 18px 50px;
    font-size: 1.15rem;
}

.btn-large {
    padding: 20px 60px;
    font-size: 1.2rem;
}

.btn-icon {
    transition: transform 0.3s;
}

.btn-primary:hover .btn-icon {
    transform: translateX(5px);
}

/* Bonus Highlight */
.bonus-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(192, 138, 51, 0.1), rgba(230, 179, 69, 0.05));
    border: 1px solid rgba(230, 179, 69, 0.3);
    padding: 12px 25px;
    border-radius: 15px;
}

.bonus-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.bonus-text strong {
    color: #e6b345;
    font-size: 1.1rem;
}

.bonus-text span {
    color: #a8a6a3;
    font-size: 0.9rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d4d2cf;
    font-size: 0.95rem;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(26, 36, 38, 0.5), rgba(22, 34, 35, 0.5));
    border-radius: 20px;
    border: 1px solid rgba(192, 138, 51, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #c08a33, #e6b345);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-item span {
    color: #a8a6a3;
    font-size: 0.9rem;
}

/* Premium Features Section */
.premium-features {
    padding: 80px 0;
    background: linear-gradient(180deg, #162223 0%, #0e1b1d 100%);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    text-align: center;
    margin-bottom: 1rem;
    color: #fff;
}

.title-accent {
    background: linear-gradient(135deg, #c08a33, #e6b345);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: #a8a6a3;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(26, 36, 38, 0.8), rgba(22, 34, 35, 0.8));
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(192, 138, 51, 0.2);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 179, 69, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 179, 69, 0.4);
    box-shadow: 0 10px 30px rgba(192, 138, 51, 0.2);
}

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

.feature-card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: #a8a6a3;
    line-height: 1.6;
    flex-grow: 1;
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #c08a33, #e6b345);
    color: #0e1b1d;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: #0e1b1d;
}

.content-box {
    max-width: 900px;
    margin: 0 auto;
}

.premium-box {
    background: linear-gradient(135deg, rgba(192, 138, 51, 0.1), rgba(230, 179, 69, 0.05));
    border: 1px solid rgba(230, 179, 69, 0.3);
    padding: 30px;
    border-radius: 20px;
    margin: 30px 0;
}

.premium-box h3 {
    margin-bottom: 15px;
}

.premium-list {
    list-style: none;
    margin: 20px 0;
}

.premium-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(192, 138, 51, 0.1);
    color: #d4d2cf;
}

.premium-list li:last-child {
    border-bottom: none;
}

.list-icon {
    color: #e6b345;
    font-size: 1.2rem;
}

.info-highlight {
    background: linear-gradient(135deg, rgba(26, 36, 38, 0.9), rgba(22, 34, 35, 0.9));
    border-left: 4px solid #e6b345;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.info-highlight h4 {
    color: #e6b345;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #162223 0%, #0e1b1d 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-card {
    background: rgba(26, 36, 38, 0.5);
    border: 1px solid rgba(192, 138, 51, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-card:hover {
    border-color: rgba(230, 179, 69, 0.4);
}

.faq-card summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #e6b345;
    background: rgba(192, 138, 51, 0.05);
    transition: all 0.3s;
    list-style: none;
    position: relative;
    padding-right: 50px;
}

.faq-card summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #c08a33;
    transition: transform 0.3s;
}

.faq-card[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-card summary:hover {
    background: rgba(192, 138, 51, 0.1);
}

.faq-content {
    padding: 20px;
    color: #d4d2cf;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0e1b1d 0%, #1a2426 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cdefs%3E%3ClinearGradient id="grad"%3E%3Cstop offset="0%25" stop-color="%23c08a33" stop-opacity="0.05"/%3E%3Cstop offset="100%25" stop-color="%23e6b345" stop-opacity="0.05"/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width="100" height="100" fill="url(%23grad)"/%3E%3C/svg%3E');
    opacity: 0.3;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, #c08a33, #e6b345);
    color: #0e1b1d;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #d4d2cf;
}

.cta-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: #a8a6a3;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: linear-gradient(180deg, #0e1b1d 0%, #0a1112 100%);
    padding: 80px 0 30px;
    border-top: 2px solid rgba(192, 138, 51, 0.15);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 179, 69, 0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-section h3 {
    color: #e6b345;
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #c08a33, #e6b345);
}

.footer-section p {
    color: #a8a6a3;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.footer-badge {
    background: linear-gradient(135deg, rgba(192, 138, 51, 0.15), rgba(230, 179, 69, 0.1));
    border: 1px solid rgba(192, 138, 51, 0.3);
    color: #c08a33;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s;
}

.footer-badge:hover {
    background: linear-gradient(135deg, rgba(192, 138, 51, 0.25), rgba(230, 179, 69, 0.15));
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #a8a6a3;
    text-decoration: none;
    transition: color 0.3s;
}

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

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(192, 138, 51, 0.1), rgba(230, 179, 69, 0.05));
    border: 1px solid rgba(192, 138, 51, 0.3);
    border-radius: 12px;
    color: #c08a33;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c08a33, #e6b345);
    border-radius: 12px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.social-links a:hover {
    color: #0e1b1d;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(230, 179, 69, 0.3);
}

.social-links a:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.age-restriction {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(192, 138, 51, 0.05), rgba(230, 179, 69, 0.02));
    border-radius: 15px;
    border: 1px solid rgba(192, 138, 51, 0.15);
}

.age-restriction span:first-child {
    background: linear-gradient(135deg, #c08a33, #e6b345);
    color: #0e1b1d;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(192, 138, 51, 0.3);
}

.age-restriction span:not(:first-child) {
    color: #a8a6a3;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding: 40px 20px 20px;
    border-top: 1px solid rgba(192, 138, 51, 0.1);
    color: #808080;
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 179, 69, 0.2), transparent);
}

.disclaimer {
    color: #a8a6a3;
    margin-top: 15px;
    font-size: 0.85rem;
    font-style: italic;
    padding: 15px;
    background: rgba(192, 138, 51, 0.03);
    border-radius: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Official Notice */
.official-notice {
    display: inline-block;
    background: rgba(230, 179, 69, 0.1);
    border: 1px solid rgba(230, 179, 69, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #e6b345;
}

/* License Info */
.license-info {
    margin: 25px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(26, 36, 38, 0.9), rgba(22, 34, 35, 0.9));
    border-radius: 15px;
    border: 1px solid rgba(192, 138, 51, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.license-text {
    color: #d4d2cf;
    font-size: 0.9rem;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.license-text strong {
    color: #e6b345;
    min-width: 80px;
}

/* Responsible Gambling List */
.responsible-list {
    list-style: none;
    margin: 15px 0;
    padding: 0;
}

.responsible-list li {
    color: #a8a6a3;
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(192, 138, 51, 0.1);
}

.responsible-list li:last-child {
    border-bottom: none;
}

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

.animate-in {
    animation: animate-in 0.6s ease-out forwards;
}

/* Responsive Design */

/* Desktop - 2x2 Grid */
@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Tablet */
@media (max-width: 1023px) and (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-section:last-child {
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .hero {
        padding: 60px 0 40px;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .social-links {
        justify-content: center;
    }

    .footer-badges {
        justify-content: center;
    }

    .age-restriction {
        flex-direction: column;
        text-align: center;
    }

    .license-text {
        flex-direction: column;
        text-align: center;
    }

    .license-text strong {
        min-width: auto;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }

    .premium-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    header, .cta-section, footer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    a {
        color: black;
        text-decoration: underline;
    }
}