/* Gates of Olympus - Zeus Theme */
/* Colors: Navy #1a237e, Gold #ffd700, Lightning #00d4ff */

:root {
    --primary: #1a237e;
    --primary-light: #3949ab;
    --primary-dark: #0d1442;
    --gold: #ffd700;
    --gold-light: #ffeb3b;
    --gold-dark: #c9a800;
    --lightning: #00d4ff;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-600: #757575;
    --gray-800: #424242;
    --gray-900: #212121;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--primary-dark);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    line-height: 1.3;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/gates-of-olympus-bg.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--primary-dark) 70%);
}

/* Lightning Effects */
.lightning {
    position: absolute;
    width: 3px;
    height: 200px;
    background: linear-gradient(180deg, var(--lightning), transparent);
    opacity: 0;
    transition: opacity 0.1s;
    filter: blur(1px);
    box-shadow: 0 0 20px var(--lightning), 0 0 40px var(--lightning);
}

.lightning-1 {
    top: 10%;
    left: 20%;
    transform: rotate(15deg);
}

.lightning-2 {
    top: 5%;
    right: 25%;
    transform: rotate(-10deg);
}

.clouds {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, rgba(26, 35, 126, 0.8) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out 0.2s both;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.3));
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    animation: fadeIn 1s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    animation: fadeIn 1s ease-out 0.8s both;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary-dark);
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out 1s both;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.5);
}

.cta-icon {
    font-size: 1.3rem;
}

.cta-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeIn 1s ease-out 1.2s both;
}

.scroll-indicator span {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    margin: 0 auto;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(10px); }
}

/* Article Meta Section */
.article-meta-section {
    background: var(--primary);
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.article-meta-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--white);
}

.author-title {
    font-size: 0.85rem;
    color: var(--gold);
}

.article-dates {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.article-dates .separator {
    margin: 0 10px;
    color: var(--gold);
}

/* Sections Base */
section:not(.hero) {
    padding: 100px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

section:not(.hero).visible {
    opacity: 1;
    transform: translateY(0);
}

section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 50px;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

/* Multiplier Section */
.multiplier-section {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.multiplier-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.multiplier-card.featured {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-color: var(--gold);
}

.multiplier-value {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.multiplier-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

/* Editor Note */
.editor-note {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--lightning);
    padding: 20px 25px;
    border-radius: 0 12px 12px 0;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.editor-note.gold {
    border-left-color: var(--gold);
}

.editor-note strong {
    color: var(--gold);
}

/* Mechanics Section */
.mechanics-section {
    background: var(--primary);
}

.mechanics-section > .container > p {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.mechanics-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.flow-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    max-width: 200px;
    transition: all 0.3s ease;
}

.flow-step:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 auto 15px;
}

.flow-step h3 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.flow-step p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.flow-arrow {
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 40px;
}

.note-text {
    text-align: center;
    color: var(--gold);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* RTP Section */
.rtp-section {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.rtp-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.rtp-main {
    display: flex;
    justify-content: center;
}

.rtp-circle {
    position: relative;
    width: 200px;
    height: 200px;
}

.rtp-circle svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.rtp-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.rtp-fill {
    fill: none;
    stroke: var(--gold);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 10;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.rtp-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.rtp-value {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.rtp-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.rtp-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-item h3 {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.detail-item p {
    color: rgba(255, 255, 255, 0.85);
}

/* Volatility Meter */
.volatility-meter {
    max-width: 500px;
    margin: 0 auto;
}

.meter-label {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.meter-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), #ff6b6b);
    border-radius: 6px;
    transition: width 1s ease-out;
}

.meter-marker {
    position: absolute;
    right: 15%;
    top: -5px;
    width: 4px;
    height: 22px;
    background: var(--white);
    border-radius: 2px;
}

.meter-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Symbols Section */
.symbols-section {
    background: var(--primary);
}

.symbols-section > .container > p {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.symbols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.symbol-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.symbol-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.symbol-card.premium {
    border-color: rgba(255, 215, 0, 0.3);
}

.symbol-icon {
    font-size: 2.5rem;
}

.symbol-icon.scatter {
    color: var(--lightning);
    text-shadow: 0 0 20px var(--lightning);
}

.symbol-info {
    display: flex;
    flex-direction: column;
}

.symbol-name {
    font-weight: 600;
    color: var(--white);
}

.symbol-payout {
    font-size: 0.85rem;
    color: var(--gold);
}

/* Scatter Info */
.scatter-info {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--lightning);
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
}

.scatter-info h3 {
    color: var(--lightning);
    margin-bottom: 15px;
    text-align: center;
}

.scatter-info ul {
    list-style: none;
    margin-bottom: 15px;
}

.scatter-info li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.scatter-info li:last-child {
    border-bottom: none;
}

.small-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* Feature Section */
.feature-section {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.feature-main p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.feature-highlight {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-box {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
}

.highlight-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.highlight-box h3 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.highlight-box p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Tips Section */
.tips-section {
    background: var(--primary);
}

.tips-section > .container > p {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

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

.tip-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.tip-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.1);
}

.tip-number {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 15px;
}

.tip-card h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 12px;
}

.tip-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.4);
}

.faq-item h3 {
    font-size: 1.05rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

/* Resources Section */
.resources-section {
    background: var(--primary);
    padding: 60px 0;
}

.resource-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 15px 25px;
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.resource-link:hover {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
}

.resource-icon {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
}

.footer-contact h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .article-meta-section .container {
        flex-direction: column;
        text-align: center;
    }

    .author-info {
        justify-content: center;
    }

    .mechanics-flow {
        flex-direction: column;
        align-items: center;
    }

    .flow-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .rtp-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .multiplier-value {
        font-size: 2rem;
    }

    .rtp-circle {
        width: 160px;
        height: 160px;
    }

    .rtp-value {
        font-size: 2rem;
    }
}
