/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 [hidden] {
     display: none !important;
 }

:root {
    --primary-bg: #0d0d0d;
    --secondary-bg: #1a1a1a;
    --accent-bg: #262626;
    --border-color: #333333;
    --text-primary: #b8b8b8;
    --text-secondary: #808080;
    --accent-color: #e0e0e0;
    --glow-color: rgba(224, 224, 224, 0.08);
    --card-glow: rgba(224, 224, 224, 0.04);
    --starfield-pattern:
        radial-gradient(1px 1px at 20px 30px, rgba(255, 255, 255, 0.95) 0 1px, transparent 1px),
        radial-gradient(1px 1px at 80px 90px, rgba(255, 255, 255, 0.85) 0 1px, transparent 1px),
        radial-gradient(1px 1px at 140px 40px, rgba(255, 255, 255, 0.75) 0 1px, transparent 1px),
        radial-gradient(1px 1px at 10px 160px, rgba(255, 255, 255, 0.7) 0 1px, transparent 1px),
        radial-gradient(1px 1px at 110px 120px, rgba(255, 255, 255, 0.6) 0 1px, transparent 1px),
        radial-gradient(1.2px 1.2px at 30px 110px, rgba(255, 255, 255, 0.55) 0 1.2px, transparent 1.2px),
        radial-gradient(1.5px 1.5px at 170px 110px, rgba(255, 255, 255, 0.45) 0 1.5px, transparent 1.5px),
        radial-gradient(2px 2px at 60px 20px, rgba(255, 255, 255, 0.35) 0 2px, transparent 2px),
        radial-gradient(2px 2px at 190px 70px, rgba(255, 255, 255, 0.3) 0 2px, transparent 2px);
    --starfield-size:
        180px 180px,
        220px 220px,
        260px 260px,
        200px 200px,
        160px 160px,
        210px 210px,
        280px 280px,
        190px 190px,
        300px 300px;
    --starfield-position:
        0 0,
        60px 80px,
        120px 40px,
        90px 140px,
        40px 20px,
        110px 70px,
        20px 120px,
        150px 160px,
        30px 180px;
}

body {
    background: var(--primary-bg);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Light Rays Background Animation */
.light-rays-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.light-rays-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(224, 224, 224, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(184, 184, 184, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(128, 128, 128, 0.05) 0%, transparent 60%),
        linear-gradient(45deg, rgba(224, 224, 224, 0.03) 0%, transparent 70%),
        linear-gradient(135deg, rgba(184, 184, 184, 0.03) 0%, transparent 70%),
        linear-gradient(225deg, rgba(128, 128, 128, 0.03) 0%, transparent 70%);
    animation: lightRaysMove 20s ease-in-out infinite;
}

@keyframes lightRaysMove {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: rotate(90deg) scale(1.1);
        opacity: 0.4;
    }
    50% {
        transform: rotate(180deg) scale(0.9);
        opacity: 0.7;
    }
    75% {
        transform: rotate(270deg) scale(1.05);
        opacity: 0.5;
    }
}

/* Noise Overlay Effect */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.06;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(224, 224, 224, 0.08) 2px,
            rgba(224, 224, 224, 0.08) 4px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 3px,
            rgba(184, 184, 184, 0.04) 3px,
            rgba(184, 184, 184, 0.04) 6px
        );
    animation: noiseShift 10s steps(10) infinite;
}

