/* aaabet Scourge Theme - CSS Styles */
/* Dark Fantasy Casino Theme - 2026 */

:root {
    --primary-dark: #0d0a1a;
    --secondary-dark: #1a1428;
    --accent-purple: #4a2c7a;
    --accent-green: #00ff88;
    --accent-gold: #ffd700;
    --text-light: #e8e6f0;
    --text-muted: #9a95a8;
    --border-color: #2d2540;
    --card-bg: rgba(26, 20, 40, 0.95);
    --gradient-dark: linear-gradient(135deg, #0d0a1a 0%, #1a1428 50%, #0d0a1a 100%);
    --gradient-accent: linear-gradient(135deg, #4a2c7a 0%, #00ff88 100%);
    --shadow-glow: 0 0 30px rgba(0, 255, 136, 0.3);
    --shadow-card: 0 10px 40px 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: var(--gradient-dark);
    color: var(--text-light);
    line-height: 1.7;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

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

/* Header & Navigation */
.site-header {
    background: rgba(13, 10, 26, 0.98);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1000;
}

.main-nav {
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

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

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent-green);
    box-shadow: var(--shadow-glow);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.6rem 1rem;
    color: var(--text-light);
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: var(--accent-purple);
    color: var(--accent-green);
}

.cta-button {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.5);
    color: var(--primary-dark);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--accent-green);
    position: relative;
    border-radius: 2px;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

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

.hero-image-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    background: rgba(13, 10, 26, 0.8);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    margin: 2rem;
}

.hero-content h1 {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

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

.hero-cta {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--primary-dark);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.6);
    color: var(--primary-dark);
}

/* Breadcrumb */
.breadcrumb {
    background: var(--secondary-dark);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    list-style: none;
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-list li::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--text-muted);
}

.breadcrumb-list li:last-child::after {
    display: none;
}

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section Styles */
section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

section:last-child {
    border-bottom: none;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* Intro Section */
.intro-section {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    border: 1px solid var(--border-color);
}

.intro-content h2 {
    text-align: center;
    margin-bottom: 2rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Games Section */
.games-section h2 {
    text-align: center;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.game-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    margin: 0;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-green);
}

.game-card a {
    display: block;
    color: inherit;
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover img {
    transform: scale(1.05);
}

.game-card figcaption {
    padding: 1.5rem;
}

.game-card h3 {
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.game-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Slots Section */
.slots-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.slots-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-card);
}

.slots-info {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.slots-cta,
.promo-cta,
.live-cta {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--primary-dark);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.slots-cta:hover,
.promo-cta:hover,
.live-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    color: var(--primary-dark);
}

/* Promo Section */
.promo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.promo-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-card);
}

.promo-info {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.promo-info h3 {
    color: var(--accent-gold);
    margin-top: 1.5rem;
}

.promo-info h3:first-child {
    margin-top: 0;
}

/* Payment Section */
.payment-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.payment-image img {
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.payment-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.payment-info h3 {
    color: var(--accent-green);
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
}

.payment-table caption {
    padding: 1rem;
    font-weight: 700;
    color: var(--accent-green);
    text-align: left;
}

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

.payment-table th {
    background: var(--accent-purple);
    color: var(--text-light);
}

.payment-table tr:hover {
    background: rgba(74, 44, 122, 0.3);
}

/* License Section */
.license-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.license-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-glow);
}

.license-info {
    flex: 1;
}

/* Responsible Gaming Section */
.responsible-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.responsible-image img {
    border-radius: 16px;
}

.responsible-info {
    flex: 1;
}

.responsible-list,
.help-links,
.why-list {
    list-style: none;
    margin: 1rem 0;
}

.responsible-list li,
.help-links li,
.why-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.responsible-list li::before,
.why-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
}

.help-links li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.about-info h3 {
    color: var(--accent-green);
    margin-top: 2rem;
}

.about-info h3:first-child {
    margin-top: 0;
}

.author-section {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    margin: 0;
}

.author-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 3px solid var(--accent-green);
    object-fit: cover;
}

.author-info h4 {
    color: var(--accent-green);
    margin-bottom: 0.3rem;
}

.author-title {
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.author-bio {
    font-size: 0.9rem;
    text-align: left;
}

/* Support Section */
.support-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.support-image img {
    border-radius: 16px;
}

.support-info {
    flex: 1;
}

.support-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.support-channel {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    margin: 0;
}

.support-channel:hover {
    border-color: var(--accent-green);
    box-shadow: var(--shadow-glow);
}

.support-channel img {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    border-radius: 50%;
}

.support-channel h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.support-channel p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-item summary {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-item summary:hover {
    background: var(--accent-purple);
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-green);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 1.5rem 1.5rem;
}

/* Reviews Section */
.reviews-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin: 0;
}

.review-card blockquote {
    font-style: italic;
    margin-bottom: 1rem;
}

.review-card blockquote p {
    color: var(--text-light);
    margin-bottom: 0;
}

.review-card figcaption {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.review-card strong {
    color: var(--accent-green);
}

.review-location {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.review-rating {
    color: var(--accent-gold);
    margin-left: auto;
}

.review-card time {
    width: 100%;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Live Casino Section */
.live-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.live-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-card);
}

.live-info {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

/* Footer */
.site-footer {
    background: var(--primary-dark);
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
}

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

.footer-section h3 {
    color: var(--accent-green);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    margin-top: 1rem;
    border-radius: 50%;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-green);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

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

.age-badge img {
    width: 50px;
    height: 50px;
    margin-top: 1rem;
}

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

.footer-legal p {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

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

.footer-legal-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

.payment-icons img {
    max-height: 40px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slots-content,
    .promo-content,
    .live-content {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .license-content,
    .responsible-content,
    .support-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .cta-button {
        display: none;
    }
    
    .hero-section {
        min-height: 60vh;
    }
    
    .hero-content {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .support-channels {
        grid-template-columns: 1fr;
    }
    
    .payment-info {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    .intro-section {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .payment-table {
        font-size: 0.85rem;
    }
    
    .payment-table th,
    .payment-table td {
        padding: 0.7rem;
    }
}

/* Animations */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
    }
}

.cta-button,
.hero-cta {
    animation: glow 2s ease-in-out infinite;
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .cta-button,
    .hero-cta,
    .mobile-menu-toggle {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}
