/* Supra Hot - Main Stylesheet */
/* Dark blue theme with red-yellow fruit accents */

:root {
    --primary-dark: #0a0e27;
    --secondary-dark: #1a1f4d;
    --accent-red: #e63946;
    --accent-orange: #f4a261;
    --accent-yellow: #e9c46a;
    --accent-gold: #ffd700;
    --text-light: #ffffff;
    --text-muted: #b8c0e0;
    --border-color: #2d3561;
    --success: #2ecc71;
    --shadow: rgba(0, 0, 0, 0.5);
}

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

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

.fruit {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: float 15s infinite ease-in-out;
}

.fruit:nth-child(1) { left: 5%; animation-delay: 0s; }
.fruit:nth-child(2) { left: 15%; animation-delay: 2s; }
.fruit:nth-child(3) { left: 25%; animation-delay: 4s; }
.fruit:nth-child(4) { left: 35%; animation-delay: 1s; }
.fruit:nth-child(5) { left: 45%; animation-delay: 3s; }
.fruit:nth-child(6) { left: 55%; animation-delay: 5s; }
.fruit:nth-child(7) { left: 65%; animation-delay: 2.5s; }
.fruit:nth-child(8) { left: 75%; animation-delay: 4.5s; }
.fruit:nth-child(9) { left: 85%; animation-delay: 1.5s; }
.fruit:nth-child(10) { left: 95%; animation-delay: 3.5s; }

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

/* Header */
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-red);
    box-shadow: 0 4px 20px var(--shadow);
}

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

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

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

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

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(rgba(10, 14, 39, 0.7), rgba(10, 14, 39, 0.9)),
                url('../images/hero-banner.webp') center/cover no-repeat;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px var(--shadow);
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Live Win Ticker */
.win-ticker {
    background: rgba(230, 57, 70, 0.2);
    border: 2px solid var(--accent-red);
    border-radius: 50px;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0%, 100% { box-shadow: 0 0 10px rgba(230, 57, 70, 0.5); }
    50% { box-shadow: 0 0 25px rgba(230, 57, 70, 0.8); }
}

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

.win-ticker-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-gold);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent-red), #d62839);
    color: white;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

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

.btn-secondary {
    background: linear-gradient(135deg, var(--accent-orange), #e76f51);
    color: white;
    box-shadow: 0 4px 15px rgba(244, 162, 97, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 162, 97, 0.6);
}

.btn-pulse {
    animation: pulse-btn 2s infinite;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--accent-gold);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Table of Contents */
.toc {
    background: rgba(26, 31, 77, 0.8);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

.toc h3 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.toc li {
    margin-bottom: 0.5rem;
}

.toc a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Content Cards */
.content-card {
    background: rgba(26, 31, 77, 0.6);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.content-card h2 {
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.content-card h3 {
    color: var(--accent-yellow);
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
}

.content-card p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.content-card ul,
.content-card ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-card li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

/* Tables */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: rgba(10, 14, 39, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

.data-table th,
.data-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.data-table th {
    background: var(--accent-red);
    color: white;
    font-weight: 600;
}

.data-table tr:hover {
    background: rgba(230, 57, 70, 0.1);
}

.data-table td:first-child {
    font-weight: 500;
    color: var(--accent-yellow);
}

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

.symbol-item {
    background: rgba(10, 14, 39, 0.5);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.symbol-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
}

.symbol-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.symbol-name {
    font-weight: bold;
    color: var(--accent-orange);
}

.symbol-value {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

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

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

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

.pros h4 {
    color: var(--success);
    margin-bottom: 1rem;
}

.cons h4 {
    color: var(--accent-red);
    margin-bottom: 1rem;
}

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

.pros li::before {
    content: '✓';
    color: var(--success);
    margin-right: 0.5rem;
}

.cons li::before {
    content: '✗';
    color: var(--accent-red);
    margin-right: 0.5rem;
}

/* FAQ */
.faq-item {
    background: rgba(26, 31, 77, 0.6);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--accent-orange);
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(230, 57, 70, 0.1);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.2), rgba(244, 162, 97, 0.2));
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin: 3rem 0;
    border: 2px solid var(--accent-red);
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.cta-section p {
    margin-bottom: 2rem;
    color: var(--text-muted);
}

/* Images */
.content-image {
    width: 100%;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px var(--shadow);
}

/* Footer */
footer {
    background: rgba(10, 14, 39, 0.95);
    border-top: 2px solid var(--accent-red);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

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

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

.footer-contact {
    margin-top: 1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 2rem 2rem 0;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.age-restriction {
    background: var(--accent-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

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

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .toc ul {
        columns: 1;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

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