@keyframes noiseShift {
    0% {
        transform: translate(0, 0);
    }
    10% {
        transform: translate(-5px, -5px);
    }
    20% {
        transform: translate(-10px, 5px);
    }
    30% {
        transform: translate(5px, -10px);
    }
    40% {
        transform: translate(-5px, 15px);
    }
    50% {
        transform: translate(-10px, -10px);
    }
    60% {
        transform: translate(15px, 5px);
    }
    70% {
        transform: translate(0, -5px);
    }
    80% {
        transform: translate(-15px, 0);
    }
    90% {
        transform: translate(10px, 10px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* Additional Background Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(224, 224, 224, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(184, 184, 184, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 50% 10%, rgba(128, 128, 128, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, rgba(224, 224, 224, 0.02) 0%, transparent 100%),
        linear-gradient(0deg, rgba(184, 184, 184, 0.02) 0%, transparent 100%);
    pointer-events: none;
    z-index: -2;
    animation: backgroundPulse 15s ease-in-out infinite;
    filter: blur(8px);
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-color: #0b0b0b;
    background-image: var(--starfield-pattern);
    background-size: var(--starfield-size);
    background-position: var(--starfield-position);
    background-repeat: repeat;
    opacity: 0.8;
    filter: blur(1px);
    pointer-events: none;
    z-index: -3;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    z-index: 1;
}

/* Animated Header */
.animated-header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.logo-container {
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: -1px;
    animation: logoGlitch 3s infinite;
}

.logo::before,
.logo::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.logo::before {
    animation: logoGlitch-1 0.5s infinite;
    color: #ff0000;
    z-index: -1;
}

.logo::after {
    animation: logoGlitch-2 0.5s infinite;
    color: #00ff00;
    z-index: -2;
}

@keyframes logoGlitch {
    0%, 100% { text-shadow: 0 0 3px rgba(255,255,255,0.3); }
    50% { text-shadow: 0 0 10px rgba(255,255,255,0.5); }
}

@keyframes logoGlitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(20% 0 30% 0); transform: translate(-1px, 1px); }
    40% { clip-path: inset(50% 0 20% 0); transform: translate(1px, -1px); }
    60% { clip-path: inset(10% 0 60% 0); transform: translate(-1px, 0.5px); }
    80% { clip-path: inset(80% 0 5% 0); transform: translate(0.5px, -0.5px); }
}

@keyframes logoGlitch-2 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(60% 0 10% 0); transform: translate(1px, -0.5px); }
    40% { clip-path: inset(20% 0 50% 0); transform: translate(-1px, 1px); }
    60% { clip-path: inset(30% 0 40% 0); transform: translate(0.5px, -1px); }
    80% { clip-path: inset(5% 0 80% 0); transform: translate(-0.5px, 0.5px); }
}

.logo span {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 30px;
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-container:hover .logo-glow {
    opacity: 1;
}

.logo-container:hover .logo span {
    color: var(--accent-color);
}

nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-bg {
    position: fixed;
    inset: 0;
    background: none;
    opacity: 0;
    pointer-events: none;
    z-index: -3;
}

@keyframes heroBgMove {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.glitch-text {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 20px;
    position: relative;
    animation: glitch 3s infinite;
    color: var(--text-primary);
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--text-primary);
}

.glitch-text::before {
    animation: glitch-1 0.5s infinite;
    color: rgba(224, 224, 224, 0.8);
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 0.5s infinite;
    color: rgba(184, 184, 184, 0.8);
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { text-shadow: 0 0 3px rgba(224, 224, 224, 0.3); }
    50% { text-shadow: 0 0 10px rgba(224, 224, 224, 0.5); }
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(20% 0 30% 0); transform: translate(-1px, 1px); }
    40% { clip-path: inset(50% 0 20% 0); transform: translate(1px, -1px); }
    60% { clip-path: inset(10% 0 60% 0); transform: translate(-1px, 0.5px); }
    80% { clip-path: inset(80% 0 5% 0); transform: translate(0.5px, -0.5px); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(60% 0 10% 0); transform: translate(1px, -0.5px); }
    40% { clip-path: inset(20% 0 50% 0); transform: translate(-1px, 1px); }
    60% { clip-path: inset(30% 0 40% 0); transform: translate(0.5px, -1px); }
    80% { clip-path: inset(5% 0 80% 0); transform: translate(-0.5px, 0.5px); }
}

.fade-in-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.primary-btn {
    background: var(--accent-color);
    color: var(--primary-bg);
    border: 2px solid var(--accent-color);
}

