/* abcbet - Death Reaper Gothic Theme 2026 */
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* CSS Variables */
:root {
    --primary-dark: #0a0a0f;
    --secondary-dark: #12121a;
    --accent-purple: #8b5cf6;
    --accent-purple-dark: #6d28d9;
    --accent-gold: #d4af37;
    --accent-gold-light: #f4d03f;
    --text-primary: #e8e8e8;
    --text-secondary: #a0a0a0;
    --text-muted: #6b6b6b;
    --border-color: #2a2a3a;
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --shadow-purple: 0 0 30px rgba(139, 92, 246, 0.3);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Crimson Text', Georgia, serif;
    background-color: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--accent-gold);
    line-height: 1.3;
}

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

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

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

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-item a {
    display: block;
    padding: 10px 18px;
    color: var(--text-primary);
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-item a:hover {
    background: rgba(139, 92, 246, 0.2);
    color: var(--accent-purple);
}

.nav-item.active a {
    background: var(--gradient-purple);
    color: white;
}

/* CTA Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-gold);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    color: var(--primary-dark);
}

.cta-btn-purple {
    background: var(--gradient-purple);
    color: white;
    box-shadow: var(--shadow-purple);
}

.cta-btn-purple:hover {
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
    color: white;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.7) 50%, rgba(10, 10, 15, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 60px 0;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid var(--accent-purple);
    border-radius: 30px;
    color: var(--accent-purple);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-purple);
    border-radius: 2px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 20px auto 0;
}

/* Game Cards Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

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

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

.game-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.game-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 15, 0.9) 100%);
}

.game-card-body {
    padding: 20px;
}

.game-card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.game-card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.game-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-purple);
    font-weight: 600;
}

.game-card-link:hover {
    color: var(--accent-gold);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--secondary-dark);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    border: 2px solid var(--accent-purple);
}

.feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Bonus Banner */
.bonus-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin: 40px 0;
}

.bonus-banner img {
    width: 100%;
    height: auto;
    min-height: 300px;
    object-fit: cover;
}

.bonus-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    max-width: 500px;
}

.bonus-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.bonus-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

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

.review-card {
    background: var(--secondary-dark);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.review-info h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.review-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.review-stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.8;
}

.review-date {
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

.faq-item {
    background: var(--secondary-dark);
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(139, 92, 246, 0.1);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.faq-icon {
    color: var(--accent-purple);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Payment Methods */
.payment-section {
    text-align: center;
}

.payment-img {
    max-width: 100%;
    border-radius: 16px;
    margin: 30px auto;
}

.payment-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.payment-item {
    text-align: center;
}

.payment-item h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.payment-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* License Section */
.license-section {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.license-badge {
    width: 200px;
    flex-shrink: 0;
}

.license-badge img {
    width: 100%;
    border-radius: 12px;
}

.license-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.license-info p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

/* Support Section */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.support-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--secondary-dark);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.support-item img {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    object-fit: contain;
}

.support-item h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.support-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-purple);
}

/* Author Box */
.author-box {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: var(--secondary-dark);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin: 40px 0;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
}

.author-info h4 {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.author-info .author-title {
    color: var(--accent-purple);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Responsible Gaming */
.responsible-section {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(109, 40, 217, 0.1) 100%);
    border-radius: 20px;
    padding: 50px;
    margin: 40px 0;
}

.responsible-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.responsible-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.responsible-item {
    text-align: center;
}

.responsible-item h4 {
    color: var(--text-primary);
    margin-bottom: 10px;
}

.responsible-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    font-size: 0.9rem;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

.breadcrumb-list a {
    color: var(--text-secondary);
}

.breadcrumb-list a:hover {
    color: var(--accent-purple);
}

.breadcrumb-list .current {
    color: var(--accent-gold);
}

/* Footer */
.site-footer {
    background: var(--secondary-dark);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-wrapper {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    color: var(--accent-purple);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-purple);
    color: white;
}

.footer-column h4 {
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-badges img {
    height: 50px;
    width: auto;
}

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

/* Inner Page Hero */
.inner-hero {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
}

.inner-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.inner-hero p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Article Content */
.article-content {
    padding: 60px 0;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-body h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
}

.article-body h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--accent-purple);
}

.article-body p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.9;
}

.article-body ul, .article-body ol {
    margin: 20px 0;
    padding-left: 30px;
    color: var(--text-secondary);
}

.article-body li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.article-body img {
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: var(--shadow-purple);
}

/* Info Box */
.info-box {
    background: rgba(139, 92, 246, 0.1);
    border-left: 4px solid var(--accent-purple);
    padding: 20px 25px;
    border-radius: 0 12px 12px 0;
    margin: 30px 0;
}

.info-box h4 {
    color: var(--accent-purple);
    margin-bottom: 10px;
}

.info-box p {
    margin-bottom: 0;
}

/* Table Styles */
.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--secondary-dark);
    border-radius: 12px;
    overflow: hidden;
}

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

.styled-table th {
    background: rgba(139, 92, 246, 0.2);
    color: var(--accent-gold);
    font-family: 'Cinzel', serif;
}

.styled-table td {
    color: var(--text-secondary);
}

.styled-table tr:last-child td {
    border-bottom: none;
}

/* Sitemap Styles */
.sitemap-section {
    padding: 60px 0;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.sitemap-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-purple);
}

.sitemap-column ul {
    list-style: none;
}

.sitemap-column li {
    margin-bottom: 12px;
}

.sitemap-column a {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sitemap-column a::before {
    content: '›';
    color: var(--accent-purple);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--secondary-dark);
        padding: 20px;
        border-top: 1px solid var(--border-color);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
    }
    
    .header-inner {
        position: relative;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-content {
        left: 20px;
        right: 20px;
    }
    
    .bonus-title {
        font-size: 1.8rem;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .license-section {
        flex-direction: column;
        text-align: center;
    }
    
    .inner-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
    }
    
    .game-card-img {
        height: 160px;
    }
    
    .responsible-section {
        padding: 30px 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

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