/* --- Variables : Neon Safari Glassmorphism --- */
:root {
    --bg-dark: #0f0c29;
    --bg-mid: #302b63;
    --bg-light: #24243e;
    --neon-orange: #ff6a00;
    --neon-pink: #ee0979;
    --text-main: #f8f9fa;
    --text-muted: #ced4da;
    
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Nunito', sans-serif;
    --radius: 16px;
    --transition: all 0.3s ease;
}

/* --- Resets & Base --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-mid), var(--bg-light));
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* --- Typography --- */
h1, h2, h3 { font-family: var(--font-heading); color: #fff; line-height: 1.2; margin-bottom: 1rem; }
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; background: -webkit-linear-gradient(45deg, var(--neon-orange), var(--neon-pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin-bottom: 1.2rem; color: var(--text-muted); font-size: 1.05rem; }
.caption { font-size: 0.85rem; color: #adb5bd; font-style: italic; text-align: center; }
.small-text li { font-size: 0.95rem; }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 4rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mw-900 { max-width: 900px; }
.highlight { color: var(--neon-orange); font-weight: 700; }
.success-text { color: #00e676; }
.danger-text { color: #ff1744; }

/* --- Glassmorphism UI --- */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--glass-shadow);
}
.glass-header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(15, 12, 41, 0.8); backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border); padding: 15px 0;
    transition: var(--transition);
}
.glass-header.scrolled { padding: 10px 0; background: rgba(15, 12, 41, 0.95); }
.rounded-img { border-radius: 12px; border: 1px solid var(--glass-border); }
.neon-border { border: 1px solid var(--neon-pink); box-shadow: 0 0 15px rgba(238, 9, 121, 0.2); }
.p-1 { padding: 10px; }
.flex-col { display: flex; flex-direction: column; justify-content: center; }

/* --- Buttons & Badges --- */
.btn {
    display: inline-block; padding: 12px 28px; border-radius: 30px;
    font-family: var(--font-heading); font-weight: 600; text-transform: uppercase;
    transition: var(--transition); cursor: pointer; border: none; letter-spacing: 1px;
}
.btn-primary {
    background: linear-gradient(45deg, var(--neon-orange), var(--neon-pink));
    color: #fff; box-shadow: 0 4px 15px rgba(255, 106, 0, 0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(238, 9, 121, 0.6); }
.badge { display: inline-block; padding: 6px 12px; background: rgba(255, 106, 0, 0.2); color: var(--neon-orange); border-radius: 20px; font-size: 0.85rem; font-weight: 700; margin-bottom: 15px; border: 1px solid var(--neon-orange); }

/* --- Header / Nav --- */
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 35px; }
.nav-links a { margin-left: 25px; color: var(--text-main); font-weight: 600; transition: var(--transition); font-size: 0.95rem; }
.nav-links a:hover { color: var(--neon-orange); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.menu-toggle span { width: 30px; height: 3px; background: #fff; border-radius: 3px; transition: var(--transition); }

/* --- Layout Grids --- */
.section-padding { padding: 80px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-2-rev { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.align-center { align-items: center; }

/* --- Hero Section --- */
.hero { padding: 160px 0 80px; min-height: 100vh; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.image-panel { padding: 15px; transform: perspective(1000px) rotateY(-5deg); transition: transform 0.5s; }
.image-panel:hover { transform: perspective(1000px) rotateY(0deg); }
.warning-box { border-left: 4px solid var(--neon-orange); padding-left: 15px; margin: 20px 0; background: rgba(255, 106, 0, 0.05); border-radius: 0 8px 8px 0; }
.warning-box p { margin: 0; font-size: 0.95rem; color: #fff; }

/* --- Tables --- */
.table-responsive { overflow-x: auto; }
.modern-table { width: 100%; border-collapse: collapse; }
.modern-table th, .modern-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--glass-border); }
.modern-table th { font-family: var(--font-heading); color: var(--neon-pink); font-weight: 600; }
.modern-table tr:last-child td { border-bottom: none; }
.rating { background: rgba(255, 255, 255, 0.1); padding: 4px 10px; border-radius: 6px; font-weight: 700; color: var(--neon-orange); }

/* --- Lists --- */
.styled-list, .check-list, .cross-list { list-style: none; margin-bottom: 20px; }
.styled-list li { position: relative; padding-left: 30px; margin-bottom: 12px; counter-increment: my-sec-counter; }
.styled-list { counter-reset: my-sec-counter; }
.styled-list li::before { content: counter(my-sec-counter); position: absolute; left: 0; top: 0; width: 22px; height: 22px; background: var(--neon-orange); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: bold; }
.check-list li { position: relative; padding-left: 30px; margin-bottom: 12px; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: #00e676; font-weight: bold; font-size: 1.2rem; }
.cross-list li { position: relative; padding-left: 30px; margin-bottom: 12px; }
.cross-list li::before { content: '✕'; position: absolute; left: 0; color: #ff1744; font-weight: bold; font-size: 1.1rem; }
.info-box { background: rgba(238, 9, 121, 0.1); border: 1px dashed var(--neon-pink); padding: 15px; border-radius: 8px; margin-top: 20px; }
.info-box p { margin: 0; color: #fff; font-size: 0.95rem; }

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

/* --- Floating BTT Button --- */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--neon-orange); color: #fff; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; text-decoration: none; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 999; box-shadow: 0 4px 15px rgba(255, 106, 0, 0.4); }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--neon-pink); transform: translateY(-3px); }

/* --- Footer --- */
.glass-footer { border-top: 1px solid var(--glass-border); padding: 40px 0 20px; margin-top: 40px; background: rgba(0,0,0,0.2); }
.footer-logo { height: 40px; margin-bottom: 15px; filter: grayscale(100%) brightness(200%); opacity: 0.6; }
.footer-links a { margin: 0 15px; color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--neon-orange); }

/* --- Scroll Animations (Classes applied via JS) --- */
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s ease; }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all 0.8s ease; }
.reveal-fade { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal-left.active, .reveal-right.active, .reveal-fade.active { opacity: 1; transform: translate(0); }

/* --- Responsiveness --- */
@media (max-width: 992px) {
    .grid-2, .grid-2-rev { grid-template-columns: 1fr; gap: 30px; }
    .grid-2-rev > div:first-child { order: 2; }
    .grid-2-rev > div:last-child { order: 1; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .image-panel { transform: none; }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    .section-padding { padding: 60px 0; }
    .menu-toggle { display: flex; }
    .nav-links { position: fixed; top: 0; right: -100%; width: 250px; height: 100vh; background: rgba(15, 12, 41, 0.98); backdrop-filter: blur(20px); flex-direction: column; padding-top: 80px; transition: var(--transition); border-left: 1px solid var(--glass-border); }
    .nav-links.active { right: 0; }
    .nav-links a { margin: 20px; display: block; font-size: 1.1rem; }
    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}