.secondary-btn {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--border-color);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.btn:hover .btn-glow {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

.secondary-btn:hover {
    border-color: var(--accent-color);
    background: rgba(255,255,255,0.05);
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 10s infinite linear;
}

@keyframes float {
    from {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    to {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 0 auto;
    animation: slideGradient 3s ease-in-out infinite;
}

@keyframes slideGradient {
    0%, 100% { transform: translateX(-20px); }
    50% { transform: translateX(20px); }
}

/* Features Section */
.features {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, var(--card-glow), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(255,255,255,0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.feature-card:hover .card-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover .card-glow {
    opacity: 1;
}

/* Profile Panel */
.profile-panel {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(14, 14, 14, 0.92), rgba(8, 8, 8, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 26px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.profile-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.08), transparent 45%),
        radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.05), transparent 45%);
    opacity: 0.6;
    pointer-events: none;
}

.profile-row {
    display: grid;
    grid-template-columns: minmax(160px, 230px) minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 12px 16px 12px 22px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, rgba(20, 20, 20, 0.9), rgba(12, 16, 20, 0.92));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.profile-row::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 10px;
    bottom: 10px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(245, 245, 245, 0.9), rgba(170, 170, 170, 0.75));
    opacity: 0.85;
}

.profile-row:nth-child(3n + 2)::before {
    background: linear-gradient(180deg, rgba(235, 235, 235, 0.85), rgba(150, 150, 150, 0.7));
}

.profile-row:nth-child(3n)::before {
    background: linear-gradient(180deg, rgba(220, 220, 220, 0.85), rgba(130, 130, 130, 0.7));
}

.profile-row:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(120deg, rgba(24, 24, 24, 0.95), rgba(14, 20, 28, 0.94));
    transform: translateY(-1px);
}

.profile-row > * {
    position: relative;
    z-index: 1;
}

.profile-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    min-height: 36px;
    border-radius: 9px;
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.95), rgba(170, 170, 170, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #0d0d0d;
    font-weight: 600;
    letter-spacing: 0.3px;
    font-size: 0.8rem;
    justify-self: start;
    width: fit-content;
    max-width: 100%;
}

.profile-row:nth-child(3n + 2) .profile-label {
    background: linear-gradient(135deg, rgba(235, 235, 235, 0.95), rgba(155, 155, 155, 0.88));
    border-color: rgba(255, 255, 255, 0.3);
}

.profile-row:nth-child(3n) .profile-label {
    background: linear-gradient(135deg, rgba(225, 225, 225, 0.95), rgba(145, 145, 145, 0.88));
    border-color: rgba(255, 255, 255, 0.28);
}

.profile-label i {
    font-size: 1rem;
}

.profile-label span {
    white-space: nowrap;
}

.profile-value {
    display: flex;
    align-items: center;
    min-height: 36px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.profile-actions {
    display: flex;
    justify-self: end;
    gap: 10px;
    flex-wrap: wrap;
}

.profile-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.profile-input::placeholder {
    color: var(--text-secondary);
}

.profile-input:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.1);
}

.small-btn {
    padding: 10px 18px;
    font-size: 0.75rem;
    letter-spacing: 0.6px;
    border-radius: 8px;
}

.profile-panel .small-btn {
    padding: 8px 14px;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    border-radius: 7px;
}

/* Profile Dashboard (dark + unusual) */
.profile-page {
    --profile-accent: #e0e0e0;
    --profile-accent-strong: #b8b8b8;
    --profile-surface: rgba(12, 12, 12, 0.92);
    --profile-surface-strong: rgba(6, 6, 6, 0.95);
    --profile-border: rgba(255, 255, 255, 0.08);
}

.profile-page::after {
    content: "";
    position: fixed;
    inset: 0;
    background: none;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

.profile-hero {
    padding: 90px 24px 70px;
}

.profile-hero-content {
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.profile-hero .glitch-text {
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.35);
    font-size: clamp(1.4rem, 3vw, 2.6rem);
    margin-bottom: 4px;
}

.profile-hero .fade-in-text {
    max-width: 760px;
    text-align: center;
    margin-bottom: 10px;
}

.profile-hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 8, 8, 0.65);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
    flex-wrap: wrap;
    justify-content: center;
}

.profile-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    min-width: 120px;
}

.profile-meta-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-secondary);
}

.profile-meta-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f3f3f3;
}

