:root {
    --accent-red: #ff3c3c;
    --accent-red-hover: #ff1a1a;
    --accent-red-glow: rgba(255, 60, 60, 0.5);
    --bg-dark: #0f0505;
    --bg-gradient: linear-gradient(180deg, #1a0505 0%, #3a0a0a 50%, #1a0505 100%);
    --card-bg: rgba(255, 255, 255, 0.95);
    --card-bg-hover: rgba(255, 255, 255, 1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: auto; /* Handled by Lenis */
    background: #000;
    overflow-x: hidden;
    height: auto;
}

/* Global Image Reset to prevent artifacts */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 0; /* Default to no radius unless specified */
}

/* Lenis Smooth Scroll compatibility */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Navbar Redesign (Pill Shape) */
.navbar-wrapper {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    padding: 0 40px;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 15px 10px 30px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-icons {
    display: flex;
    gap: 2px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid #edf2f7;
}

.social-btn i {
    width: 20px;
    height: 20px;
}

.social-btn:hover {
    background: var(--accent-red);
    color: #fff;
    transform: translateY(-2px);
}

.btn-invite {
    background: linear-gradient(135deg, #ff4d4d 0%, #ff0000 100%);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(255, 60, 60, 0.3);
}

.btn-invite:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 30px rgba(255, 60, 60, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8);
    border-radius: 0 !important; /* Force no border radius to fix Cloudflare issue */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Added strong vignette effect */
    background: radial-gradient(circle, rgba(15, 5, 5, 0.1) 0%, rgba(15, 5, 5, 0.5) 60%, rgba(15, 5, 5, 0.95) 100%);
    z-index: 2;
}

.hero-container {
    width: 100%;
    max-width: 1800px; /* Increased max-width to push content further left on large screens */
    margin: 0 auto;
    padding: 0 5%; /* Use percentage padding for better edge alignment */
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
}

/* 404 Page Styles */
.error-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.error-code {
    font-size: 10rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--accent-red);
    line-height: 1;
    text-shadow: 0 0 50px var(--accent-red-glow);
    margin-bottom: 20px;
}

.error-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.error-msg {
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.hero-content {
    max-width: 850px;
    z-index: 5;
    text-align: left; /* Back to left-aligned as requested */
    margin: 0;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1; /* Tightened line-height to avoid cut-off */
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -2px;
    animation: titleReveal 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}

@keyframes titleReveal {
    0% { transform: translateY(100px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    animation: bounce 2s infinite;
    z-index: 3;
}

.scroll-indicator span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.text-red {
    background: linear-gradient(to bottom, #ff4d4d, #990000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px var(--accent-red-glow));
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 0 35px 0; /* Left-aligned margin */
    line-height: 1.5;
}

.hero-btns {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-start; /* Left-aligned buttons */
}

.forever-free-hero {
    display: inline-block;
    background: #fff;
    color: #1a0505;
    padding: 8px 25px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    animation: fadeInDown 1s both;
}

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

.btn-primary {
    background: linear-gradient(135deg, #ff0000 0%, #990000 100%);
    color: #fff;
    border: none;
    padding: 20px 50px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px var(--accent-red-glow);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.6);
}

.btn-white {
    background: #fff;
    color: #1a0505;
    border: none;
    padding: 20px 50px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-white:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.4);
}

.footer-note {
    position: absolute;
    bottom: 50px;
    right: 80px;
    display: flex;
    gap: 15px;
    max-width: 350px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    z-index: 3;
}

/* Numbered Section */
.numbered-section {
    padding: 150px 0;
    position: relative;
}


/* Removed duplicate html block */

.numbered-item {
    position: relative;
    margin-bottom: 120px;
    display: flex;
    align-items: center;
    padding: 60px;
    background: rgba(255, 0, 0, 0.02);
    border-radius: 40px;
    border: 1px solid rgba(255, 0, 0, 0.05);
    overflow: hidden;
}

.numbered-bg {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: 25rem;
    font-weight: 800;
    color: rgba(255, 0, 0, 0.03);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    -webkit-text-stroke: 2px rgba(255, 0, 0, 0.1);
}

.numbered-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: 100px;
}

.numbered-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.numbered-icon {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 15px var(--accent-red-glow));
}

.numbered-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent-red);
    text-transform: uppercase;
}

