/* static/css/pages/login.css - Premium Cyberpunk Girly Neon Theme */

/* Navigation Header */
.navbar {
    background: rgba(26, 31, 58, 0.98);
    border-bottom: 3px solid #ff1493;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.9), 0 0 15px rgba(0, 255, 255, 0.9);
    padding: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    margin: 0 1rem;
    border-radius: 0 0 15px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
}

.logo-text {
    font-family: 'Valorax', 'Orbitron', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #ff1493;
    text-shadow:
        0 0 20px rgba(255, 20, 147, 0.9),
        0 0 40px rgba(255, 20, 147, 0.9),
        0 0 60px rgba(255, 20, 147, 0.9);
    letter-spacing: 4px;
    filter: brightness(1.3);
}

.logo-subtitle {
    font-size: 1rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    letter-spacing: 4px;
    margin-top: -8px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 10, 46, 0.95) 25%, rgba(10, 10, 10, 0.95) 50%, rgba(45, 27, 78, 0.95) 75%, rgba(10, 10, 10, 0.95) 100%),
        url('/static/images/background.jpg') center/cover no-repeat;
    background-attachment: fixed;
    color: #ffffff;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
}

/* Subtle floating particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 0, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 0, 0.03) 0%, transparent 50%);
    animation: gentleFloat 25s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(90deg); }
    66% { transform: translateY(5px) rotate(180deg); }
}

/* Main page container */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    min-height: 100vh;
}

/* Header Section */
.page-header {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 1rem;
}

.brand-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.brand-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00);
    background-size: 300% 300%;
    animation: softGlow 4s ease-in-out infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 30px rgba(255, 0, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.3);
    margin: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@keyframes softGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.brand-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 600;
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
    margin: 0;
    letter-spacing: 0.05em;
}

.brand-tagline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    font-weight: 400;
    color: #ff6aff;
    text-shadow: 0 0 10px rgba(255, 106, 255, 0.5);
    margin: 0.5rem 0 0 0;
    letter-spacing: 0.02em;
    max-width: 600px;
    text-align: center;
}

/* Service Description Section */
.service-description {
    display: none;
}

/* Content Overlay - Big container with opacity to blur background */
.content-overlay {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Main Content Area - Flex layout for desktop */
.main-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Auth Section - Left side */
.auth-section {
    flex: 1;
    max-width: 450px;
    display: flex;
    justify-content: center;
    min-height: 600px;
}

/* About Section - Right side */
.about-section {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 600px;
}

/* About Content */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.about-header {
    text-align: center;
}

.about-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00);
    background-size: 300% 300%;
    animation: titleGlow 4s ease-in-out infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow:
        0 0 20px rgba(255, 0, 255, 0.8),
        0 0 40px rgba(0, 255, 255, 0.6),
        0 0 60px rgba(255, 255, 0, 0.4);
    margin: 0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-body {
    text-align: center;
}

.about-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-features li {
    color: #ff6aff;
    text-shadow: 0 0 8px rgba(255, 106, 255, 0.6);
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
}

.about-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .content-overlay {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }

    .main-content {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
    }

    .auth-section,
    .about-section {
        max-width: 100%;
        width: 100%;
    }

    .about-section {
        padding: 2rem 1rem;
    }
}

.description-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(30px);
    border: 2px solid transparent;
    border-radius: 24px;
    padding: 2rem;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(255, 0, 255, 0.15),
        0 0 160px rgba(0, 255, 255, 0.1),
        0 0 240px rgba(255, 255, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
    animation: descriptionGlowPulse 6s ease-in-out infinite;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.description-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00, #ff0080, #8000ff);
    background-size: 400% 400%;
    animation: neonBorderRotate 8s ease-in-out infinite, neonBorderPulse 3s ease-in-out infinite;
    border-radius: 26px;
    z-index: -1;
    opacity: 0.8;
}

.description-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 0, 0.05) 0%, transparent 50%);
    border-radius: 24px;
    z-index: -1;
}

