/* HQMX VPN Design System */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    /* === Static Theme Colors (Fallback) === */
    --bg-color: #050510;
    --text-main: #ffffff;
    --text-muted: #b8c5d6;

    --primary-accent: #00ff88;
    /* Neon Plant Green */
    --primary-yellow: #ccff00;
    /* Electric Yellow */
    --primary-blue: #2196F3;
    /* Brand Blue */
    --secondary-accent: #7b2cbf;
    /* Deep Purple */
    --gradient-brand: linear-gradient(135deg, var(--primary-blue), var(--primary-accent), var(--primary-yellow));

    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-glow: rgba(0, 255, 136, 0.1);

    --transition-speed: 0.3s;

    /* === Dynamic Theme Colors (Default: Dark) === */
    --bg-dynamic: #050510;
    --text-dynamic: #ffffff;
    --text-muted-dynamic: #b8c5d6;

    --glass-bg-dynamic: rgba(255, 255, 255, 0.05);
    --glass-border-dynamic: rgba(255, 255, 255, 0.1);

    --shadow-intensity: 0.2;
    --text-shadow-glow: rgba(0, 255, 136, 0.4);

    --gradient-start: #ffffff;
}

/* === Light Mode Overrides === */
[data-theme="light"] {
    --bg-dynamic: #F2F4F8;
    /* Soft Blue-Grey */
    --text-dynamic: #1A1A2E;
    /* Deep Navy */
    --text-muted-dynamic: #4A5B75;
    /* Darker Slate Grey for readability */
    --text-muted: #4A5B75;
    /* Sync static muted for light mode compatibility */

    /* Override accents for Light Mode visibility */
    --primary-accent: #00A355;
    /* Darker Green for white backgrounds */
    --secondary-accent: #6220A3;
    /* Darker Purple */

    /* Frosted White Glass */
    --glass-bg-dynamic: rgba(255, 255, 255, 0.75);
    /* More opaque for contrast */
    --glass-border-dynamic: rgba(0, 0, 0, 0.1);

    --shadow-intensity: 0.1;
    --text-shadow-glow: rgba(0, 163, 85, 0.1);

    /* Gradient text start */
    --gradient-start: #1A1A2E;
}

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

body {
    /* 동적 테마 사용 (solar-adaptive-theme.js가 없으면 폴백 사용) */
    background-color: var(--bg-dynamic, var(--bg-color));
    color: var(--text-dynamic, var(--text-main));
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
    letter-spacing: 0.08em;
    /* 테마 전환 애니메이션 */
    transition: background-color 1s ease, color 0.5s ease;
}

/* Ambient Background Glow */
.ambient-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.08) 0%, rgba(5, 5, 16, 0) 70%);
    top: -100px;
    left: -100px;
    z-index: -1;
    pointer-events: none;
    animation: float 10s ease-in-out infinite;
}

.ambient-glow-2 {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.06) 0%, rgba(5, 5, 16, 0) 70%);
    bottom: -100px;
    right: -100px;
    z-index: -1;
    pointer-events: none;
    animation: float-delayed 15s ease-in-out infinite;
}

/* IOS-style Glassmorphism - 동적 테마 적용 */
.glass {
    background: var(--glass-bg-dynamic, rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border-dynamic, rgba(255, 255, 255, 0.12));
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, var(--shadow-intensity, 0.2));
    transition: background 0.5s ease, border-color 0.5s ease;
}

/* Neon 'i' SVG Logo - styles moved below .logo-img section */

.glass-card {
    border-radius: 24px;
    padding: 2rem;
    transition: var(--transition-speed);
}

/* .glass-card:hover removed to eliminate UI shift on mouseover */

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Navigation */
header {
    position: fixed;
    /* Fixed as requested */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    z-index: 1000;
    /* Dynamically align header content with .container (1200px max-width + 2rem padding) */
    padding: 1rem max(2rem, calc((100% - 1200px) / 2 + 2rem));
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* 동적 테마에 맞게 변환되는 헤더 배경 */
    background: color-mix(in srgb, var(--bg-dynamic, #050510) 70%, transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border-dynamic, rgba(255, 255, 255, 0.05));
    transition: background 0.5s ease, border-color 0.5s ease;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted-dynamic, rgba(255, 255, 255, 0.7));
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-speed), text-shadow var(--transition-speed);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-dynamic, #fff);
}

.nav-links a.active {
    text-shadow: 0 0 8px var(--text-shadow-glow), 0 0 20px rgba(0, 255, 136, 1);
}

/* Removed Underline as requested */
/*
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    /* White underline for clean look */
/*
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
*/

