/* 
   27bet - Unique Design System 
   Theme: "Midnight Gold" (Deep Red/Gold/Black)
   Font: Roboto (Google Fonts)
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700;900&display=swap');

:root {
    --color-bg: #0a0a0a;
    --color-surface: #1a1a1a;
    --color-primary: #d00000; /* Deep Red */
    --color-secondary: #ffb703; /* Gold */
    --color-text: #e5e5e5;
    --color-text-muted: #a0a0a0;
    --spacing-unit: 8px;
    --border-radius: 4px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

a:hover {
    color: var(--color-secondary);
}

/* Layout Utilities */
.wrapper {
    max-width: 1100px; /* Slightly narrower for reading focus */
    margin: 0 auto;
    padding: 0 20px;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }

/* Header (Non-sticky) */
.site-header {
    background: var(--color-surface);
    padding: 1.5rem 0;
    border-bottom: 3px solid var(--color-primary);
}

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

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

/* Navigation - Unique Style: Text Links with Underline Effect */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.3s;
}

.nav-item:hover::after {
    width: 100%;
}

.btn-play {
    background: var(--color-primary);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(208, 0, 0, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(208, 0, 0, 0.6);
    color: white;
}

/* Hero Section - Asymmetric Layout */
.hero-section {
    position: relative;
    background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.4)), url('../images/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 8rem 0;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    border-left: 5px solid var(--color-secondary);
    padding-left: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
}

/* Content Sections */
.section-block {
    padding: 5rem 0;
    border-bottom: 1px solid #222;
}

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

.card {
    background: var(--color-surface);
    border: 1px solid #333;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: border-color 0.3s;
}

.card:hover {
    border-color: var(--color-secondary);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.3s;
}

.card:hover .card-img {
    filter: grayscale(0%);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: white;
}

.card-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

/* Text Content Styling (Typography Focus) */
.article-content h2 {
    color: var(--color-secondary);
    margin: 2.5rem 0 1.5rem;
    font-size: 2rem;
}

.article-content h3 {
    color: white;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.article-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

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

.faq-item {
    border-bottom: 1px solid #333;
}

.faq-question {
    padding: 1.5rem 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--color-text-muted);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

/* Footer */
.site-footer {
    background: #050505;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid #222;
}

.footer-links h4 {
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

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

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

.footer-links a {
    color: var(--color-text-muted);
}

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

.payment-methods {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.pay-tag {
    background: #222;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    color: #fff;
}

/* Mobile */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-surface);
        padding: 1rem;
        border-bottom: 2px solid var(--color-primary);
        z-index: 100;
    }
    .main-nav.active { display: block; }
    .main-nav ul { flex-direction: column; gap: 1rem; text-align: center; }
    
    .hero-title { font-size: 2.5rem; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    
    .hero-content { border-left: none; padding-left: 0; text-align: center; }
}
