/* ========================================
   lottubet - Gates of Olympus Theme
   2026 SEO Optimized CSS
   ======================================== */

:root {
    --olympus-gold: #D4AF37;
    --olympus-purple: #4A0E4E;
    --olympus-deep-purple: #2D0A2E;
    --olympus-light-purple: #7B2D8E;
    --olympus-cream: #F5F0E6;
    --olympus-white: #FFFFFF;
    --olympus-dark: #1A0A1C;
    --olympus-lightning: #87CEEB;
    --gradient-olympus: linear-gradient(135deg, var(--olympus-deep-purple) 0%, var(--olympus-purple) 50%, var(--olympus-light-purple) 100%);
    --gradient-gold: linear-gradient(135deg, #B8860B 0%, #D4AF37 50%, #FFD700 100%);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --shadow-purple: 0 4px 20px rgba(74, 14, 78, 0.4);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: var(--olympus-deep-purple);
    color: var(--olympus-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--olympus-gold);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1.2rem;
    text-align: justify;
}

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

a:hover {
    color: var(--olympus-lightning);
    text-shadow: 0 0 10px var(--olympus-lightning);
}

/* Greek Pattern Border */
.greek-border {
    border: 3px solid var(--olympus-gold);
    border-image: repeating-linear-gradient(
        90deg,
        var(--olympus-gold) 0px,
        var(--olympus-gold) 10px,
        transparent 10px,
        transparent 15px,
        var(--olympus-gold) 15px,
        var(--olympus-gold) 25px
    ) 3;
}

/* Header - Non-Sticky */
.site-header {
    background: var(--gradient-olympus);
    padding: 1rem 0;
    border-bottom: 3px solid var(--olympus-gold);
    position: relative;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-wrapper img {
    height: 60px;
    width: auto;
}

.brand-name {
    font-size: 1.8rem;
    color: var(--olympus-gold);
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Navigation */
.main-nav {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.main-nav a {
    padding: 0.8rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--olympus-gold);
    border-radius: 25px;
    color: var(--olympus-cream);
    font-weight: 500;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background: var(--olympus-gold);
    color: var(--olympus-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.cta-button {
    background: var(--gradient-gold) !important;
    color: var(--olympus-dark) !important;
    font-weight: 700 !important;
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 5px var(--olympus-gold); }
    50% { box-shadow: 0 0 20px var(--olympus-gold), 0 0 30px var(--olympus-gold); }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(45, 10, 46, 0.7), rgba(26, 10, 28, 0.9));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient-gold);
    color: var(--olympus-dark);
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
    color: var(--olympus-dark);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Breadcrumb */
.breadcrumb {
    background: rgba(74, 14, 78, 0.5);
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.breadcrumb-container {
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--olympus-gold);
}

.breadcrumb li:last-child::after {
    content: '';
}

.breadcrumb a {
    color: var(--olympus-cream);
}

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

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Section Styles */
.content-section {
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(74, 14, 78, 0.6), rgba(45, 10, 46, 0.8));
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-purple);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--olympus-gold);
}

.section-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

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

.game-card {
    background: linear-gradient(145deg, rgba(74, 14, 78, 0.8), rgba(45, 10, 46, 0.9));
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.4);
    transition: all 0.4s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--olympus-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

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

.game-card-content {
    padding: 1.5rem;
}

.game-card h3 {
    margin-bottom: 0.8rem;
}

.game-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.game-card-link {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--gradient-gold);
    color: var(--olympus-dark);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: rgba(74, 14, 78, 0.5);
    border-radius: 15px;
    border-left: 4px solid var(--olympus-gold);
    margin: 2rem 0;
}

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

.author-info h4 {
    margin-bottom: 0.5rem;
}

.author-credentials {
    font-size: 0.9rem;
    color: var(--olympus-lightning);
    margin-bottom: 1rem;
}

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

.review-card {
    background: rgba(74, 14, 78, 0.6);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

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

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

.reviewer-location {
    font-size: 0.85rem;
    color: var(--olympus-cream);
    opacity: 0.8;
}

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

.review-text {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--olympus-cream);
    opacity: 0.7;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(74, 14, 78, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
}

.faq-question {
    padding: 1.2rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    cursor: pointer;
    font-weight: 600;
    color: var(--olympus-gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

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

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

/* Payment Methods */
.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.payment-item {
    background: rgba(74, 14, 78, 0.6);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    min-width: 150px;
}

.payment-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.payment-item p {
    font-size: 0.85rem;
    margin: 0;
    text-align: center;
}

/* License Section */
.license-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(74, 14, 78, 0.5);
    border-radius: 15px;
    border: 2px solid var(--olympus-gold);
}

.license-badge {
    width: 150px;
    height: auto;
    border-radius: 10px;
}

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

.support-item {
    background: rgba(74, 14, 78, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.support-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Footer */
.site-footer {
    background: var(--olympus-dark);
    border-top: 3px solid var(--olympus-gold);
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-section h4 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--olympus-gold);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--olympus-cream);
    opacity: 0.8;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--olympus-gold);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--olympus-gold);
    color: var(--olympus-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.age-badge {
    width: 60px;
    height: 60px;
    margin: 1rem auto;
}

.footer-legal {
    font-size: 0.85rem;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .hero-section {
        min-height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .license-box {
        flex-direction: column;
        text-align: center;
    }
    
    .main-nav a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main-nav {
        flex-direction: column;
        width: 100%;
    }
    
    .main-nav a {
        width: 100%;
        text-align: center;
    }
    
    .hero-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--olympus-gold); }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* Image Lazy Loading Placeholder */
img[loading="lazy"] {
    background: linear-gradient(90deg, rgba(74, 14, 78, 0.5) 25%, rgba(74, 14, 78, 0.8) 50%, rgba(74, 14, 78, 0.5) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .hero-cta,
    .cta-button {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .content-section {
        border: 1px solid #ccc;
        background: white;
    }
}
