:root {
    --bg-base: #0a0b10;
    --glass-bg: rgba(22, 27, 34, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --accent-primary: #e32636; /* Neon Red */
    --accent-secondary: #ffd700; /* Gold */
    --text-main: #eaeaea;
    --text-muted: #a0aab2;
    --font-main: 'Inter', sans-serif;
    --transition-standard: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Ambient Glow */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}
.glow-red { top: -10%; left: -10%; background: var(--accent-primary); }
.glow-gold { bottom: 20%; right: -10%; background: var(--accent-secondary); }

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

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; color: #fff; }
h3 { font-size: 1.4rem; color: #fff; }
p { color: var(--text-muted); margin-bottom: 1.2rem; }

.text-accent { color: var(--accent-primary); }
.text-accent-secondary { color: var(--accent-secondary); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-standard);
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: linear-gradient(135deg, #e32636, #b01a28);
    color: #fff;
    box-shadow: 0 4px 15px rgba(227, 38, 54, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 38, 54, 0.5);
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
}
.btn-outline:hover {
    background: var(--accent-primary);
    color: #fff;
}

/* Header */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
    transition: var(--transition-standard);
}
.site-header.scrolled {
    background: rgba(10, 11, 16, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img { height: 40px; }
.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}
.desktop-nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-standard);
}
.desktop-nav a:hover { color: var(--accent-primary); }

/* Sections */
.section { padding: 5rem 0; }
.glass-section {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: var(--transition-standard);
}
.glass-panel:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}
.glass-panel.border-green { border-top: 3px solid #28a745; }
.glass-panel.border-red { border-top: 3px solid var(--accent-primary); }

.section-title { text-align: center; margin-bottom: 3rem; }

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Hero */
.hero-section {
    padding-top: 120px;
    padding-bottom: 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(227, 38, 54, 0.15);
    border: 1px solid var(--glass-border);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition-standard);
}
.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}
.warning-text {
    font-size: 0.85rem;
    color: #888;
    border-left: 3px solid var(--accent-primary);
    padding-left: 10px;
    margin-top: 2rem;
}

/* Tables */
.table-wrapper {
    overflow-x: auto;
    background: var(--glass-bg);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}
table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
th, td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}
th {
    background: rgba(0,0,0,0.3);
    color: var(--accent-secondary);
    font-weight: 600;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,0.03); }

/* Lists */
.styled-list {
    list-style: none;
    margin-bottom: 1.5rem;
}
.styled-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
}
.styled-list li::before {
    content: "▹";
    position: absolute;
    left: 0; top: 0;
    color: var(--accent-secondary);
    font-weight: bold;
}
.styled-list.check-green li::before { content: "✓"; color: #28a745; }
.styled-list.cross-red li::before { content: "✕"; color: var(--accent-primary); }

/* Figures */
.styled-figure {
    margin: 2rem 0;
    text-align: center;
}
.styled-figure img {
    max-width: 100%;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}
.styled-figure figcaption {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
}

/* FAQ Accordion */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 1.2rem;
    background: transparent;
    border: none;
    text-align: left;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question::after {
    content: "+";
    color: var(--accent-primary);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer p {
    padding: 0 1.2rem 1.2rem 1.2rem;
    margin: 0;
}

/* Rating Badge */
.rating {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-secondary);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: bold;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Footer */
.site-footer {
    background: #050608;
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--glass-border);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-logo img { height: 40px; filter: grayscale(1); opacity: 0.6; }
.footer-disclaimer { max-width: 500px; font-size: 0.85rem; color: #666; }
.footer-links { display: flex; gap: 1rem; }
.footer-links a { color: #888; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
    text-align: center;
    border-top: 1px solid #1a1a1a;
    padding-top: 1rem;
    font-size: 0.8rem;
    color: #555;
}

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

/* Responsive */
@media (max-width: 992px) {
    .grid-2, .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-section { padding-top: 100px; }
    h1 { font-size: 2rem; }
}
@media (max-width: 768px) {
    .desktop-nav { display: none; } /* Simplified for mobile */
    .hero-grid { text-align: center; }
    .footer-content { flex-direction: column; text-align: center; align-items: center; }
    .section { padding: 3rem 0; }
}