/* Navbar Styles */

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Navbar */
.navbar {
    padding: 15px 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #f8fafc;
    font-family: 'Modern', 'Space Grotesk', 'Orbitron', sans-serif;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
    gap: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.2;
}

.logo-text .brand-name {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
    position: relative;
    letter-spacing: 1px;
}

.logo-text .brand-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
    text-transform: none;
    letter-spacing: 0.8px;
    transition: color 0.3s ease;
    text-align: center;
}

.logo:hover .brand-subtitle {
    color: #cbd5e1;
}

.logo-text .brand-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #6366f1 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo:hover .brand-name::after {
    opacity: 1;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

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

.nav-links a {
    margin: 0 15px;
    color: #e2e8f0;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: #6366f1;
}

/* Auth Buttons */
.auth-buttons .btn {
    margin-left: 10px;
    padding: 6px 16px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #e2e8f0;
    transition: color 0.2s ease;
}

.mobile-menu-btn:hover {
    color: #06b6d4;
}

/* Mobile Sign In Button - Hidden by default */
.mobile-signin-btn {
    display: none !important;
}

/* Navbar Right Section */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Coin Carousel Section */
.coin-carousel-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 5px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
    margin-top: 0;
    width: 100%;
    box-shadow: inset 0 1px 0 rgba(99, 102, 241, 0.1);
}

.coin-ticker-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* Responsive Navbar */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .auth-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-signin-btn {
        display: flex !important;
    }

    .navbar .container {
        justify-content: space-between;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo img {
        height: 32px;
    }

    .logo-text .brand-name {
        font-size: 1.5rem;
    }

    .logo-text .brand-subtitle {
        font-size: 0.65rem;
    }
}
