/* Coin Volcano - Main Stylesheet */
:root {
    --primary-dark: #0a0e27;
    --secondary-dark: #1a1f4d;
    --accent-orange: #ff6b35;
    --accent-gold: #ffd700;
    --accent-red: #e63946;
    --text-light: #ffffff;
    --text-gray: #b8c2cc;
    --border-glow: rgba(255, 107, 53, 0.5);
    --fire-gradient: linear-gradient(135deg, #ff6b35 0%, #e63946 50%, #ff8c42 100%);
    --gold-gradient: linear-gradient(135deg, #ffd700 0%, #ffaa00 50%, #ffd700 100%);
}

* {
    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-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
header {
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.98) 0%, rgba(26, 31, 77, 0.95) 100%);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    border-bottom: 2px solid var(--accent-orange);
}

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

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

.logo img {
    height: 55px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.4));
    transition: filter 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

.logo-text {
    display: none;
}

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

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: var(--accent-gold);
}

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

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

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

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(26, 31, 77, 0.8) 100%),
                url('../images/hero-banner.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ff6b35" opacity="0.3"/></svg>') repeat;
    animation: float 20s linear infinite;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

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

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

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

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

/* Live Win Ticker */
.win-ticker {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--accent-gold);
    border-radius: 50px;
    padding: 15px 30px;
    margin: 30px auto;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
    to { box-shadow: 0 0 30px rgba(255, 215, 0, 0.7); }
}

.win-ticker-label {
    color: var(--accent-gold);
    font-weight: 700;
}

.win-ticker-amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: #00ff88;
}

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

.btn-primary {
    background: var(--fire-gradient);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

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

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

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

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--accent-gold);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--fire-gradient);
    border-radius: 2px;
}

/* Table of Contents */
.toc {
    background: rgba(26, 31, 77, 0.5);
    border: 1px solid var(--accent-orange);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
}

.toc-title {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.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;
}

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

/* Content Styles */
.content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.content h2 {
    font-size: 2rem;
    color: var(--accent-gold);
    margin: 40px 0 20px;
}

.content h3 {
    font-size: 1.5rem;
    color: var(--accent-orange);
    margin: 30px 0 15px;
}

.content ul, .content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content li {
    margin-bottom: 10px;
    color: var(--text-gray);
}

/* Info Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(26, 31, 77, 0.5);
    border-radius: 15px;
    overflow: hidden;
}

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

.info-table th {
    background: rgba(255, 107, 53, 0.2);
    color: var(--accent-gold);
    font-weight: 700;
}

.info-table tr:hover {
    background: rgba(255, 107, 53, 0.1);
}

/* Symbols Table */
.symbols-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.symbols-table th,
.symbols-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.symbols-table th {
    background: rgba(255, 107, 53, 0.2);
    color: var(--accent-gold);
}

.symbols-table img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

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

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

.pros, .cons {
    background: rgba(26, 31, 77, 0.5);
    border-radius: 15px;
    padding: 25px;
}

.pros {
    border-left: 4px solid #00ff88;
}

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

.pros h4 {
    color: #00ff88;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

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

.pros li::before {
    content: '✓';
    color: #00ff88;
    margin-right: 10px;
    font-weight: bold;
}

.cons li::before {
    content: '✗';
    color: var(--accent-red);
    margin-right: 10px;
    font-weight: bold;
}

/* FAQ Section */
.faq-item {
    background: rgba(26, 31, 77, 0.5);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
}

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

.faq-question:hover {
    background: rgba(255, 107, 53, 0.1);
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--text-gray);
}

/* CTA Buttons Between Content */
.cta-between {
    text-align: center;
    margin: 40px 0;
}

/* Footer */
footer {
    background: linear-gradient(180deg, rgba(26, 31, 77, 0.95) 0%, rgba(10, 14, 39, 0.98) 100%);
    border-top: 2px solid var(--accent-orange);
    padding: 60px 0 30px;
}

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

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

.footer-section h4 {
    color: var(--accent-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(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.footer-contact a:hover {
    color: var(--accent-gold);
}

/* Responsible Gaming Banner */
.rg-banner {
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid rgba(0, 123, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}

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

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

.rg-links a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
}

.rg-links a:hover {
    text-decoration: underline;
}

.age-restriction {
    background: rgba(230, 57, 70, 0.2);
    border: 1px solid var(--accent-red);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    margin: 20px 0;
    font-weight: 700;
    color: var(--accent-red);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    padding-top: 30px;
    text-align: center;
    color: var(--text-gray);
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* 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: 15px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        margin-top: 70px;
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .toc ul {
        columns: 1;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .info-table {
        font-size: 0.9rem;
    }
    
    .info-table th,
    .info-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .win-ticker {
        flex-direction: column;
        padding: 15px;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

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

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}