.numbered-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.numbered-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Detailed Features */
.detailed-features {
    padding: 100px 80px;
    text-align: center;
}

.features-header {
    margin-bottom: 80px;
}

.features-header h2 {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.features-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 60, 60, 0.2);
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 60, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .card-icon-wrapper {
    background: var(--accent-red);
}

.card-icon {
    font-size: 2.2rem;
    color: var(--accent-red);
    transition: all 0.3s ease;
}

.feature-card:hover .card-icon {
    color: #fff;
}

.feature-card h3 {
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Legal Links */
.legal-links {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.9rem;
}

.legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--accent-red);
}

.sep {
    opacity: 0.3;
}

/* Personalization Section Redesign */
.personalization {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Search System */
.search-container {
    max-width: 700px;
    margin: 40px auto; /* Centered again */
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 22px 140px 22px 60px; /* Increased right padding for button */
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.1rem;
    backdrop-filter: blur(15px);
    transition: all 0.3s;
    width: 100%;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-red);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px var(--accent-red-glow);
}

.search-icon {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-red);
    opacity: 0.8;
    z-index: 10;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    padding: 0 30px;
    border-radius: 100px;
    border: none;
    background: linear-gradient(135deg, #ff3c3c 0%, #ff0000 100%);
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(255, 60, 60, 0.3);
    z-index: 10;
}


.search-btn:hover, .btn-premium-search:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(255, 60, 60, 0.6);
    background: linear-gradient(135deg, #ff5555 0%, #ff2222 100%);
}

/* Command Cards */
.command-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.cmd-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cmd-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red);
    box-shadow: 0 20px 40px rgba(255, 60, 60, 0.15);
}

.cmd-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cmd-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-red);
}

.cmd-aliases {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cmd-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.pers-content {
    flex: 1;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.command-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.command-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 20px 30px;
    border-radius: 20px;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: var(--accent-red);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.command-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.command-box::before {
    content: '>';
    font-weight: 800;
}

.pers-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.id-card {
    background: var(--card-bg);
    padding: 60px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    width: 450px;
    position: relative;
    overflow: hidden;
}

.id-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--accent-red);
}


.id-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 6px solid var(--accent-red);
    margin: 0 auto 30px;
    background: linear-gradient(45deg, #1a0505, #ff3c3c);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.id-avatar::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    background: #00ff00;
    border: 4px solid #fff;
    border-radius: 50%;
}

.id-card h3 {
    color: var(--text-dark);
    font-size: 2rem;
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.id-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Common Section Styles */
.section { padding: 140px 80px; }
/* Premium Reveal Animation */
.reveal {
    opacity: 0;
    transform: translate3d(0, 50px, 0) scale3d(0.92, 0.92, 1);
    transition: opacity 0.9s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}

/* Stagger Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Preloader - Custom Blur Reveal */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #e6e9f0 0%, #f9eef1 100%);
    transition: opacity 1s cubic-bezier(0.8, 0, 0.2, 1), backdrop-filter 1s cubic-bezier(0.8, 0, 0.2, 1);
    pointer-events: none;
    backdrop-filter: blur(20px);
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.6s cubic-bezier(0.8, 0, 0.2, 1);
    z-index: 10;
}

.avatar-ring {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
    border: 4px solid #ff9db4;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    animation: premiumPulse 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.loader-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.loader-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    color: #1c274c;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.loader-dot {
    width: 4px;
    height: 4px;
    background: #ff9db4;
    border-radius: 50%;
    margin-bottom: 15px;
}

