/* --- Variables & Setup --- */
:root {
    --bg-dark: #0a0f16;
    --bg-card: rgba(25, 32, 45, 0.6);
    --primary: #00E575;
    --primary-glow: rgba(0, 229, 117, 0.4);
    --secondary: #FF2A4D;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.1);
    --radius: 16px;
    --transition: 0.3s ease;
}

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

body {
    font-family: 'Inter', 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;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
}

a { text-decoration: none; color: inherit; }

/* --- Typography --- */
h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 1rem; color: #fff; }
h2 { font-size: 2rem; margin-bottom: 1.5rem; color: #fff; border-left: 4px solid var(--primary); padding-left: 15px;}
h3 { font-size: 1.3rem; margin-bottom: 1rem; color: #fff; }
p { margin-bottom: 1rem; color: var(--text-muted); }
.caption { font-size: 0.85rem; color: var(--text-muted); text-align: center; margin-top: 0.5rem; font-style: italic; }
.small-text { font-size: 0.85rem; color: var(--text-muted); }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}
.btn-primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 15px var(--primary-glow);
}
.btn-primary:hover {
    background: #00ff83;
    box-shadow: 0 0 25px var(--primary-glow);
    transform: translateY(-2px);
}
.btn-outline {
    border: 1px solid var(--border-color);
    color: #fff;
}
.btn-outline:hover {
    background: var(--border-color);
}

/* --- Utilities & Cards --- */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 30px;
}
.glass-card.border-green { border-color: var(--primary); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }
.badge { display: inline-block; padding: 5px 12px; background: rgba(0, 229, 117, 0.1); color: var(--primary); border-radius: 20px; font-size: 0.85rem; margin-bottom: 15px; border: 1px solid var(--primary-glow); }
.notice { background: rgba(255, 42, 77, 0.1); border-left: 4px solid var(--secondary); padding: 15px; border-radius: 4px; font-size: 0.9rem; color: #fff; }

/* --- Layout Grids --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.align-center { align-items: center; }

/* --- Lists --- */
.styled-list { margin-left: 20px; margin-bottom: 20px; color: var(--text-muted); }
.styled-list li { margin-bottom: 10px; padding-left: 5px; }
.styled-list li::marker { color: var(--primary); font-weight: bold; }

.styled-bullets { list-style: none; margin-bottom: 20px; }
.styled-bullets li { position: relative; padding-left: 25px; margin-bottom: 10px; color: var(--text-muted); }
.styled-bullets li::before { content: "→"; position: absolute; left: 0; color: var(--primary); }
.green-bullets li::before { content: "✓"; color: var(--primary); }
.red-bullets li::before { content: "✕"; color: var(--secondary); }

/* --- Header --- */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}
.header.scrolled {
    background: rgba(10, 15, 22, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img { height: 40px; width: auto; border-radius: 0; }
.nav-menu a {
    color: var(--text-main);
    margin: 0 15px;
    font-size: 0.95rem;
    transition: var(--transition);
}
.nav-menu a:hover { color: var(--primary); }

/* --- Hero Section --- */
.hero {
    padding: 150px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero-image { position: relative; }
.glow-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; height: 80%;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
}
.glow-bg.green { background: radial-gradient(circle, var(--primary) 0%, transparent 70%); }

/* --- Tables --- */
section { margin-bottom: 80px; }
.table-responsive { overflow-x: auto; border-radius: var(--radius); }
.modern-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}
.modern-table th, .modern-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}
.modern-table th { background: rgba(255,255,255,0.05); font-weight: 600; color: #fff; }
.modern-table tr:hover { background: rgba(255,255,255,0.02); }
.rating { font-weight: bold; color: var(--primary); }
.rating.highlight { color: #fff; background: var(--primary); padding: 4px 10px; border-radius: 4px; color: #000; }

/* --- FAQ Accordion --- */
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-card);
}
.accordion-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px;
    text-align: left;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}
.accordion-btn::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}
.accordion-btn.active::after { content: '−'; transform: rotate(180deg); }
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
}
.accordion-content p { padding-bottom: 20px; }

/* --- Footer --- */
.footer {
    background: #05080b;
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.footer-logo { height: 30px; margin-bottom: 10px; border-radius: 0; }
.footer-links a { margin-left: 20px; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { text-align: center; color: var(--text-muted); font-size: 0.9rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; }

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Media Queries --- */
@media (max-width: 992px) {
    .grid-2 { grid-template-columns: 1fr; gap: 30px; }
    .hero { padding-top: 120px; }
    .nav-menu { display: none; } /* Simplified mobile for landing */
}
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .hero-grid > div:first-child { order: 2; }
    .hero-grid > div:last-child { order: 1; margin-bottom: 30px; }
    .footer-inner { flex-direction: column; text-align: center; gap: 20px; }
    .footer-links a { margin: 0 10px; }
}