@keyframes descriptionGlowPulse {
    0%, 100% {
        box-shadow:
            0 25px 50px rgba(0, 0, 0, 0.4),
            0 0 80px rgba(255, 0, 255, 0.15),
            0 0 160px rgba(0, 255, 255, 0.1),
            0 0 240px rgba(255, 255, 0, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow:
            0 30px 60px rgba(0, 0, 0, 0.5),
            0 0 100px rgba(255, 0, 255, 0.2),
            0 0 200px rgba(0, 255, 255, 0.15),
            0 0 300px rgba(255, 255, 0, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

@keyframes neonBorderRotate {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes neonBorderPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.description-header {
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.description-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00);
    background-size: 300% 300%;
    animation: titleGlow 4s ease-in-out infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow:
        0 0 20px rgba(255, 0, 255, 0.8),
        0 0 40px rgba(0, 255, 255, 0.6),
        0 0 60px rgba(255, 255, 0, 0.4);
    margin: 0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
}

@keyframes titleGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.description-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff00ff, #00ffff, transparent);
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.6);
}

.description-body {
    position: relative;
    z-index: 1;
}

.description-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.7;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-align: center;
}

.description-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.description-features li {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #ff6aff;
    text-shadow: 0 0 12px rgba(255, 106, 255, 0.7);
    font-weight: 500;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 106, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.description-features li::before {
    content: '✦';
    font-size: 1.2rem;
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
    flex-shrink: 0;
    margin-top: 0.1rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.description-features li:hover {
    background: rgba(255, 106, 255, 0.05);
    border-color: rgba(255, 106, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 106, 255, 0.3);
    transform: translateX(5px);
}

/* Chibi Character */
.chibi-character {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    position: relative;
}

.chibi-svg {
    filter: drop-shadow(0 0 20px rgba(255, 0, 255, 0.3));
    animation: chibiFloat 3s ease-in-out infinite;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    padding: 1rem;
}

.chibi-svg svg {
    width: 120px;
    height: 120px;
    display: block;
}

@keyframes chibiFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

/* Description Content */
.description-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Social Media Section */
.social-media {
    margin-top: 1rem;
    text-align: center;
}

.social-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.social-link:hover::before {
    transform: translateX(100%);
}

.social-link:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Platform-specific colors */
.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-link.instagram:hover {
    box-shadow: 0 10px 25px rgba(188, 24, 136, 0.4);
}

.social-link.twitter {
    background: linear-gradient(45deg, #1da1f2, #1991db);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-link.twitter:hover {
    box-shadow: 0 10px 25px rgba(29, 161, 242, 0.4);
}

.social-link.tiktok {
    background: linear-gradient(45deg, #000000, #ff0050);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-link.tiktok:hover {
    box-shadow: 0 10px 25px rgba(255, 0, 80, 0.4);
}

.social-link.youtube {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-link.youtube:hover {
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

.social-link.discord {
    background: linear-gradient(45deg, #5865f2, #4752c4);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-link.discord:hover {
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.4);
}

.auth-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(25px);
    border: 2px solid transparent;
    border-radius: 24px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 0, 255, 0.1),
        0 0 120px rgba(0, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
    position: relative;
    animation: softGlowPulse 4s ease-in-out infinite;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00, #ff00ff);
    background-size: 400% 400%;
    animation: neonBorder 3s ease-in-out infinite;
    border-radius: 26px;
    z-index: -1;
    opacity: 0.7;
}

@keyframes softGlowPulse {
    0%, 100% { 
        box-shadow: 
            0 30px 60px rgba(0, 0, 0, 0.5),
            0 0 60px rgba(255, 0, 255, 0.1),
            0 0 120px rgba(0, 255, 255, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }
    50% { 
        box-shadow: 
            0 30px 60px rgba(0, 0, 0, 0.5),
            0 0 80px rgba(255, 0, 255, 0.15),
            0 0 160px rgba(0, 255, 255, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }
}

@keyframes neonBorder {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Auth Header with Tabs */
.auth-header {
    padding: 0;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-tabs {
    display: flex;
    width: 100%;
}

.tab-btn {
    flex: 1;
    padding: 1.2rem 1rem;
    background: transparent;
    border: none;
    color: #cccccc;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tab-btn.active {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, #ff00ff, #00ffff);
    border-radius: 1px;
}

.tab-btn:hover:not(.active) {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

/* Auth Body */
.auth-body {
    padding: 2.5rem 2rem;
}

.auth-form-container {
    display: none;
}

.auth-form-container.active {
    display: block;
}

.form-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
}

/* Form Styles */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #e0e0e0;
    font-weight: 500;
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.form-input {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 1rem 1.2rem;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-input:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder {
    color: #aaaaaa;
}

/* Button Styles */
.btn {
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 0, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
    transform: translateY(-1px);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ff00ff, #00ffff);
    color: #ffffff;
    border-color: transparent;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff1493, #00bfff);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.4);
}

.btn-block {
    width: 100%;
}

/* Auth Footer */
.auth-footer {
    margin-top: 2rem;
    text-align: center;
    color: #cccccc;
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.link-primary {
    color: #00ffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
}

.link-primary:hover {
    color: #ff00ff;
    text-shadow: 0 0 12px rgba(255, 0, 255, 0.6);
    text-decoration: underline;
}

/* Public Actions Section */
.public-actions {
    padding: 2rem 0;
    margin-top: auto;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    text-align: center;
    border: 2px solid transparent;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.action-btn:hover::before {
    left: 100%;
}

.action-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* Services Button - Pink to Purple Gradient */
.services-btn {
    background: linear-gradient(135deg, #ff0080, #8000ff);
    box-shadow: 
        0 0 20px rgba(255, 0, 128, 0.4),
        0 0 40px rgba(255, 0, 128, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.services-btn:hover {
    box-shadow: 
        0 0 30px rgba(255, 0, 128, 0.6),
        0 0 60px rgba(255, 0, 128, 0.3),
        0 0 80px rgba(128, 0, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* How It Works Button - Cyan Glow */
.how-it-works-btn {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.4),
        0 0 40px rgba(0, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.how-it-works-btn:hover {
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.6),
        0 0 60px rgba(0, 255, 255, 0.3),
        0 0 80px rgba(0, 128, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Contact Button - Purple Glow */
.contact-btn {
    background: linear-gradient(135deg, #8000ff, #ff0080);
    box-shadow: 
        0 0 20px rgba(128, 0, 255, 0.4),
        0 0 40px rgba(128, 0, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.contact-btn:hover {
    box-shadow: 
        0 0 30px rgba(128, 0, 255, 0.6),
        0 0 60px rgba(128, 0, 255, 0.3),
        0 0 80px rgba(255, 0, 128, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        gap: 2rem;
    }
    
    .description-container {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .page-container {
        padding: 1rem;
        gap: 2rem;
    }
    
    .main-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .auth-container,
    .description-container {
        order: unset;
        max-width: 100%;
    }
    
    .description-card {
        padding: 1.5rem;
    }
    
    .description-title {
        font-size: 1.3rem;
    }
    
    .description-text {
        font-size: 1rem;
    }
    
    .description-features {
        gap: 0.8rem;
    }
    
    .description-features li {
        font-size: 0.95rem;
    }
}

.btn-text {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-container {
        padding: 1rem;
        gap: 2rem;
    }

    .brand-title {
        font-size: 3rem;
    }

    .brand-subtitle {
        font-size: 1.2rem;
    }

    .description-title {
        font-size: 2rem;
    }

    .description-text {
        font-size: 1.1rem;
    }

    .auth-body {
        padding: 2rem 1.5rem;
    }

    .action-buttons {
        gap: 1rem;
    }

    .action-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-container {
        padding: 0.5rem;
    }

    .brand-title {
        font-size: 2.5rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .action-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