/* Navigation Utility Buttons */
.nav-utils {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-login {
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    border: 1px solid var(--primary-accent);
    background: transparent;
    color: var(--primary-accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: var(--primary-accent);
    color: var(--bg-color);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    /* letter-spacing removed to reduce tightness */
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

/* HQMX SVG Logo in header */
.logo-img {
    height: 35px;
    width: auto;
    vertical-align: middle;
    /* Inherit text color for currentColor in SVG */
    color: var(--text-dynamic, #fff);
}



/* Neon 'i' Lighthouse Animation */
.neon-i-img {
    height: 0.73em;
    vertical-align: baseline;
    margin-left: -3px;
    margin-right: -1px;
    animation: lighthouse-pulse 2s ease-in-out infinite;
}

@keyframes lighthouse-pulse {

    0%,
    100% {
        filter: drop-shadow(0 0 3px rgba(0, 255, 136, 0.6));
        opacity: 0.9;
    }

    50% {
        filter: drop-shadow(0 0 15px rgba(0, 255, 136, 1)) drop-shadow(0 0 30px rgba(0, 255, 136, 0.8));
        opacity: 1;
    }
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 4rem 0;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
    position: relative;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    font-weight: 800;
    /* Track tightness removed */
}

/* Gradient Text for Headlines */
.text-gradient {
    /* Neon Green -> Yellow Gradient */
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

p.lead {
    font-size: 1.35rem;
    /* Larger, readable size */
    color: var(--text-dynamic, rgba(255, 255, 255, 0.9));
    opacity: 0.9;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* Glass Buttons (IOS Style) */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    white-space: nowrap;
    /* Prevent text wrapping */
}

/* Holographic Glass Button */
.btn-primary {
    background: var(--gradient-brand);
    /* Gradient Background */
    color: #050510;
    /* Dark Text for Contrast on bright gradient */
    border: 1px solid var(--glass-border-dynamic, rgba(255, 255, 255, 0.3));
    box-shadow: 0 4px 15px rgba(0, 0, 0, var(--shadow-intensity, 0.2));
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Subtle Spectrum Gradient Background */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(115deg,
            transparent 0%,
            rgba(0, 255, 136, 0.4) 45%,
            /* Stronger green */
            rgba(255, 255, 255, 0.8) 50%,
            /* Brightest shine */
            rgba(123, 44, 191, 0.4) 55%,
            /* Stronger purple */
            transparent 100%);
    z-index: -1;
    /* Controlled by JS scroll event */
    transform: translateX(var(--hologram-pos, -150%));
    transition: transform 0.1s linear;
    /* Smooth follow */
    will-change: transform;
}

.btn-primary:hover::before {
    filter: brightness(1.2);
}

[data-theme="light"] .btn-primary {
    color: #050510;
    /* Always dark text on this bright gradient */
    background: var(--gradient-brand);
    border-color: transparent;
    font-weight: 700;
}

[data-theme="light"] .btn-primary:hover {
    background: rgba(0, 163, 85, 0.1);
    /* Subtle green tint */
    color: #000;
    /* Strict black on hover for max contrast */
    border-color: var(--primary-accent);
}

.btn-primary:hover {
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow:
        0 8px 32px rgba(0, 255, 136, 0.4),
        /* Green glow */
        inset 0 0 20px rgba(255, 255, 255, 0.3);
    /* Inner light */
    transform: translateY(-2px) scale(1.05);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

/* Features Grid */
.features {
    padding: 5rem 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-accent);
}

.glass-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

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

/* Download Section */
.download-section {
    text-align: center;
    padding: 6rem 0;
}

/* Animations */
@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 20px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes float-delayed {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-30px, 40px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
}

/* --- Added for VPN Page --- */

/* Cyber Hero */
.cyber-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 50%, rgba(5, 5, 16, 0.8) 0%, rgba(5, 5, 16, 1) 100%),
        repeating-linear-gradient(transparent 0, transparent 49px, rgba(0, 255, 136, 0.05) 50px),
        repeating-linear-gradient(90deg, transparent 0, transparent 49px, rgba(0, 255, 136, 0.05) 50px);
    background-size: 100% 100%, 100px 100px, 100px 100px;
    animation: cyber-grid-scroll 20s linear infinite;
}

@keyframes cyber-grid-scroll {
    0% {
        background-position: center, 0 0, 0 0;
    }

    100% {
        background-position: center, 50px 50px, 50px 50px;
    }
}

/* Terminal UI */
.terminal-window {
    background: rgba(10, 10, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: 'Courier New', monospace;
    padding: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    margin-top: 2rem;
}

.terminal-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.terminal-title {
    margin-left: 15px;
    font-size: 0.8rem;
    color: #888;
}

.terminal-body {
    padding: 1.5rem;
    color: var(--primary-accent);
    font-size: 0.8rem;
    line-height: 1.5;
}

.command {
    margin-bottom: 0.5rem;
}

.output {
    color: #ccc;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 15px;
    background: var(--primary-accent);
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Process Step Icons (Shared with Plant AI) */
.process-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: var(--primary-accent);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

/* Shared Hero Slider */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    transition: opacity 2s ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(5, 5, 16, 0.3), rgba(5, 5, 16, 1));
    z-index: 1;
}

[data-theme="light"] .hero-overlay {
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 1));
}

.card-overlay-dim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 25, 0.6);
    z-index: 1;
}

