﻿/* Yu Bodrum - Global Styles */



/* Font Face */
@font-face {
    font-family: 'Nord';
    src: url('../font/Nord-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Nord';
    src: url('../font/Nord-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Nord';
    src: url('../font/Nord-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Nord';
    src: url('../font/Nord-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* Root Variables */
:root {
    /* Dark Theme Colors */
    --primary-bg: #000000;
    --secondary-bg: #111111;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --accent-red: #ff0040;
    --accent-red-glow: rgba(255, 0, 64, 0.3);
    --accent-secondary: #5f1113;
    --accent-secondary-glow: rgba(95, 17, 19, 0.3);
    --accent-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ff0040 0%, #5f1113 100%);
    --gradient-secondary: linear-gradient(135deg, #5f1113 0%, #ff0040 100%);
    --gradient-text: linear-gradient(135deg, #ff0040 0%, #5f1113 50%, #ff0040 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    
    /* Shadows */
    --shadow-glass: 0 8px 32px rgba(135, 31, 31, 0.062);
    --shadow-card: 0 8px 25px rgba(0, 0, 0, 0.5);
    --shadow-neon: 0 0 20px var(--accent-red-glow);
    
    /* Layout */
    --container-max-width: 1650px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease-in-out;
}

/* Light Theme */
[data-theme="light"] {
    /* Light Theme Colors - Inspired by organic architecture */
    --primary-bg: linear-gradient(135deg, #F5F2E8 0%, #E8E2D4 100%);
    --secondary-bg: #F0EDE4;
    --card-bg: rgba(139, 105, 20, 0.08);
    --text-primary: #5f1113;
    --text-secondary: #5f1113;
    --text-tertiary: #5D4E3A;
    --text-muted: #8B7355;
    --accent-red: #B8722C;
    --accent-red-glow: rgba(184, 114, 44, 0.3);
    --accent-secondary: #8B4513;
    --accent-secondary-glow: rgba(139, 69, 19, 0.3);
    --accent-white: #2C1810;
    --glass-bg: rgba(139, 105, 20, 0.12);
    --glass-border: rgba(139, 105, 20, 0.25);
    
    /* Light Theme Gradients */
    --gradient-primary: linear-gradient(135deg,  #d4af37 0%, #f0d080 100%);
    --gradient-secondary:linear-gradient(135deg, #f0d080, #d4af37);
    --gradient-text: linear-gradient(135deg, #d4af37 0%, #f0d080 50%, #d4af37 100%);
    --gradient-card: linear-gradient(145deg, rgba(139, 105, 20, 0.12) 0%, rgba(139, 105, 20, 0.08) 100%);
    
    /* Light Theme Shadows */
    --shadow-glass: 0 8px 32px rgba(139, 105, 20, 0.15);
    --shadow-card: 0 8px 25px rgba(139, 105, 20, 0.2);
    --shadow-neon: 0 0 20px var(--accent-red-glow);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-red), rgba(255, 0, 64, 0.7));
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff1a52, var(--accent-red));
    box-shadow: 0 0 10px rgba(255, 0, 64, 0.5);
}

::-webkit-scrollbar-corner {
    background: rgba(0, 0, 0, 0.2);
}

button,input{
    font-family: 'Nord', sans-serif !important;
}
/* Firefox Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-red) rgba(0, 0, 0, 0.2);
}

/* Light Theme Scrollbar */
[data-theme="light"] ::-webkit-scrollbar-track {
    background: rgba(139, 105, 20, 0.1);
}

[data-theme="light"] ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #B8722C, #8B6914);
    border: 1px solid rgba(139, 105, 20, 0.2);
}

[data-theme="light"] ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #D4A85A, #B8722C);
    box-shadow: 0 0 10px rgba(184, 114, 44, 0.3);
}

[data-theme="light"] html {
    scrollbar-color: #B8722C rgba(139, 105, 20, 0.1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nord', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
    margin: 0;
    min-height: 100vh;
    padding-top: 80px; /* Fixed header height */
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 3.75rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 48px;
    text-align: center;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-secondary);
    color: var(--accent-white);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;    
    gap: 5px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-secondary-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;    
    gap: 5px;
    padding: 10px 24px;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--accent-secondary);
    transform: translateY(-2px);
}

.btn-secondary-red {
    background: var(--gradient-secondary);
    color: var(--accent-white);
    border: none;
    padding: 12px 32px;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-secondary-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-secondary-glow);
}

.btn-outline {
    background: transparent;
    color: var(--accent-secondary);
    border: 2px solid var(--accent-secondary);
    padding: 12px 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;    
    gap: 5px;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin: 0 8px;
}

.btn-outline:hover {
    background: var(--accent-secondary);
    color: var(--accent-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-secondary-glow);
}

.full-width {
    width: 100%;
}

/* Glass Effect */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-glass);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-content {
    position: relative;
    max-width: 550px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(40px);
    transform-origin: center center;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--accent-red);
}

/* Form Styles */
.auth-form {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 1rem 1rem 1rem 1.2rem;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px var(--accent-red-glow);
    background: var(--card-bg);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
}

.password-toggle:hover {
    color: var(--accent-red);
}

.login-btn, .register-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 1rem;
}

