@import url('https://fonts.googleapis.com/css2?family=Numans&display=swap');

:root {
    --text-h1: clamp(2.5rem, 5vw + 1rem, 5.5rem);
    --text-h2: clamp(2rem, 4vw + 1rem, 3.75rem);
    --text-p:  clamp(1rem, 0.5vw + 0.9rem, 1.125rem);
    --container-padding: clamp(1rem, 8vw, 15rem);
    --nav-height: 80px;
    --transition-speed: 0.4s;
    
    /* Solid Professional Colors */
    --accent: #ff0062;
    --bg-light: #ffffff;
    --bg-dark: #060716;
    --card-light: #f8fafc;
    --card-dark: #111111;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Numans", sans-serif;
    scroll-behavior: smooth;
}

/* Base Body Styles */
body {
    background-color: var(--bg-light);
    color: #110b27;
    transition: background-color var(--transition-speed);
    line-height: 1.6;
    overflow-x: hidden;
}

body.dark-mode {
    background-color: var(--bg-dark);
    color: #f8fafc;
}

/* --- Layout Containers --- */
header, .container, section, footer {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    width: 100%;
}

/* --- Header & Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.actions{display: flex; 
  flex-direction: row; 
  align-items: center;
}

body.dark-mode header {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo h2 {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(45deg, var(--text-main), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navlinks {
    display: flex;
    align-items: center;
    gap: 35px;
}

.navlinks a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navlinks a:hover {
    color: var(--accent);
}

.actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.theme, .menu {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--section-alt);
    cursor: pointer;
    transition: 0.3s;
    font-size: 1.1rem;
}

/* --- Hero Section --- */
.hero {
    /* Use dynamic viewport height to better handle mobile browsers */
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* On mobile, center looks crowded, so we use flex-start with top padding */
    justify-content: center; 
    text-align: center;
    /* Space for the navbar plus extra breathing room */
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 60px;
    box-sizing: border-box;
}

.rounded {
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    border: 1px solid rgba(255, 0, 140, 0.3);
    background: rgba(255, 0, 140, 0.05);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 0, 140, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 0, 140, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 0, 140, 0); }
}

.hero h1 {
    font-size: var(--text-h1);
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: var(--text-p);
    max-width: 800px;
    opacity: 0.8;
}

