/* BDG88 - Main Styles */
/* Color scheme: Dark blue (#0a1628), Gold (#ffd700), Accent blue (#2563eb) */

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

:root {
    --bg-dark: #0a1628;
    --bg-card: #111d35;
    --bg-card-hover: #182847;
    --primary: #2563eb;
    --accent: #ffd700;
    --text: #e8ecf4;
    --text-muted: #94a3b8;
    --border: rgba(255,255,255,0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

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

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

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

/* Header */
.header {
    background: linear-gradient(180deg, #0d1a30 0%, var(--bg-dark) 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary);
}

.nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.nav a {
    color: var(--text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

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

.nav a:hover::after {
    width: 100%;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

/* Hero */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0d1e3a 50%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Info Table */
.info-table {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid var(--border);
}

.info-table table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr {
    border-bottom: 1px solid var(--border);
}

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

.info-table td {
    padding: 15px 10px;
    color: var(--text);
}

.info-table td:first-child {
    color: var(--accent);
    font-weight: 600;
    width: 40%;
}

/* Sections */
.section {
    padding: 50px 0;
}

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

.section-title {
    font-size: clamp(24px, 4vw, 32px);
    margin-bottom: 20px;
    color: var(--text);
}

.section-title span {
    color: var(--accent);
}

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

.content p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.content h2 {
    font-size: 24px;
    margin: 40px 0 20px;
    color: var(--text);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

.content h2::before {
    content: '◆ ';
    color: var(--accent);
}

.content ul, .content ol {
    margin: 20px 0;
    padding-left: 25px;
    color: var(--text-muted);
}

.content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.content li strong {
    color: var(--accent);
}

/* Feature Cards */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.feature-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

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

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* FAQ */
.faq-section {
    margin: 40px 0;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    color: var(--accent);
    font-size: 16px;
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #182847 0%, var(--bg-card) 100%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
    border: 1px solid var(--primary);
}

.cta-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Related Pages */
.related-pages {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 25px;
    margin: 40px 0;
}

.related-pages h3 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 18px;
}

.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.related-links a {
    color: var(--text);
    padding: 8px 15px;
    background: var(--bg-dark);
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s;
}

.related-links a:hover {
    background: var(--primary);
    color: #fff;
}

/* Footer */
.footer {
    background: var(--bg-card);
    padding: 40px 0 20px;
    margin-top: 50px;
    border-top: 1px solid var(--border);
}

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

.footer-section h4 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-section a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--text);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 13px;
}

.disclaimer {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    font-size: 12px;
    color: var(--text-muted);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        padding: 15px 0;
    }
    
    .nav.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-inner {
        flex-wrap: wrap;
    }
    
    .header-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .info-table td {
        display: block;
        padding: 10px;
    }
    
    .info-table td:first-child {
        width: 100%;
        padding-bottom: 5px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}