.profile-meta-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.14);
}

.profile-hero-panels {
    width: min(1120px, 100%);
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.profile-auth-card {
    width: min(440px, 100%);
    position: relative;
    overflow: hidden;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid var(--profile-border);
    background: linear-gradient(160deg, rgba(18, 18, 18, 0.92), rgba(8, 8, 8, 0.94));
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.profile-auth-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.06), transparent 55%),
        radial-gradient(circle at 80% 75%, rgba(255, 255, 255, 0.04), transparent 45%);
    opacity: 0.8;
    pointer-events: none;
}

.profile-auth-card .auth-form {
    max-width: none;
    position: relative;
    z-index: 1;
}

.profile-auth-card .btn {
    width: 100%;
}

.profile-dashboard {
    display: grid;
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    gap: 26px;
    align-items: start;
    width: 100%;
    max-width: 1120px;
}

.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-self: stretch;
}

.profile-nav {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(8, 8, 8, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.profile-page .profile-nav {
    display: none;
}

.profile-nav-item {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 12, 12, 0.8);
    color: var(--text-secondary);
    font-size: 0.78rem;
    letter-spacing: 0.35px;
    cursor: pointer;
    transition: all 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
}

.profile-nav-item i {
    font-size: 1rem;
}

.profile-nav-item.active {
    color: #0d0d0d;
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.95), rgba(180, 180, 180, 0.85));
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.18);
}

.profile-card {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border-radius: 18px;
    background: linear-gradient(140deg, rgba(18, 18, 18, 0.96), rgba(8, 8, 8, 0.94));
    border: 1px solid var(--profile-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.profile-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 4px),
        radial-gradient(circle at top, rgba(255, 255, 255, 0.14), transparent 55%);
    opacity: 0.25;
    pointer-events: none;
}

.profile-card-header {
    display: flex;
    gap: 14px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.profile-avatar {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.95), rgba(170, 170, 170, 0.85));
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 12px 20px rgba(255, 255, 255, 0.18);
    font-weight: 700;
    color: #0d0d0d;
    letter-spacing: 1px;
}

.profile-card-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.profile-card-name {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-weight: 600;
}

.profile-role-chip {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #f1f1f1;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.profile-card-id {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.profile-card-subscription {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.profile-card-sub-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-card-sub-value {
    margin-top: 6px;
    font-size: 0.95rem;
    font-weight: 600;
}

.profile-card-progress {
    margin-top: 10px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.profile-card-progress span {
    display: block;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, rgba(235, 235, 235, 0.95), rgba(170, 170, 170, 0.9));
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
    transition: width 0.4s ease;
}

.profile-card-progress[data-state="inactive"] span {
    background: linear-gradient(90deg, rgba(148, 148, 148, 0.6), rgba(255, 255, 255, 0.35));
    box-shadow: none;
}

.profile-card-progress[data-state="lifetime"] span {
    background: linear-gradient(90deg, rgba(245, 245, 245, 0.95), rgba(190, 190, 190, 0.9));
}

.profile-card-actions {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.profile-download-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 18px;
    font-size: 0.78rem;
    letter-spacing: 0.6px;
    background: linear-gradient(120deg, rgba(245, 245, 245, 0.95), rgba(180, 180, 180, 0.9));
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--primary-bg);
}

.profile-admin-btn {
    width: 100%;
    justify-content: center;
    padding: 9px 18px;
    font-size: 0.74rem;
    letter-spacing: 0.6px;
    background: linear-gradient(120deg, rgba(24, 24, 28, 0.92), rgba(12, 14, 18, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(220, 220, 220, 0.85);
}

.profile-admin-btn:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: linear-gradient(120deg, rgba(32, 32, 36, 0.6), rgba(12, 14, 18, 0.96));
    box-shadow: 0 10px 26px rgba(100, 100, 100, 0.18);
}

.profile-download-hint {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.profile-details {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(10, 10, 10, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
}

.profile-details::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.1), transparent 55%);
    opacity: 0.5;
    pointer-events: none;
}