.login-btn:hover, .register-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
}

.auth-footer {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.auth-footer a:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

/* Auth Divider */
.auth-divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.auth-divider span {
    background: var(--glass-bg);
    padding: 0 16px;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Social Auth */
.social-auth {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-btn.google:hover {
    border-color: #4285f4;
    background: rgba(66, 133, 244, 0.1);
}

.social-btn.facebook:hover {
    border-color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.social-btn.apple:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

.social-icon {
    width: 20px;
    height: 20px;
}

.social-icon.google {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23EA4335" d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z"/><path fill="%2334A853" d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z"/><path fill="%23FBBC05" d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z"/><path fill="%23EA4335" d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"/></svg>') no-repeat center;
    background-size: contain;
}

.social-icon.facebook {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%231877f2" d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z"/></svg>') no-repeat center;
    background-size: contain;
}

.social-icon.apple {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23ffffff" d="M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.81-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z"/></svg>') no-repeat center;
    background-size: contain;
}

/* Artist Modal Styles */
.artist-modal-content {
    max-width: 700px;
    width: 95%;
}

.artist-modal-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.artist-hero {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.artist-modal-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-red);
    box-shadow: 0 0 30px rgba(255, 0, 64, 0.4);
    flex-shrink: 0;
}

.artist-info-modal h3 {
    margin: 0 0 8px 0;
    color: var(--text-primary);
    font-size: 1.8rem;
}

.artist-genre-modal {
    color: var(--accent-red);
    font-weight: 500;
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.artist-location {
    color: var(--text-muted);
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.artist-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.artist-stats {
    display: flex;
    gap: 24px;
    margin: 0 0 20px 0;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-red);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.artist-actions-modal {
    display: flex;
    gap: 12px;
}

.artist-actions-modal .btn-spotify {
    padding: 12px 24px;
    font-size: 0.9rem;
}

.artist-achievements {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.artist-achievements h4 {
    margin: 0 0 16px 0;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.achievements-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.achievement-badge {
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--accent-red);
}

.top-tracks {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.top-tracks h4 {
    margin: 0 0 20px 0;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.tracks-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.track-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.track-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-red);
}

.track-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.track-number {
    color: var(--text-muted);
    font-weight: 500;
    min-width: 20px;
}

.track-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.track-name {
    color: var(--text-primary);
    font-weight: 500;
}

.track-duration {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.track-play-btn {
    background: none;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.track-play-btn:hover {
    background: var(--accent-red);
    color: white;
    transform: scale(1.1);
}

.track-play-btn.playing {
    background: var(--accent-red);
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 64, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 0, 64, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 64, 0); }
}

/* Animations */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        backdrop-filter: blur(0px);
    }
    to { 
        opacity: 1; 
        backdrop-filter: blur(10px);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px var(--accent-red-glow); }
    50% { box-shadow: 0 0 30px var(--accent-red-glow); }
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    min-width: 300px;
    max-width: 500px;
    animation: slideInRight 0.3s ease-out;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-left: 4px solid #ff0040;
    color: white;
    transition: var(--transition);
}

[data-theme="light"] .notification-content {
    background: rgba(245, 242, 232, 0.95);
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.2);
}

.notification-error .notification-content {
    border-left-color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
}

.notification-success .notification-content {
    border-left-color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

.notification-warning .notification-content {
    border-left-color: #ffaa00;
    background: rgba(255, 170, 0, 0.1);
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-left: 12px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.notification-close:hover {
    opacity: 1;
}

[data-theme="light"] .notification-close {
    color: var(--text-primary);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* Page Header */
.page-header {
  
    align-items: center;
    padding: 20px 24px;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}
.page-header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .gradient-text {
        font-size: 2.5rem;
    }
    
    .btn-outline {
        margin: 8px 0;
        display: block;
    }
    body{
        padding-top: 0!important;
    }

}

