/* Royal Seven XXL - Main Stylesheet */
/* Pink Neon Theme with Floating Fruits */

:root {
    --primary-pink: #ff1493;
    --neon-pink: #ff69b4;
    --dark-pink: #c71585;
    --purple-bg: #1a0a1a;
    --dark-purple: #0d050d;
    --gold: #ffd700;
    --gold-light: #ffec8b;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray: #cccccc;
    --shadow-neon: 0 0 20px rgba(255, 20, 147, 0.6);
    --shadow-gold: 0 0 20px rgba(255, 215, 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(--purple-bg) 0%, var(--dark-purple) 100%);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Floating Fruits Animation */
.floating-fruit {
    position: fixed;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
    animation: float 15s infinite ease-in-out;
}

.floating-fruit:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.floating-fruit:nth-child(2) { top: 20%; right: 8%; animation-delay: 2s; }
.floating-fruit:nth-child(3) { top: 50%; left: 3%; animation-delay: 4s; }
.floating-fruit:nth-child(4) { top: 70%; right: 5%; animation-delay: 6s; }
.floating-fruit:nth-child(5) { top: 30%; left: 90%; animation-delay: 8s; }
.floating-fruit:nth-child(6) { top: 80%; left: 15%; animation-delay: 10s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(30px) rotate(-5deg); }
}

/* Header */
header {
    background: rgba(26, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-pink);
    box-shadow: var(--shadow-neon);
}

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

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

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

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

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

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

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

nav a:hover {
    color: var(--neon-pink);
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.2) 0%, rgba(26, 10, 26, 0.9) 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--primary-pink);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 105, 180, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero h1 {
    font-size: 3rem;
    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: var(--shadow-gold);
}

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

.hero-image {
    max-width: 600px;
    width: 100%;
    margin: 30px auto;
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(255, 20, 147, 0.4);
    border: 3px solid var(--primary-pink);
}

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

.win-ticker-icon {
    color: var(--gold);
    font-size: 1.5rem;
}

.win-ticker-text {
    font-size: 1.1rem;
}

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

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

.btn-primary {
    background: linear-gradient(45deg, var(--primary-pink), var(--dark-pink));
    color: var(--white);
    box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.8);
}

.btn-secondary {
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    color: var(--dark-purple);
    box-shadow: var(--shadow-gold);
}

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

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

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

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

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Table of Contents */
.toc {
    background: rgba(255, 20, 147, 0.1);
    border: 2px solid var(--primary-pink);
    border-radius: 15px;
    padding: 25px;
    margin: 40px 0;
    box-shadow: var(--shadow-neon);
}

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

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

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

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

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

.toc a:hover {
    color: var(--neon-pink);
}

/* Content Blocks */
.content-block {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 20, 147, 0.3);
}

.content-block h2 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-pink);
}

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

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

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

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

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

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

.data-table th {
    background: rgba(255, 20, 147, 0.2);
    color: var(--gold);
    font-weight: bold;
}

.data-table tr:hover {
    background: rgba(255, 20, 147, 0.1);
}

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

.symbol-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--primary-pink);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.symbol-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
}

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

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

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

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

.pros, .cons {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
}

.pros {
    border: 2px solid #00ff00;
}

.cons {
    border: 2px solid #ff4444;
}

.pros h4 {
    color: #00ff00;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cons h4 {
    color: #ff4444;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.pros li::before {
    content: '✓';
    color: #00ff00;
    margin-right: 10px;
}

.cons li::before {
    content: '✗';
    color: #ff4444;
    margin-right: 10px;
}

/* FAQ */
.faq-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.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(255, 20, 147, 0.1);
}

.faq-question h4 {
    color: var(--gold);
    margin: 0;
}

.faq-icon {
    color: var(--primary-pink);
    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(--gray-light);
    margin: 0;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--primary-pink);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-neon);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-caption {
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
}

.gallery-caption h4 {
    color: var(--gold);
    margin-bottom: 5px;
}

.gallery-caption p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

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

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border-left: 4px solid var(--primary-pink);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-pink), var(--dark-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--gold);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--gray-light);
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.2) 0%, rgba(26, 10, 26, 0.9) 100%);
    padding: 60px 20px;
    text-align: center;
    border-top: 3px solid var(--primary-pink);
    border-bottom: 3px solid var(--primary-pink);
    margin: 40px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

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

/* Footer */
footer {
    background: var(--dark-purple);
    border-top: 3px solid var(--primary-pink);
    padding: 60px 20px 30px;
    position: relative;
    z-index: 10;
}

.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: 1.2rem;
}

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

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

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

.footer-section a:hover {
    color: var(--neon-pink);
}

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

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

.footer-contact a:hover {
    color: var(--neon-pink);
}

/* Responsible Gaming */
.responsible-gaming {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: center;
}

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

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

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

.rg-links a {
    color: var(--neon-pink);
    text-decoration: none;
    padding: 8px 20px;
    border: 1px solid var(--primary-pink);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.rg-links a:hover {
    background: var(--primary-pink);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 20, 147, 0.3);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 10, 26, 0.98);
        padding: 20px;
        display: none;
        border-bottom: 2px solid var(--primary-pink);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .toc ul {
        columns: 1;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-pink { color: var(--neon-pink); }
.mb-20 { margin-bottom: 20px; }
.mt-20 { margin-top: 20px; }
