/* Extra Wild - Casino Slot Website Styles */

:root {
    --primary-dark: #0a0e27;
    --secondary-dark: #1a1f4b;
    --accent-blue: #2d3a8c;
    --light-blue: #4a90d9;
    --bright-blue: #64b5f6;
    --gold: #ffd700;
    --gold-light: #ffeb3b;
    --text-white: #ffffff;
    --text-gray: #b0b8c9;
    --success: #4caf50;
    --warning: #ff9800;
    --danger: #f44336;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--text-white);
    line-height: 1.6;
    min-height: 100vh;
}

/* Header Styles */
header {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--accent-blue);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: var(--bright-blue);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bright-blue);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Main Content */
main {
    padding-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--accent-blue) 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--gold), var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Live Win Ticker */
.live-ticker {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 10px;
    margin: 30px auto;
    max-width: 600px;
    border: 1px solid var(--accent-blue);
}

.live-ticker-label {
    color: var(--bright-blue);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.live-ticker-amount {
    font-size: 32px;
    font-weight: bold;
    color: var(--gold);
    font-family: 'Courier New', monospace;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--bright-blue);
}

.btn-secondary:hover {
    background: var(--bright-blue);
    color: var(--primary-dark);
}

/* Pulse Animation for CTA Buttons */
.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Section Styles */
.section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--gold);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 40px;
}

/* Table of Contents */
.toc {
    background: rgba(26, 31, 75, 0.8);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid var(--accent-blue);
}

.toc h3 {
    color: var(--bright-blue);
    margin-bottom: 20px;
    font-size: 24px;
}

.toc ul {
    list-style: none;
    columns: 2;
    column-gap: 40px;
}

.toc li {
    margin-bottom: 10px;
}

.toc a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.toc a:hover {
    color: var(--bright-blue);
}

.toc a::before {
    content: '→ ';
    color: var(--gold);
}

/* Content Blocks */
.content-block {
    background: rgba(26, 31, 75, 0.6);
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
    border: 1px solid var(--accent-blue);
}

.content-block h2 {
    color: var(--bright-blue);
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-blue);
}

.content-block h3 {
    color: var(--gold);
    font-size: 22px;
    margin: 30px 0 15px;
}

.content-block p {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
}

.content-block ul, .content-block ol {
    color: var(--text-gray);
    margin-left: 30px;
    margin-bottom: 20px;
}

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

/* Image Styles */
.content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.image-caption {
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
    margin-top: -20px;
    margin-bottom: 30px;
    font-style: italic;
}

/* Table Styles */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(10, 14, 39, 0.8);
    border-radius: 10px;
    overflow: hidden;
}

.data-table th {
    background: var(--accent-blue);
    color: var(--text-white);
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.data-table td {
    padding: 15px;
    border-bottom: 1px solid var(--accent-blue);
    color: var(--text-gray);
}

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

.data-table tr:hover td {
    background: rgba(45, 58, 140, 0.3);
}

/* Symbol Table */
.symbol-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.symbol-card {
    background: rgba(10, 14, 39, 0.8);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 1px solid var(--accent-blue);
    transition: transform 0.3s ease;
}

.symbol-card:hover {
    transform: translateY(-5px);
    border-color: var(--bright-blue);
}

.symbol-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.symbol-name {
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 5px;
}

.symbol-value {
    color: var(--text-gray);
    font-size: 14px;
}

/* Pros & Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.pros, .cons {
    background: rgba(10, 14, 39, 0.8);
    border-radius: 10px;
    padding: 25px;
}

.pros {
    border-left: 4px solid var(--success);
}

.cons {
    border-left: 4px solid var(--danger);
}

.pros h4 {
    color: var(--success);
    margin-bottom: 15px;
    font-size: 20px;
}

.cons h4 {
    color: var(--danger);
    margin-bottom: 15px;
    font-size: 20px;
}

.pros ul, .cons ul {
    list-style: none;
    margin: 0;
}

.pros li::before {
    content: '✓ ';
    color: var(--success);
    font-weight: bold;
}

.cons li::before {
    content: '✗ ';
    color: var(--danger);
    font-weight: bold;
}

/* FAQ Styles */
.faq-item {
    background: rgba(10, 14, 39, 0.8);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--accent-blue);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(45, 58, 140, 0.3);
}

.faq-question h4 {
    color: var(--bright-blue);
    font-size: 18px;
    margin: 0;
}

.faq-icon {
    font-size: 24px;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-gray);
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--secondary-dark) 100%);
    padding: 60px 20px;
    text-align: center;
    margin: 60px 0;
    border-radius: 15px;
}

.cta-section h3 {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 20px;
}

.cta-section p {
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background: var(--primary-dark);
    border-top: 2px solid var(--accent-blue);
    padding: 60px 20px 30px;
    margin-top: 60px;
}

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

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

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

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

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

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--bright-blue);
}

.footer-contact p {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.footer-contact a {
    color: var(--bright-blue);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* Responsible Gaming Banner */
.responsible-gaming {
    background: rgba(10, 14, 39, 0.8);
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
    border: 1px solid var(--accent-blue);
}

.responsible-gaming p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.responsible-gaming-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.responsible-gaming a {
    color: var(--bright-blue);
    text-decoration: none;
    font-size: 14px;
}

.responsible-gaming a:hover {
    text-decoration: underline;
}

.age-restriction {
    display: inline-block;
    background: var(--danger);
    color: var(--text-white);
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px;
}

/* Copyright */
.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--accent-blue);
    color: var(--text-gray);
    font-size: 14px;
}

/* Play Page Specific */
.play-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    text-align: center;
}

.play-container h1 {
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 30px;
}

.play-container p {
    color: var(--text-gray);
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 40px;
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid var(--accent-blue);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 30px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 28px;
    }

    .toc ul {
        columns: 1;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .content-block {
        padding: 25px;
    }

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.highlight {
    color: var(--gold);
    font-weight: bold;
}

/* Step List for Instructions */
.step-list {
    counter-reset: step;
    list-style: none;
    margin: 30px 0;
}

.step-list li {
    position: relative;
    padding-left: 60px;
    margin-bottom: 25px;
    counter-increment: step;
}

.step-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.step-list h4 {
    color: var(--bright-blue);
    margin-bottom: 10px;
}

.step-list p {
    color: var(--text-gray);
    margin: 0;
}
