/* Extra Wild - Premium Casino Theme */
:root {
    --primary-dark: #0a0e27;
    --secondary-dark: #11183a;
    --accent-blue: #1a237e;
    --gold-primary: #ffd700;
    --gold-secondary: #ffb300;
    --gold-gradient: linear-gradient(135deg, #ffd700 0%, #ffb300 50%, #ff8f00 100%);
    --diamond-glow: rgba(255, 255, 255, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #b0b8c8;
    --success: #4caf50;
    --warning: #ff9800;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Floating Diamonds Animation */
.diamonds-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.diamond {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(200,220,255,0.4) 50%, rgba(255,255,255,0.6) 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: float 15s infinite ease-in-out;
    opacity: 0.3;
}

.diamond:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.diamond:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; width: 15px; height: 15px; }
.diamond:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 14s; }
.diamond:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 16s; width: 25px; height: 25px; }
.diamond:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 20s; }
.diamond:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 13s; width: 18px; height: 18px; }
.diamond:nth-child(7) { left: 70%; animation-delay: 2s; animation-duration: 17s; }
.diamond:nth-child(8) { left: 80%; animation-delay: 4s; animation-duration: 15s; width: 22px; height: 22px; }
.diamond:nth-child(9) { left: 90%; animation-delay: 1s; animation-duration: 19s; }
.diamond:nth-child(10) { left: 5%; animation-delay: 6s; animation-duration: 14s; width: 12px; height: 12px; }

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Golden Rings Animation */
.ring {
    position: absolute;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    animation: ringFloat 20s infinite ease-in-out;
    opacity: 0.2;
}

.ring:nth-child(11) { width: 50px; height: 50px; left: 15%; animation-delay: 0s; }
.ring:nth-child(12) { width: 30px; height: 30px; left: 35%; animation-delay: 5s; }
.ring:nth-child(13) { width: 40px; height: 40px; left: 55%; animation-delay: 10s; }
.ring:nth-child(14) { width: 60px; height: 60px; left: 75%; animation-delay: 3s; }
.ring:nth-child(15) { width: 25px; height: 25px; left: 85%; animation-delay: 8s; }

@keyframes ringFloat {
    0%, 100% {
        transform: translateY(100vh) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.2;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(-100px) scale(0.5);
        opacity: 0;
    }
}

/* Header */
header {
    background: linear-gradient(180deg, rgba(10,14,39,0.98) 0%, rgba(17,24,58,0.95) 100%);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold-primary);
    box-shadow: 0 4px 30px rgba(255, 215, 0, 0.2);
}

.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 {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

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

nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

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

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: var(--gold-primary);
}

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

/* Main Content */
main {
    position: relative;
    z-index: 1;
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(10,14,39,0.9) 0%, rgba(26,35,126,0.4) 50%, rgba(10,14,39,0.9) 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/banner-extra-wild.webp') center/cover;
    opacity: 0.3;
    z-index: -1;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

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

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

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

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

.btn-secondary {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
}

.btn-secondary:hover {
    background: var(--gold-primary);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Pulsing Button */
.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);
    }
}

/* Live Wins Ticker */
.live-wins {
    background: linear-gradient(90deg, rgba(255,215,0,0.1) 0%, rgba(255,179,0,0.2) 50%, rgba(255,215,0,0.1) 100%);
    padding: 15px;
    text-align: center;
    border-top: 1px solid var(--gold-primary);
    border-bottom: 1px solid var(--gold-primary);
}

.live-wins-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--success);
    font-weight: 600;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.winner-info {
    color: var(--text-secondary);
}

.winner-amount {
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Content Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--gold-gradient);
}

.section-content {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

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

/* Table of Contents */
.toc {
    background: var(--secondary-dark);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
}

.toc-title {
    font-size: 1.3rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toc ul {
    list-style: none;
}

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

.toc a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.toc a:hover {
    color: var(--gold-primary);
}

/* Info Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--secondary-dark);
    border-radius: 15px;
    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.1);
    color: var(--gold-primary);
    font-weight: 600;
}

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

.info-table tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

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

.symbol-card {
    background: var(--secondary-dark);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.symbol-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.symbol-card h4 {
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.symbol-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Pros & Cons */
.pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.pros-box,
.cons-box {
    background: var(--secondary-dark);
    border-radius: 15px;
    padding: 25px;
}

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

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

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

.cons-box h4 {
    color: var(--warning);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

.pros-box li,
.cons-box li {
    padding: 8px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

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

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

/* FAQ */
.faq-item {
    background: var(--secondary-dark);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.05);
}

.faq-question::after {
    content: '+';
    color: var(--gold-primary);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(26,35,126,0.4) 0%, rgba(10,14,39,0.8) 100%);
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    margin: 40px 0;
}

.cta-title {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

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

/* Image Section */
.image-section {
    margin: 40px 0;
    text-align: center;
}

.image-section img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.image-caption {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 15px;
    font-style: italic;
}

/* Steps List */
.steps-list {
    counter-reset: step;
    list-style: none;
    margin: 30px 0;
}

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

.steps-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.steps-list h4 {
    color: var(--gold-primary);
    margin-bottom: 8px;
}

.steps-list p {
    color: var(--text-secondary);
}

/* Footer */
footer {
    background: var(--secondary-dark);
    border-top: 2px solid var(--gold-primary);
    padding: 60px 20px 30px;
    position: relative;
    z-index: 1;
}

.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-primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

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

.footer-section a:hover {
    color: var(--gold-primary);
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

/* Responsible Gaming */
.responsible-gaming {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.responsible-gaming h4 {
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.responsible-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.responsible-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.responsible-links a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    nav {
        display: none;
        width: 100%;
        margin-top: 15px;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .symbols-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 15px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 40px 15px;
    }
    
    .symbols-grid {
        grid-template-columns: 1fr;
    }
    
    .info-table {
        font-size: 0.9rem;
    }
    
    .info-table th,
    .info-table td {
        padding: 10px;
    }
}

/* Print Styles */
@media print {
    .diamonds-container,
    .live-wins,
    .mobile-menu-btn {
        display: none !important;
    }
    
    header {
        position: static;
    }
    
    main {
        margin-top: 0;
    }
    
    .btn {
        border: 1px solid #000;
    }
}
