/* Custom Properties (Color Palette) */
:root {
    --bg-dark: #0f0f0f;
    --bg-card: #1e1e1e;
    --gold: #FFD700;
    --orange: #FF8C00;
    --yellow: #FFFF00;
    --text-main: #f5f5f5;
    --text-muted: #a0a0a0;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography & Links */
a { text-decoration: none; color: inherit; }
h1, h2, h3 { color: var(--gold); margin-bottom: 15px; }

/* Navbar */
.navbar {
    background-color: var(--bg-card);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-main);
}
.logo span { color: var(--orange); }

.nav-links a {
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--yellow); }

/* Buttons */
.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--orange);
    color: var(--bg-dark);
    border: none;
}
.btn-primary:hover {
    background-color: var(--yellow);
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}
.btn-outline:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
}

.btn-large {
    padding: 15px 30px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(30,30,30,1) 0%, rgba(15,15,15,1) 100%);
}
.hero h1 { font-size: 48px; }
.hero h1 span { color: var(--orange); }
.hero p { color: var(--text-muted); font-size: 18px; margin-bottom: 30px; max-width: 700px; margin-inline: auto; }

/* Grid Sections (Features & Reviews) */
.features, .reviews, .faq {
    padding: 60px 0;
    text-align: center;
}

.feature-grid, .review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-card, .review-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 140, 0, 0.2);
    transition: transform 0.3s;
}
.feature-card:hover, .review-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.stars { color: var(--yellow); font-size: 20px; margin-bottom: 10px; }

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 30px auto 0;
    text-align: left;
}

.faq-item {
    background-color: var(--bg-card);
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 16px;
    font-weight: bold;
    padding: 15px 20px;
    cursor: pointer;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background-color: var(--bg-card);
    border-top: 2px solid var(--orange);
    padding: 40px 0 20px;
    margin-top: 50px;
}
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.footer-links a { margin-left: 15px; color: var(--text-muted); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { text-align: center; color: var(--text-muted); margin-top: 20px; font-size: 14px; }

/* Responsive */
@media (max-width: 768px) {
    .nav-container { flex-direction: column; gap: 15px; }
    .hero h1 { font-size: 32px; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
}