/* theme.css - Reusable futuristic theme styles */
:root {
    --primary: #00f0ff;
    --secondary: #7b2dff;
    --dark: #0a0a1a;
    --light: #f0f8ff;
    --accent: #ff2d7b;
    --success: #00ff9d;
    --warning: #ffcc00;
    --danger: #ff3860;
}

/* Base Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: var(--dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 240, 255, 0.3);
}

/* Cards */
.card {
    background: rgba(10, 10, 26, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    z-index: -1;
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.card:hover::before {
    opacity: 1;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--dark) 0%, rgba(11,11,30,0.9) 100%);
    padding: 30px 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 5px 30px rgba(0, 240, 255, 0.1);
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
}

/* Animations */
@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
    }
    to {
        text-shadow: 0 0 20px rgba(0, 240, 255, 0.6), 0 0 30px rgba(123, 45, 255, 0.4);
    }
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

/* Grid pattern */
.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 2rem;
    }
}
/* Navigation Styles */
.nav-link {
    color: var(--light);
    text-decoration: none;
    margin-left: 25px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    width: 100%;
}


/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        margin-bottom: 20px;
    }

    nav {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .nav-link {
        margin-left: 0;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link::after {
        display: none;
    }

.mobile-menu-btn {
        display: block;
        position: absolute;
        top: 30px;
        right: 20px;
    }
    
    nav {
        display: none;
        width: 100%;
        padding-top: 20px;
    }
    
    nav.active {
        display: flex;
    }

}
/* Input wrapper styling */
.input-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}

.input-wrapper input {
    width: 90%;
    padding: 12px 15px 12px 45px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 8px;
    color: var(--light);
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.input-wrapper input:hover {
    border-color: var(--primary);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.2);
}

/* Form group spacing */
.form-group {
    margin-bottom: 25px;
}
.error-alert {
    background-color: rgba(255, 45, 123, 0.1);
    border-left: 4px solid var(--accent);
    padding: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    animation: fadeIn 0.3s ease-out;
}

.error-alert i {
    color: var(--accent);
    font-size: 1.2rem;
}

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

.account-dropdown {
            display: none;
            position: absolute;
            right: 0;
            min-width: 220px;
            background: #fff;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            border-radius: 6px;
            z-index: 1000;
            padding: 8px 0;
        }
        .account-toggle:hover .account-dropdown {
            display: block;
        }
        .account-dropdown a {
            display: block;
            padding: 10px 16px;
            color: #333;
            font-family: 'Roboto', sans-serif;
            transition: all 0.2s;
        }
        .account-dropdown a:hover {
            background: #f5f5f5;
            color: #0066cc;
        }
        .mobile-menu {
            display: none;
            background: #fff;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .mobile-menu.active {
            display: block;
        }