[data-theme="light"] .card-overlay-dim {
    background: rgba(255, 255, 255, 0.1);
    /* Much lighter overlay for Light Mode */
}

/* === Internationalization (i18n) Styles === */

.nav-utils {
    position: relative;
}

.lang-dropdown {
    position: absolute;
    top: 120%;
    /* Slightly more buffer */
    right: 0;
    min-width: 200px;
    padding: 0.75rem;
    border-radius: 16px;

    /* Stronger Glassmorphism */
    background: rgba(20, 20, 30, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);

    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition:
        opacity 0.2s ease,
        transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
        visibility 0.2s ease;
    transform-origin: top right;
}

.lang-dropdown.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    color: var(--text-muted, #888);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.2s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding-left: 1.25rem;
    /* Slide effect */
}

.lang-option.active {
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-accent, #00ff88);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

/* Checkmark for active state */
.lang-option.active::after {
    content: '';
    position: absolute;
    right: 1rem;
    width: 6px;
    height: 10px;
    border: solid var(--primary-accent);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.lang-flag {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.lang-native {
    font-weight: 500;
}

/* Scrollbar for dropdown if it gets too long */
.lang-dropdown {
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.lang-dropdown::-webkit-scrollbar {
    width: 4px;
}

.lang-dropdown::-webkit-scrollbar-track {
    background: transparent;
}

.lang-dropdown::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* === Light Mode Overrides for Toggles === */
[data-theme="light"] .btn-icon {
    border-color: rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.7);
}

[data-theme="light"] .btn-icon:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
    border-color: rgba(0, 0, 0, 0.3);
}

/* === Mobile Navigation === */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text-dynamic);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
    line-height: 0;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8);
        /* Dark semi-transparent background */
        backdrop-filter: blur(2px);
        /* Requested 2px blur */
        -webkit-backdrop-filter: blur(2px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease-in-out;
        z-index: 999;
        gap: 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    /* Light Mode Mobile Menu Background */
    [data-theme="light"] .nav-links {
        background: rgba(255, 255, 255, 0.9);
        color: #000;
    }

    .nav-links.mobile-active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }
}
/* === Login Modal Styles === */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.modal-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.modal-content {
    width: 100%;
    max-width: 420px;
    padding: 2.5rem;
    position: relative;
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--glass-bg-dynamic); /* Use dynamic theme variable */
}

.modal-overlay.hidden .modal-content {
    transform: translateY(20px);
}

.close-modal-btn {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal-btn:hover {
    color: var(--primary-accent);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-dynamic); /* Use dynamic theme variable */
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.auth-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-google-login {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.8rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    font-size: 1rem;
}

.btn-google-login:hover {
    background: #f5f5f5;
}

.btn-google-login ion-icon {
    font-size: 1.2rem;
}

[data-theme="light"] .btn-google-login {
    background: #fff;
    border: 1px solid #ccc;
    color: #444;
}

[data-theme="light"] .btn-google-login:hover {
    background: #f9f9f9;
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
[data-theme="light"] .auth-divider::before,
[data-theme="light"] .auth-divider::after {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.auth-divider span {
    padding: 0 10px;
}

.input-group {
    position: relative;
    margin-bottom: 1rem;
}

.input-group ion-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.2rem;
}

.input-group input {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-dynamic);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
    font-family: 'Outfit', sans-serif;
}

[data-theme="light"] .input-group input {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--text-dynamic);
}

.input-group input:focus {
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.1);
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .input-group input:focus {
    background: #fff;
}

.full-width {
    width: 100%;
    margin-top: 0.5rem;
    justify-content: center;
    border: none;
}

.modal-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.modal-footer a {
    color: var(--primary-accent);
    text-decoration: none;
    font-weight: 600;
}

.modal-footer a:hover {
    text-decoration: underline;
}
