/* 333bet Circus Delight Theme - 2026 */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --circus-red: #C41E3A;
    --circus-gold: #FFD700;
    --circus-purple: #4B0082;
    --circus-dark: #1A0A2E;
    --circus-cream: #F5F5DC;
    --circus-maroon: #800020;
    --gradient-main: linear-gradient(135deg, #1A0A2E 0%, #2D1B4E 50%, #1A0A2E 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-red: linear-gradient(135deg, #C41E3A 0%, #800020 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--gradient-main);
    color: var(--circus-cream);
    line-height: 1.8;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--circus-gold);
    margin-bottom: 1rem;
}

a {
    color: var(--circus-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--circus-cream);
    text-shadow: 0 0 10px var(--circus-gold);
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Header Navigation */
.main-header {
    background: linear-gradient(180deg, rgba(26,10,46,0.98) 0%, rgba(26,10,46,0.95) 100%);
    border-bottom: 3px solid var(--circus-gold);
    padding: 15px 0;
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-area img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--circus-gold);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.main-nav a {
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background: rgba(255,215,0,0.2);
}

.cta-button {
    background: var(--gradient-red);
    color: white !important;
    padding: 12px 30px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(196,30,58,0.4);
    animation: pulse 2s infinite;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196,30,58,0.6);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(196,30,58,0.4); }
    50% { box-shadow: 0 4px 25px rgba(196,30,58,0.7); }
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero.webp') center/cover no-repeat;
    opacity: 0.3;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--circus-cream);
}

.hero-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 4px solid var(--circus-gold);
    margin: 30px auto;
    max-width: 900px;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--circus-cream);
    opacity: 0.8;
}

.breadcrumb span {
    color: var(--circus-gold);
}

/* Section Styles */
.content-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255,215,0,0.2);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Game Cards */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.game-card {
    background: linear-gradient(145deg, rgba(45,27,78,0.9) 0%, rgba(26,10,46,0.95) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255,215,0,0.3);
    transition: all 0.4s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--circus-gold);
    box-shadow: 0 20px 40px rgba(255,215,0,0.2);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-card-content {
    padding: 25px;
}

.game-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.game-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.game-link {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--circus-dark) !important;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: linear-gradient(145deg, rgba(45,27,78,0.8) 0%, rgba(26,10,46,0.9) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255,215,0,0.3);
    margin: 40px 0;
}

.author-box img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--circus-gold);
    object-fit: cover;
}

.author-info h3 {
    margin-bottom: 5px;
}

.author-title {
    color: var(--circus-gold);
    font-style: italic;
    margin-bottom: 15px;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.review-card {
    background: linear-gradient(145deg, rgba(45,27,78,0.8) 0%, rgba(26,10,46,0.9) 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--circus-gold);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-name {
    font-weight: 600;
    color: var(--circus-gold);
}

.reviewer-location {
    font-size: 0.85rem;
    opacity: 0.7;
}

.review-stars {
    color: var(--circus-gold);
    font-size: 1.2rem;
}

.review-date {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 15px;
}

/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(145deg, rgba(45,27,78,0.7) 0%, rgba(26,10,46,0.8) 100%);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,215,0,0.2);
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    color: var(--circus-gold);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 25px 20px;
    line-height: 1.8;
}

/* Payment Methods */
.payment-section {
    text-align: center;
}

.payment-image {
    max-width: 700px;
    margin: 30px auto;
    border-radius: 15px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.payment-item {
    background: linear-gradient(145deg, rgba(45,27,78,0.7) 0%, rgba(26,10,46,0.8) 100%);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255,215,0,0.2);
}

.payment-item h4 {
    color: var(--circus-gold);
    margin-bottom: 10px;
}

/* License Section */
.license-section {
    text-align: center;
}

.license-badge {
    width: 180px;
    margin: 20px auto;
    display: block;
}

/* Support Section */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.support-item {
    background: linear-gradient(145deg, rgba(45,27,78,0.7) 0%, rgba(26,10,46,0.8) 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,215,0,0.2);
}

.support-item img {
    width: 80px;
    margin-bottom: 15px;
}

/* Footer */
.main-footer {
    background: linear-gradient(180deg, rgba(26,10,46,0.98) 0%, #0D0518 100%);
    padding: 60px 0 30px;
    border-top: 3px solid var(--circus-gold);
}

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

.footer-section h4 {
    color: var(--circus-gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: var(--circus-cream);
    opacity: 0.8;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--circus-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,215,0,0.2);
}

.age-restriction {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--circus-red);
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.age-badge {
    background: white;
    color: var(--circus-red);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,215,0,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--circus-gold);
    color: var(--circus-dark);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 20px;
}

/* Responsible Gaming */
.responsible-gaming {
    background: linear-gradient(145deg, rgba(128,0,32,0.3) 0%, rgba(26,10,46,0.9) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--circus-maroon);
}

.responsible-gaming h3 {
    color: var(--circus-red);
}

/* Inner Pages */
.page-header {
    padding: 80px 0 40px;
    text-align: center;
    background: linear-gradient(180deg, rgba(45,27,78,0.5) 0%, transparent 100%);
}

.page-content {
    padding: 40px 0;
}

.content-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.content-text h2 {
    margin-top: 40px;
}

.content-text p {
    margin-bottom: 20px;
}

.content-text ul, .content-text ol {
    margin: 20px 0 20px 30px;
}

.content-text li {
    margin-bottom: 10px;
}

.game-image {
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    display: block;
    border-radius: 15px;
    border: 3px solid var(--circus-gold);
}

/* Info Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(45,27,78,0.5);
    border-radius: 10px;
    overflow: hidden;
}

.info-table th, .info-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,215,0,0.2);
}

.info-table th {
    background: rgba(255,215,0,0.2);
    color: var(--circus-gold);
    font-weight: 600;
}

.info-table tr:last-child td {
    border-bottom: none;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--circus-gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Sitemap Page */
.sitemap-section {
    padding: 60px 0;
}

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

.sitemap-category h3 {
    color: var(--circus-gold);
    border-bottom: 2px solid var(--circus-gold);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.sitemap-category ul {
    list-style: none;
}

.sitemap-category li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.sitemap-category li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--circus-gold);
}

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

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

/* Preload optimization */
.preload-hero {
    background-image: url('../images/hero.webp');
}