.profile-details::after {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 50%;
    width: 1px;
    transform: translateX(-0.5px);
    background: rgba(255, 255, 255, 0.06);
    opacity: 0.7;
    pointer-events: none;
}

.profile-detail-row {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 10px;
    row-gap: 8px;
    align-items: center;
    padding: 12px 16px;
    border-radius: 12px;
    background: linear-gradient(120deg, rgba(14, 14, 14, 0.9), rgba(8, 10, 12, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.profile-detail-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border-radius: 0;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    white-space: nowrap;
}

.profile-detail-label i {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.profile-detail-label span::after {
    content: ":";
    margin-left: 4px;
    color: rgba(255, 255, 255, 0.45);
}

.profile-detail-value {
    color: var(--text-primary);
    font-size: 0.92rem;
    font-weight: 500;
}

.profile-detail-actions {
    display: flex;
    gap: 10px;
    justify-self: end;
}

.profile-detail-input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 12, 12, 0.85);
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
}

.profile-detail-input:focus {
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.18);
}

.profile-detail-hint {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.profile-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(5, 5, 6, 0.7);
    backdrop-filter: blur(6px);
    z-index: 60;
}

.profile-modal[hidden] {
    display: none;
}

.profile-modal-content {
    width: min(440px, 92vw);
    padding: 22px;
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(18, 18, 18, 0.96), rgba(8, 8, 8, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: profileModalIn 0.25s ease-out;
}

.profile-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.profile-modal-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: var(--text-primary);
    letter-spacing: 0.4px;
}

.profile-modal-close {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 12, 0.6);
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.profile-modal-close:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    box-shadow: 0 8px 18px rgba(255, 255, 255, 0.12);
}

.profile-modal-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.profile-modal-input {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(12, 12, 12, 0.8);
    color: rgba(255, 255, 255, 0.8);
}

