/* Amazon Slots Casino - Styles */
:root {
    --primary: #0a0e27;
    --secondary: #0f1635;
    --accent: #1a2547;
    --neon: #00d4ff;
    --neon-bright: #4de8ff;
    --neon-glow: rgba(0, 212, 255, 0.3);
    --gold: #ffd700;
    --text: #e0e6f0;
    --text-muted: #8b9bb4;
    --white: #ffffff;
    --danger: #ff4757;
    --success: #2ed573;
}

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

/* Header */
.header {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

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

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

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.nav-desktop {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-desktop a {
    color: var(--text);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.nav-desktop a:hover {
    color: var(--neon);
    border-color: var(--neon);
    background: rgba(0, 212, 255, 0.1);
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--neon);
    color: var(--neon);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.2rem;
}

.nav-mobile {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 5px;
    padding-top: 10px;
}

.nav-mobile a {
    color: var(--text);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s;
}

.nav-mobile a:hover {
    color: var(--neon);
    border-color: var(--neon);
    background: rgba(0, 212, 255, 0.1);
}

.nav-mobile.active { display: flex; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--neon);
    color: var(--primary);
    box-shadow: 0 0 20px var(--neon-glow);
    animation: pulse 2s infinite;
}

.btn-primary:hover {
    background: var(--neon-bright);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--neon);
    border: 2px solid var(--neon);
    box-shadow: 0 0 15px var(--neon-glow);
    animation: pulse 2s infinite;
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.15);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

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

.btn-gold:hover {
    background: #ffe44d;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.9rem;
    border-radius: 8px;
}

.btn-center {
    display: block;
    margin: 30px auto;
    max-width: 320px;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 15px var(--neon-glow); }
    50% { box-shadow: 0 0 25px rgba(0, 212, 255, 0.5); }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 39, 0.75);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 0 20px var(--neon-glow);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--neon);
    margin-bottom: 35px;
    text-shadow: 0 0 10px var(--neon-glow);
}

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

/* Dynamic Win Ticker */
.win-ticker {
    background: var(--secondary);
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

.win-ticker-inner {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: ticker 25s linear infinite;
}

.win-ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
}

.win-ticker-item span { color: var(--neon); }

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

.section {
    padding: 50px 0;
}

.section-alt {
    background: var(--secondary);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--neon);
    border-radius: 3px;
    box-shadow: 0 0 10px var(--neon-glow);
}

h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--neon);
    margin: 30px 0 15px;
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--neon-bright);
    margin: 25px 0 12px;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin: 20px 0 10px;
}

p {
    margin-bottom: 15px;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.7;
}

ul, ol {
    margin: 15px 0 15px 25px;
    color: var(--text);
}

li {
    margin-bottom: 8px;
    line-height: 1.6;
}

a { color: var(--neon); }

/* Images */
.content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 16px;
    margin: 25px auto;
    display: block;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.image-caption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: -15px;
    margin-bottom: 20px;
}

/* Tables */
.table-wrap {
    overflow-x: auto;
    margin: 25px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--accent);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

th {
    background: rgba(0, 212, 255, 0.15);
    color: var(--neon);
    font-weight: 600;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid var(--neon);
}

td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    color: var(--text);
}

tr:hover td {
    background: rgba(0, 212, 255, 0.05);
}

/* Slot Cards */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.slot-card {
    background: var(--accent);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s;
    text-align: center;
}

.slot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    border-color: var(--neon);
}

.slot-card-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-bottom: 2px solid rgba(0, 212, 255, 0.2);
}

.slot-card-title {
    padding: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
}

.slot-card-provider {
    padding-bottom: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Bonus Banner */
.bonus-banner {
    background: var(--accent);
    border: 2px solid var(--neon);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.bonus-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--neon-glow);
    animation: bannerGlow 2s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes bannerGlow {
    from { opacity: 0.3; }
    to { opacity: 0.6; }
}

.bonus-banner > * {
    position: relative;
    z-index: 1;
}

.bonus-banner h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.bonus-banner p {
    font-size: 1.2rem;
    color: var(--white);
}

/* Forms */
.form-box {
    background: var(--accent);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    padding: 30px;
    max-width: 450px;
    margin: 25px auto;
}

.form-box h3 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--neon);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    background: var(--primary);
    color: var(--white);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.form-group input:focus {
    border-color: var(--neon);
    box-shadow: 0 0 10px var(--neon-glow);
}

/* FAQ */
.faq-item {
    background: var(--accent);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 22px;
    font-weight: 600;
    color: var(--neon);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

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

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
}

.faq-item.active .faq-question::after { content: '-'; }

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

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

/* TOC Navigation */
.toc {
    background: var(--accent);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 14px;
    padding: 25px 30px;
    margin: 25px 0;
}

.toc-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--neon);
    margin-bottom: 15px;
}

.toc ul {
    list-style: none;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 8px;
}

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

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

/* Footer */
.footer {
    background: var(--secondary);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 50px 0 25px;
    margin-top: 50px;
}

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

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--neon);
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

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

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

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 10px;
}

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

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

/* Neon text effect */
.neon-text {
    color: var(--neon);
    text-shadow: 0 0 10px var(--neon-glow), 0 0 20px var(--neon-glow);
}

.gold-text {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb { background: var(--neon); border-radius: 4px; }

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--neon);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .mobile-menu-btn { display: block; }
    .hero h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { padding: 12px 28px; font-size: 0.95rem; }
    .slots-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
    .toc ul { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 25px; }
    .header-container { justify-content: space-between; }
    .nav-buttons { gap: 5px; }
    .btn-small { padding: 8px 16px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .hero { min-height: 400px; }
    .hero h1 { font-size: 1.6rem; }
    .container { padding: 0 15px; }
    .section { padding: 35px 0; }
    .bonus-banner { padding: 25px 20px; }
    .form-box { padding: 20px; }
}
