/* assets/css/landing.css */
:root {
    --primary-color: #fdb813;
    --primary-dark: #e0a00b;
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent-red: #ef4444;
    --accent-green: #10b981;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* Navbar */
.nav-custom {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.brand-logo span {
    background: var(--primary-color);
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 4px;
}

/* Hero Section */
.hero-section {
    padding: 100px 0 60px;
    background: radial-gradient(circle at top right, rgba(253, 184, 19, 0.05), transparent);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn-primary-custom {
    background: var(--primary-color);
    color: #000;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(253, 184, 19, 0.3);
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(253, 184, 19, 0.4);
}

/* Features */
.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(253, 184, 19, 0.1);
    color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

/* Game Rates Table */
.rates-container {
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    padding: 20px;
}

.rates-table th {
    color: var(--text-muted);
    font-weight: 500;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rates-table td {
    padding: 1.5rem;
    font-weight: 600;
}

.rate-badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-item {
    background: var(--bg-card);
    border-radius: 16px;
    margin-bottom: 1rem;
}

.faq-btn {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    color: #fff;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
}
