:root {
    /* Core Colors */
    --primary-color: #00ffea;
    --secondary-color: #ff2266;
    --accent-color: #9d00ff;
    --text-color: #ffffff;
    
    /* Background Colors */
    --dark-bg: #0a0a0a;
    --card-bg: #151515;
    --border-color: #2a2a2a;
    --hover-bg: rgba(255, 34, 102, 0.1);
    
    /* Interactive Colors */
    --hover-primary: #00ccbb;
    --hover-secondary: #ff0044;
    
    /* Gradients */
    --gradient-main: linear-gradient(45deg, #00ffea, #ff2266, #9d00ff);
    --gradient-dark: linear-gradient(135deg, #1a1a1a, #333333);
    --gradient-hover: linear-gradient(45deg, #ff2266, #9d00ff);
    
    /* Effects */
    --neon-cyan: 0 0 15px rgba(0, 255, 234, 0.5);
    --neon-red: 0 0 15px rgba(255, 34, 102, 0.5);
    --glass-effect: rgba(21, 21, 21, 0.7);
}

/* Base Styles */
body {
    background: linear-gradient(to bottom, var(--dark-bg), #000000);
    color: var(--text-color);
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

/* Navigation Styles */
/* Header & Navigation */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gradient-main);
    box-shadow: 0 2px 20px rgba(255, 34, 102, 0.2);
    padding: 1rem 2rem;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo Styles */
.nav-logo {
    flex: 0 0 auto;
    position: relative;
}

.nav-logo h1 {
    font-family: 'Orbitron', sans-serif;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
}

/* Search Section */
.nav-search {
    flex: 1;
    max-width: 400px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--glass-effect);
    border: 1px solid var(--secondary-color);
    box-shadow: inset 0 0 10px rgba(255, 34, 102, 0.1);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
}

.search-box input {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
}

.search-box i {
    color: var(--secondary-color);
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-links a i {
    font-size: 1.2rem;
}

.nav-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--gradient-main);
    transition: width 0.3s ease;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
}

/* Action Icons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.notification-icon,
.messages-icon {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
}

.notification-badge,
.messages-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--secondary-color);
    color: var(--text-color);
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    font-weight: bold;
    border: 2px solid var(--dark-bg);
}

/* Profile Menu */
.profile-menu {
    position: relative;
    cursor: pointer;
}

.profile-menu img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: none;
    padding: 0;
    object-fit: cover;
}

.profile-menu:hover img { }

.menu-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    min-width: 200px;
    background: #1a1a1a;
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    padding: 0.8rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.8),
                0 0 15px rgba(255, 34, 102, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.profile-menu:hover .menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-dropdown a {
    display: block;
    padding: 1rem 1.2rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: #1a1a1a;
}

.menu-dropdown a:hover {
    background: #222222;
    color: var(--secondary-color);
    transform: translateX(5px);
}

.menu-dropdown .logout {
    border-top: 2px solid var(--border-color);
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Sidebar Styles */
.sidebar-left, .sidebar-right {
    background: var(--glass-effect);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
}

/* Stat Cards */
.stat-card {
    background: var(--gradient-dark);
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.stat-value {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Action Buttons */
.action-btn {
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--gradient-hover);
    color: var(--text-color);
    border-color: transparent;
    box-shadow: var(--neon-red);
}

/* Topic Items */
.topic-item {
    background: var(--hover-bg);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.topic-item:hover {
    background: var(--gradient-hover);
    color: var(--text-color);
    box-shadow: var(--neon-red);
}

/* Filter Buttons */
.filter-btn.active,
.filter-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    box-shadow: var(--neon-red);
}

/* Headings */
h3 {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

/* Scrollbar */
::-webkit-scrollbar-thumb {
    background: var(--gradient-main);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-hover);
}

/* Grid Layout */
.content-grid {
    margin-top: 80px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 280px 1fr 300px;
    gap: 2rem;
    max-width: 1600px;
    margin: 80px auto 0;
}

/* Responsive Design */
/* Add these responsive breakpoints to your main CSS */
@media (max-width: 1200px) {
    .profile-container,
    .main-container {
        grid-template-columns: 200px 1fr 250px;
        gap: 15px;
        padding: 0 15px;
    }
}

@media (max-width: 992px) {
    .profile-container,
    .main-container {
        grid-template-columns: 1fr 250px;
    }
    
    .profile-stats-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .profile-container,
    .main-container {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .right-sidebar {
        display: none;
    }

    .post-actions {
        flex-wrap: wrap;
    }

    .action-btn {
        flex: 1 1 calc(50% - 5px);
    }
}

@media (max-width: 576px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .auth-card {
        padding: 20px;
    }

    .social-buttons {
        grid-template-columns: 1fr;
    }

    .post-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.feed-item {
    background: #181818;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.live-stream {
    cursor: pointer;
    transition: transform 0.2s;
}

.live-stream:hover {
    transform: translateY(-2px);
}

.stream-preview {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
    border-radius: 12px;
}

.stream-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ff0055;
    color: #fff;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.viewer-count {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.stream-info {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.streamer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.stream-details h3 {
    color: #fff;
    margin: 0 0 0.3rem;
    font-size: 1rem;
}

.streamer-name, .stream-game {
    display: block;
    color: #666;
    font-size: 0.9rem;
}

.post {
    padding: 1rem;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.post-info h3 {
    color: #fff;
    margin: 0;
    font-size: 1rem;
}

.post-time {
    color: #666;
    font-size: 0.8rem;
}

.post-content {
    margin-bottom: 1rem;
}

.post-content p {
    color: #fff;
    margin: 0 0 1rem;
}

.post-image {
    width: 100%;
    border-radius: 8px;
}

.post-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.action-btn:hover {
    color: #ff0055;
}

/* Enhanced Post Container Styles */
.create-post-card {
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.create-post-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.post-input {
    flex: 1;
    background: #222;
    border: none;
    border-radius: 20px;
    padding: 0.8rem 1.2rem;
    color: #fff;
    font-size: 0.95rem;
}

.create-post-actions {
    display: flex;
    gap: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #222;
}

.post-action-btn {
    flex: 1;
    background: #222;
    border: none;
    color: #666;
    padding: 0.6rem;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.post-action-btn:hover {
    background: #333;
    color: #fff;
}

.post-action-btn.primary {
    background: #ff0055;
    color: #fff;
}

.featured {
    position: relative;
    border: 1px solid #ff0055;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff0055;
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    z-index: 1;
}

.verified-badge {
    color: #ff0055;
    margin-left: 0.4rem;
}

.media-grid {
    display: grid;
    background-color: #151515;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.media-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

.game-tag img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
}

.game-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #222;
    padding: 0.5rem;
    border-radius: 4px;
    margin-top: 1rem;
}

.game-tag img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.reaction-bubbles {
    display: flex;
    gap: 0.5rem;
}

.reaction {
    background: #222;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.quick-comments {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #222;
    margin-top: 1rem;
}

.comment-input-wrapper {
    flex: 1;
    position: relative;
}

.comment-input {
    width: 100%;
    background: #222;
    border: none;
    border-radius: 20px;
    padding: 0.8rem 1.2rem;
    color: #fff;
}

.comment-actions {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 0.5rem;
}

.comment-actions button {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
}

/* Auth Container Styles */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: var(--dark-bg);
    position: relative;
}

.auth-box {
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    border: 1px solid var(--border-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Form Styles */
.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #00ff00;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.auth-form .input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-form .input-group i {
    position: absolute;
    left: 1rem;
    color: #00ff00;
    font-size: 1rem;
}

.auth-form input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 5px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
}

.auth-form input:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 0 0 0 2px rgba(0, 255, 0, 0.1);
}

.auth-form input::placeholder {
    color: #666;
}

/* Button Styles */
.auth-form .btn-primary {
    background: #00ff00;
    color: #000;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    width: 100%;
    border: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.auth-form .btn-primary:hover {
    background: #00cc00;
    transform: translateY(-2px);
}

/* Alert Styles */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-family: 'Rajdhani', sans-serif;
}

.alert-danger {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    color: #ff0000;
}

/* Footer Styles */
.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
}

.auth-footer p {
    color: #888;
    font-family: 'Rajdhani', sans-serif;
}

.auth-footer a {
    color: #00ff00;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: #00cc00;
}

/* Error Message Styles */
.error-message {
    color: #ff0000;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
}

.input-group input.error {
    border-color: #ff0000;
}

.input-group input.error:focus {
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .auth-container {
        padding: 1rem;
    }

    .auth-box {
        padding: 1.5rem;
    }

    .auth-header h2 {
        font-size: 1.5rem;
    }
}

.profile-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.profile-header {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
}

.cover-image {
    height: 300px;
    position: relative;
}

.cover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.edit-profile-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.edit-profile-btn:hover {
    background: var(--accent-color);
}

// ... existing code ...

.complete-profile-container {
    max-width: 600px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.complete-profile-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 2rem;
}

.complete-profile-card h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.setup-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-color);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.setup-step {
    margin-bottom: 2rem;
}

.setup-step h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.setup-step p {
    color: var(--text-color-secondary);
    margin-bottom: 1.5rem;
}

// ... existing code ...

.profile-info {
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-end;
    margin-top: -100px;
}

.profile-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid var(--bg-secondary);
    overflow: hidden;
    background: var(--bg-secondary);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-details {
    flex: 1;
}

.profile-details h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.profile-details h2 {
    font-size: 1.8rem;
    color: var(--text-color-secondary);
    margin-bottom: 1rem;
}

.bio {
    color: var(--text-color-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.profile-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.count {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
}

.label {
    color: var(--text-color-secondary);
}

.post-info h3 {
    color: #fff;
    margin: 0;
    font-size: 1rem;
}

.post-time {
    color: #666;
    font-size: 0.8rem;
}

.post-content {
    margin-bottom: 1rem;
}

.post-content p {
    color: #fff;
    margin: 0 0 1rem;
}

.post-image {
    width: 100%;
    border-radius: 8px;
}

.post-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.action-btn:hover {
    color: #ff0055;
}

/* Enhanced Post Container Styles */
.create-post-card {
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.create-post-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.post-input {
    flex: 1;
    background: #222;
    border: none;
    border-radius: 20px;
    padding: 0.8rem 1.2rem;
    color: #fff;
    font-size: 0.95rem;
}

.create-post-actions {
    display: flex;
    gap: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #222;
}

.post-action-btn {
    flex: 1;
    background: #222;
    border: none;
    color: #666;
    padding: 0.6rem;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.post-action-btn:hover {
    background: #333;
    color: #fff;
}

.post-action-btn.primary {
    background: #ff0055;
    color: #fff;
}

.featured {
    position: relative;
    border: 1px solid #ff0055;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff0055;
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    z-index: 1;
}

.verified-badge {
    color: #ff0055;
    margin-left: 0.4rem;
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.media-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

.game-tag img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
}

.game-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #222;
    padding: 0.5rem;
    border-radius: 4px;
    margin-top: 1rem;
}

.game-tag img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.reaction-bubbles {
    display: flex;
    gap: 0.5rem;
}

.reaction {
    background: #222;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.quick-comments {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #222;
    margin-top: 1rem;
}

.comment-input-wrapper {
    flex: 1;
    position: relative;
}

.comment-input {
    width: 100%;
    background: #222;
    border: none;
    border-radius: 20px;
    padding: 0.8rem 1.2rem;
    color: #fff;
}

.comment-actions {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 0.5rem;
}

.comment-actions button {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
}

/* Auth Container Styles */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: var(--dark-bg);
    position: relative;
}

.auth-box {
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    border: 1px solid var(--border-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Form Styles */
.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #00ff00;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.auth-form .input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-form .input-group i {
    position: absolute;
    left: 1rem;
    color: #00ff00;
    font-size: 1rem;
}

.auth-form input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 5px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
}

.auth-form input:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 0 0 0 2px rgba(0, 255, 0, 0.1);
}

.auth-form input::placeholder {
    color: #666;
}

/* Button Styles */
.auth-form .btn-primary {
    background: #00ff00;
    color: #000;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    width: 100%;
    border: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.auth-form .btn-primary:hover {
    background: #00cc00;
    transform: translateY(-2px);
}

/* Alert Styles */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-family: 'Rajdhani', sans-serif;
}

.alert-danger {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    color: #ff0000;
}

/* Footer Styles */
.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
}

.auth-footer p {
    color: #888;
    font-family: 'Rajdhani', sans-serif;
}

.auth-footer a {
    color: #00ff00;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: #00cc00;
}

/* Error Message Styles */
.error-message {
    color: #ff0000;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
}

.input-group input.error {
    border-color: #ff0000;
}

.input-group input.error:focus {
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .auth-container {
        padding: 1rem;
    }

    .auth-box {
        padding: 1.5rem;
    }

    .auth-header h2 {
        font-size: 1.5rem;
    }
}

/* Video Creation Studio */
.video-creator-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 2000;
    flex-direction: column;
}

.creator-header {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

.creator-preview-container {
    flex: 1;
    position: relative;
    background: #000;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.creator-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.creator-controls {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.record-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid #fff;
    background: transparent;
    color: #fe2c55;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.record-btn.recording {
    border-color: #fe2c55;
    background: rgba(254, 44, 85, 0.2);
    transform: scale(1.1);
}

.filter-sidebar {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    padding: 1rem 0.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    backdrop-filter: blur(5px);
}

.filter-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.filter-option:hover, .filter-option.active {
    border-color: #fe2c55;
}

.filter-preview-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.add-sound-btn {
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(5px);
}