.profile-modal-input i {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

.profile-modal-input input {
    flex: 1;
    background: transparent;
    border: none;
    color: #f7f3f3;
    font-size: 0.9rem;
    outline: none;
}

.profile-modal-input input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.profile-activate-btn {
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(120deg, rgba(245, 245, 245, 0.95), rgba(180, 180, 180, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #0d0d0d;
    box-shadow: 0 12px 26px rgba(255, 255, 255, 0.18);
}

.profile-activate-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(255, 255, 255, 0.25);
}

@keyframes profileModalIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.profile-page .small-btn {
    padding: 8px 14px;
    font-size: 0.7rem;
    border-radius: 8px;
}

@media (max-width: 980px) {
    .profile-dashboard {
        grid-template-columns: 1fr;
    }

    .profile-nav {
        flex-wrap: wrap;
    }

    .profile-hero-meta {
        gap: 12px;
        padding: 10px 14px;
    }
}

@media (max-width: 640px) {
    .profile-details {
        grid-template-columns: 1fr;
    }

    .profile-details::after {
        display: none;
    }

    .profile-detail-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .profile-detail-actions {
        justify-self: start;
    }

    .profile-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Gallery Section */
.gallery-preview {
    padding: 100px 40px;
    background: var(--secondary-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay-content {
    text-align: center;
    color: var(--accent-color);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.image-overlay:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.gallery-actions {
    text-align: center;
}

/* Stats Section */
.stats {
    padding: 80px 40px;
    background: var(--accent-bg);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    background: var(--secondary-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
footer {
    padding: 40px;
    text-align: center;
    background: var(--primary-bg);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--text-secondary);
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .animated-header {
        padding: 15px 20px;
    }
    
    nav {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features,
    .gallery-preview {
        padding: 60px 20px;
    }
    
    .cards,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .glitch-text {
        font-size: 2rem;
    }
    
    .fade-in-text {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.8rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* Selection Styling */
::selection {
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Loading Animation */
.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    max-width: 360px;
}

.toast {
    background: rgba(20, 20, 20, 0.92);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-color);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(8px);
    animation: toastIn 0.35s ease forwards;
}

.toast-success {
    border-left-color: #22c55e;
}

.toast-error {
    border-left-color: #ef4444;
}

.toast-warning {
    border-left-color: #f59e0b;
}

.toast-info {
    border-left-color: #4a6ee8;
}

.toast-hide {
    animation: toastOut 0.3s ease forwards;
}

@keyframes toastIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toastOut {
    to {
        opacity: 0;
        transform: translateY(8px);
    }
}

/* Auth Forms */
.auth-form {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

 .input-label {
     display: block;
     text-align: left;
     font-size: 0.9rem;
     color: var(--text-secondary);
     margin: 0 0 8px 6px;
 }

 .auth-links {
     margin-top: 14px;
     text-align: center;
 }

.admin-users-section {
    padding-top: 60px;
    padding-bottom: 70px;
}

.admin-users-section .section-header {
    margin-bottom: 32px;
}

.admin-users-section .section-title {
    font-size: clamp(1.6rem, 3.4vw, 2.4rem);
    margin-bottom: 12px;
}

.admin-users-section .title-underline {
    width: 60px;
    height: 2px;
}

.admin-panel-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(18, 18, 18, 0.92), rgba(10, 10, 10, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.4);
}

.admin-panel-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.05), transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.04), transparent 50%);
    opacity: 0.8;
    pointer-events: none;
}

.admin-panel-card > * {
    position: relative;
    z-index: 1;
}

.admin-panel-card .admin-toolbar {
    margin-top: 0;
    margin-bottom: 12px;
    gap: 12px;
    align-items: center;
}

.admin-panel-card .admin-table {
    margin-top: 10px;
    border-radius: 12px;
    background: rgba(12, 12, 12, 0.55);
    border-color: rgba(255, 255, 255, 0.06);
}

.admin-users-section .input-group {
    margin-bottom: 12px;
}

.admin-users-section .input-label {
    font-size: 0.75rem;
    margin: 0 0 6px 4px;
}

.admin-users-section .input-group input {
    padding: 10px 14px;
    font-size: 0.85rem;
    border-radius: 10px;
}

.admin-users-section .admin-search {
    min-width: 200px;
    max-width: 320px;
}

.admin-users-section .admin-toolbar .btn {
    padding: 8px 16px;
    font-size: 0.72rem;
    letter-spacing: 0.6px;
}

.admin-users-section .admin-action-btn {
    margin: 3px 5px 3px 0;
    padding: 5px 10px;
    font-size: 0.66rem;
    letter-spacing: 0.5px;
}

.admin-users-section .admin-table th,
.admin-users-section .admin-table td {
    padding: 9px 10px;
    font-size: 0.78rem;
}

.admin-users-section .admin-table th {
    font-size: 0.72rem;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    background: rgba(15, 15, 15, 0.55);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.admin-table th,
.admin-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    font-size: 0.85rem;
    color: var(--text-primary);
    vertical-align: middle;
}

.admin-table th {
    background: rgba(255, 255, 255, 0.04);
    font-weight: 600;
    color: var(--text-secondary);
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-page .btn {
    padding: 10px 22px;
    font-size: 0.8rem;
    letter-spacing: 0.7px;
}

.admin-page .admin-action-btn {
    margin: 4px 6px 4px 0;
    padding: 6px 12px;
    font-size: 0.75rem;
}

.admin-key-output {
    margin-top: 12px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px dashed var(--border-color);
    font-size: 0.85rem;
    color: var(--text-primary);
    word-break: break-all;
}

.admin-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.admin-search {
    flex: 1;
    min-width: 220px;
    max-width: 360px;
}

.admin-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.65);
    z-index: 50;
}

.admin-modal[hidden] {
    display: none;
}

.admin-modal-content {
    width: min(520px, 95vw);
    background: rgba(15, 15, 15, 0.92);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.admin-modal-title {
    margin-bottom: 16px;
}

.admin-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.checkbox-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mono {
    font-family: "Courier New", monospace;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 15px 20px;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.input-group select {
    width: 100%;
    padding: 15px 20px;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.input-group input::placeholder {
    color: var(--text-secondary);
}

.input-group input:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.input-group select:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.hero h1 {
    margin-bottom: 40px;
    text-align: center;
}

/* Utility Classes */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 640px) {
    .toast-container {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
    }
}