.loader-line {
    width: 160px;
    height: 2px;
    background: #ffffff;
    border-radius: 10px;
}

@keyframes premiumPulse {
    0% { transform: scale(0.98); border-color: #ff9db4; }
    50% { transform: scale(1.02); border-color: #ff6b8b; }
    100% { transform: scale(0.98); border-color: #ff9db4; }
}

#preloader.loaded { 
    opacity: 0; 
    backdrop-filter: blur(0px);
}

#preloader.loaded .loader-content {
    transform: scale(0.9);
    opacity: 0;
}

/* Symbols */
.symbol { 
    position: fixed; 
    color: var(--text-secondary); 
    opacity: 0.3; 
    z-index: 5; 
    pointer-events: none; /* Prevent symbols from interfering with clicks */
    user-select: none;
}
.sym-tl { top: 30px; left: 30px; }
.sym-tr { top: 30px; right: 30px; display: flex; flex-direction: column; gap: 8px; }

@media (max-width: 1100px) {
    .navbar-wrapper { top: 15px; padding: 0 20px; }
    .navbar { padding: 8px 10px 8px 20px; }
    .nav-links, .social-icons { display: none; }
    .hero-container { padding: 0 40px; }
    .hero-title { font-size: 4rem; }
}

/* Premium Red Scrollbar (Global) */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0f0505;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff3c3c, #8b0000);
    border-radius: 10px;
    border: 3px solid #0f0505;
}
::-webkit-scrollbar-thumb:hover {
    background: #ff5555;
}

/* Split Layout for legal/about pages */
.split-layout {
    display: flex;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background: #0a0505;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

.side-branding {
    flex: 0 0 45%;
    background: #0f0505;
    background-image: radial-gradient(circle at center, #2a0a0a 0%, #0f0505 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    z-index: 10;
}

.circular-logo-container {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 100px rgba(255, 60, 60, 0.3);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.circular-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circular-logo-container:hover {
    transform: scale(1.02);
}

.content-panel {
    flex: 1;
    background: #ffffff !important;
    padding: 80px 40px 30px;
    margin: 20px;
    height: calc(100vh - 40px);
    height: calc(100dvh - 40px);
    overflow-y: auto;
    border-radius: 30px;
    color: #1a1a1a !important;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-red) #f0f0f0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Internal Scrollbar for Content Panel */
.content-panel::-webkit-scrollbar {
    width: 8px;
}

.content-panel::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.content-panel::-webkit-scrollbar-thumb {
    background: var(--accent-red);
    border-radius: 4px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.back-btn:hover {
    transform: translateX(-10px);
    opacity: 0.8;
}

.content-panel h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--accent-red) !important;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: none !important; /* Remove any glow from dark theme */
}

.last-updated {
    display: block;
    color: #666 !important;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.content-panel h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin: 35px 0 15px;
    color: #000000 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
}

.content-panel p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333333 !important;
    margin-bottom: 20px;
}

.footer-text {
    background: transparent;
    padding: 20px 0 10px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #888;
    width: 100%;
}

.legal-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--accent-red);
}

.sep {
    color: #ddd;
    margin: 0 10px;
}

@media (max-width: 1200px) {
    .split-layout {
        flex-direction: column;
        height: auto;
        overflow: visible;
        position: relative;
    }
    
    .side-branding {
        height: 400px;
        flex: none;
        width: 100%;
    }
    
    .circular-logo-container {
        width: 280px;
        height: 280px;
    }
    
    .content-panel {
        padding: 40px 30px;
        height: auto;
        overflow: visible;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }
    
    .content-panel h1 {
        font-size: 2.8rem;
    }
}

/* Assistance Block for White Theme */
.assistance-box {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-content h2, .about-content h2 {
    font-family: var(--font-heading);
    color: var(--accent-red);
    margin: 15px 0 5px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.legal-content p, .about-content p {
    color: #444 !important;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.assistance-box h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #000;
}

.assistance-box p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.section-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
    margin: 15px 0;
}