.hero-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Reduce the overall vertical breathing room */
section {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* --- Content Sections --- */
section.one {
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 80px;
    text-align: center;
}

section img {
    width: 100%;
    max-width: 1000px;
    border-radius: 24px;
    margin-top: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* --- Buttons & CTAs --- */
.cta {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.cta a {
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.get-started {
    background: linear-gradient(90deg, #1a1a1a, #444);
    color: white;
}

body.dark-mode .get-started {
    background: linear-gradient(90deg, #f8fafc, #cbd5e1);
    color: #0f172a;
}

.learn-more {
    border: 1px solid var(--accent);
    color: var(--accent);
}

.learn-more:hover {
    background: var(--accent);
    color: white;
}

/* --- Animations --- */
.text-radial-animate {
    background: radial-gradient(circle at 50% 50%, var(--accent) 0%, #3c00c9 50%, #ff0062 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: radial-shimmer 5s linear infinite;
}

@keyframes radial-shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .cta {
        flex-direction: column;
        width: 100%;
    }
    
    .cta a {
        width: 100%;
        text-align: center;
    }
    
    .menu {
        display: flex;
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    .hideOnMobile {
        display: none;
    }
    .hero {
        /* On mobile, align to top to prevent overlap with navbar */
        justify-content: flex-start;
        /* More aggressive padding at the top for smaller screens */
        padding-top: calc(var(--nav-height) + 60px);
        min-height: auto; /* Let content determine height if screen is tiny */
    }
    .hero h1 {
        font-size: 2.8rem; /* Scale down h1 so it doesn't push content down */
        line-height: 1.1;
    }
    .hero p {
        font-size: 1rem;
        padding: 0 15px; /* Prevent text from touching screen edges */
    }
}

.new-feature-section {
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    justify-content: center;
    background: transparent; /* No chameleon effect here */
}

/* --- Feature Containers (Side-by-Side) --- */
.feature-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1440px;
    margin: 0 auto;
    /* Removed the 100px top/bottom padding that was causing the massive gap */
    padding-top: 20px; 
    padding-bottom: 20px;
}

.feature-text { flex: 1; }
.feature-visual { flex: 1.2; }

.feature-img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
}

.feature-badge {
    color: var(--accent);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.feature-text h2 {
    font-size: var(--text-h2);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.feature-text p {
    font-size: var(--text-p);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #5900ff;
    color: white !important;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.feature-btn:hover {
    transform: scale(1.05);
}

.feature-visual {
    flex: 1.2; /* Image container slightly wider than text */
    display: flex;
    justify-content: center;
}

/* --- Mobile Responsiveness --- */
/* --- Global Mobile Stack Fix --- */
@media (max-width: 992px) {
    .feature-container {
        flex-direction: column !important; /* Force vertical stack */
        text-align: left;
        gap: 30px; /* Reduce gap for mobile */
    }

    .feature-text {
        order: 1 !important; /* Force text to the TOP */
        width: 100%;
    }

    .feature-visual {
        order: 2 !important; /* Force image to the BOTTOM */
        width: 100%;
    }
    
    .feature-img {
        margin-top: 10px;
    }
}

.maximize-earnings {
    padding-top: 80px;
    padding-bottom: 100px;
    display: flex;
    justify-content: center;
}

.cta-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 0, 140, 0);
    border-radius: 40px;
    padding: clamp(2rem, 5vw, 4rem);
    width: 100%;
    max-width: 1200px;
    text-align: center;
    backdrop-filter: blur(10px);
}

body.dark-mode .cta-card {
    background: rgba(27, 27, 27, 0);
    border-color: rgba(0, 0, 0, 0);
}

.dual-cta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.cta-box {
    padding: 30px;
    background: rgba(219, 219, 219, 0.116);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.cta-box:hover {
    transform: translateY(-5px);
}

.cta-box i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.cta-box h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.cta-box p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background: var(--accent);
    color: white !important;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid var(--accent);
    color: var(--accent) !important;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
}

/* Enhancing the glass effect for financial sections */
.payouts .feature-card {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Icon pulse for the payout section */
.payouts .icon-box i {
    filter: drop-shadow(0 0 10px rgba(255, 0, 140, 0.4));
}

body.dark-mode .payouts .feature-card {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Responsive adjustment for 1920px screens */
@media (min-width: 1440px) {
    .payouts .features-grid {
        gap: 50px;
    }
}
/* About Section Specifics */
.about-section {
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    justify-content: center;
}

/* Specific button style for the About section */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    color: var(--accent) !important;
    border: 2px solid var(--accent);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: var(--accent);
    color: #ffffff !important;
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(255, 0, 140, 0.2);
}

/* Ensure text readability in Dark Mode */
body.dark-mode .about-section p {
    color: rgba(248, 250, 252, 0.8);
}

/* Mobile Alignment Override */
@media (max-width: 992px) {
    .about-section .feature-container {
        flex-direction: column-reverse; /* Put text above image on mobile for better flow */
    }
    
    .about-section .feature-text {
        text-align: left;
        margin-bottom: 40px;
    }
}
/* Mission Section */
.mission-section {
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    justify-content: center;
    background: transparent;
}

.mission-section .feature-container {
    /* Reverse order so text is on the left and image on the right */
    flex-direction: row; 
}

.mission-stats h3 {
    margin-bottom: 5px;
}

/* Ensure Dark Mode readability */
body.dark-mode .mission-section p {
    color: rgba(248, 250, 252, 0.8);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .mission-section .feature-container {
        flex-direction: column;
        text-align: left;
    }
    
    .mission-stats {
        justify-content: flex-start;
        gap: 40px;
    }
}

/* Why Choose Us Section */
.why-us {
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-light);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

/* Dark Mode Adjustment */
body.dark-mode .feature-card {
    background: var(--card-dark);
    border: 1px solid rgba(255,255,255,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.6;
}

/* --- CTA & Buttons --- */
.cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.get-started, .feature-btn, .btn-primary {
    padding: 18px 36px;
    background: var(--accent);
    color: white !important;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 700;
    transition: transform 0.3s;
}.learn-more, .btn-secondary, .about-btn {
    padding: 18px 36px;
    border: 2px solid var(--accent);
    color: var(--accent) !important;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 700;
    transition: all 0.3s;
}

.learn-more:hover, .about-btn:hover {
    background: var(--accent);
    color: white !important;
}

/* --- Maximize Earnings Card --- */
.maximize-earnings {
    padding: 100px var(--container-padding);
}

.cta-card {
    background: #f1f5f9;
    border-radius: 40px;
    padding: clamp(2rem, 5vw, 5rem);
    text-align: center;
}

body.dark-mode .cta-card {
    background: #0f172a;
}

.dual-cta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.cta-box {
    background: rgba(255,255,255,0.5);
    padding: 40px;
    border-radius: 24px;
}

body.dark-mode .cta-box {
    background: rgba(255,255,255,0.03);
}

/* --- Radial Text Animation (Static Fallback) --- */
.text-radial-animate {
    background: linear-gradient(90deg, var(--accent), #3c00c9, var(--accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}



/* Mobile Alignment */
@media (max-width: 992px) {
    .section-header, .feature-card {
        text-align: left;
    }
}

/* Mobile Stack */
@media (max-width: 768px) {
    .dual-cta {
        grid-template-columns: 1fr;
    }
}

/* About, Mission, Update, and Why-Us: 
   Changing 100px to 40px to stop the "spacing stack" */
.about-section, 
.mission-section, 
.new-feature-section, 
.why-us {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Maximize Earnings: Tighter top margin */
.maximize-earnings {
    padding-top: 40px;
    padding-bottom: 60px;
}

/* Why-Us Header: Reduced bottom margin */
.section-header {
    text-align: center;
    margin-bottom: 30px; /* Reduced from 60px */
}

/* --- Updated Footer Styles --- */
.footer {
    display: grid;
    /* Uses your global fluid padding variables */
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    padding-top: 80px;
    padding-bottom: 60px;
    
    /* 3 Columns for 1920px, auto-stacks on mobile */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    transition: background var(--transition-speed), border var(--transition-speed);
}

body.dark-mode .footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #000000; /* Deep black for OLED iPhone screens */
}

.footer h2 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

/* Unified Link Styling for all columns */
.footer a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    opacity: 0.7;
    margin-bottom: 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer a:hover {
    opacity: 1;
    color: var(--accent);
    transform: translateX(5px);
}

.footer i {
    width: 20px;
    color: var(--accent);
    text-align: center;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .footer {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 60px;
    }
    
    .footer a:hover {
        transform: none; /* Disables slide effect on touch devices */
    }
}


/* Loging Page*/

/* --- Login Page Split Layout --- */
.auth-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* Left Visual Side */
.auth-visual {
    flex: 1.2;
    background: url('assets/images/auth-bg.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 60px;
}

/* Hide image on mobile */
@media (max-width: 992px) {
    .auth-visual { display: none; }
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 7, 22, 0.9), transparent);
}

.visual-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 500px;
}

.visual-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

/* Right Form Side */
.auth-form-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: var(--bg-light);
}

body.dark-mode .auth-form-container {
    background: var(--bg-dark);
}

.form-box {
    width: 100%;
    max-width: 420px;
}

.form-header h1 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.form-header p {
    opacity: 0.7;
    margin-bottom: 40px;
}

/* Form Styling */
.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    background: #f8fafc;
    font-size: 1rem;
    transition: all 0.3s ease;
}

body.dark-mode .input-group input {
    background: #1a1a1a;
    border-color: rgba(255,255,255,0.1);
    color: white;
}

.input-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 0, 140, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 0.85rem;
}

.forgot-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
}

.auth-btn-primary {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.auth-btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.form-footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
}

.form-footer a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

.auth-visual {
    flex: 1.2;
    /* This reaches from assets/css -> assets -> assets/images */
    background: url('../images/New feature.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 60px;
}

/* Ensure the wrapper takes full height and ignores standard padding */
.auth-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
    position: fixed; /* Optional: prevents scrolling if you want a true app feel */
    top: 0;
    left: 0;
    z-index: 1;
}

/* Push the form side back to correct background in Dark Mode */
body.dark-mode .auth-form-container {
    background-color: var(--bg-dark);
}

/* --- Desktop Nav CTA (New) --- */
.nav-cta {
    background: var(--accent);
    color: white !important;
    padding: 10px 22px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(255, 0, 140, 0.15);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 0, 140, 0.3);
    opacity: 1;
}

/* --- Mobile Drawer (Top-Down Glass Version) --- */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0; /* Align to left for full width */
    width: 100%; /* Full width on mobile */
    height: 100%; /* Let content determine height, or use a specific value like 70vh */
    max-height: 100vh;
    
    /* Transparent Glass Background */
    background: rgba(255, 255, 255, 0.75); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px); /* Support for Safari */
    
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    padding: 30px 25px 50px 25px; /* Adjusted padding for top-down layout */
    
    /* Animation: Start off-screen at the top */
    transform: translateY(-100%); 
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Dark Mode Glass Effect */
body.dark-mode .mobile-drawer {
    background: rgba(11, 12, 31, 0.85); 
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Active State: Slide Down */
.mobile-drawer.active {
    transform: translateY(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px; /* Reduced margin for top-down feel */
}

/* Ensure the links look good in the new layout */
.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center; /* Center links for a more modern top-down look */
    align-items: center;
}

.drawer-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 700;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Optional: Remove the slide-right effect since it's now top-down */
.drawer-links a:hover {
    color: var(--accent);
    transform: scale(1.05);
}