/* ChikondiMatch Premium Design System */
:root {
    --primary-color: #E11D48;
    --primary-soft: #F43F5E;
    --primary-dark: #BE123C;
    --bg-dark: #0f172a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-muted: #94a3b8;
    --nav-height: 70px;
    --mobile-nav-height: 80px;
}

body {
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
    padding-bottom: var(--mobile-nav-height);
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
        padding-top: var(--nav-height);
    }
}

/* Glassmorphism */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* Premium Buttons */
.btn-premium {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-soft));
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
}

.btn-premium:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
    color: white;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    padding: 12px 24px;
    transition: all 0.2s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Bottom Nav (Mobile) */
.mobile-nav {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 65px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    padding: 0 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-item-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    width: 60px;
    position: relative;
    z-index: 1;
}

.nav-item-mobile i {
    font-size: 1.4rem;
    margin-bottom: 2px;
    transition: all 0.4s ease;
}

.nav-item-mobile.active {
    color: #fff;
}

.nav-item-mobile.active i {
    transform: translateY(-8px);
    color: var(--primary-soft);
    text-shadow: 0 0 15px rgba(244, 63, 94, 0.6);
}

.nav-item-mobile.active::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.2) 0%, rgba(225, 29, 72, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: activeGlow 3s infinite alternate;
}

@keyframes activeGlow {
    from { opacity: 0.5; transform: translateX(-50%) scale(0.8); }
    to { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.nav-item-mobile span {
    opacity: 0.8;
}

.nav-item-mobile.active span {
    opacity: 1;
    transform: translateY(-2px);
    color: white;
}

/* Animations */
@keyframes heartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes slowPulse {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 8px 25px rgba(225, 29, 72, 0.5); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3); }
}

/* Refined Glass Navbar */
.navbar-glass {
    background: rgba(15, 23, 42, 0.6) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border-bottom: 1px solid rgba(225, 29, 72, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Brand Accent Underline */
.hero-title .brand-accent {
    position: relative;
    color: var(--primary-soft);
    display: inline-block;
    text-shadow: 0 0 20px rgba(244, 63, 94, 0.3);
}

.hero-title .brand-accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 6px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-soft));
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.6);
    animation: underlineExpand 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    animation-delay: 0.8s;
}

@keyframes underlineExpand {
    from { width: 0; }
    to { width: 100%; }
}

/* Alive CTA Buttons */
.btn-premium-cta {
    background: linear-gradient(45deg, #ff0055, #ff6600, #ff0055) !important;
    background-size: 200% auto !important;
    border: none !important;
    border-radius: 50px !important;
    color: white !important;
    font-weight: 800 !important;
    padding: 20px 50px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.5) !important;
    animation: brandPulse 4s infinite ease-in-out, shimmer 3s infinite linear !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-premium-cta:hover {
    transform: scale(1.08) translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(255, 0, 85, 0.7) !important;
    background-position: right center !important;
}

.btn-glass-login {
    background: rgba(255, 0, 85, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 2px solid #ff0055 !important;
    border-radius: 50px !important;
    color: white !important;
    font-weight: 700 !important;
    padding: 20px 50px !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-glass-login:hover {
    background: rgba(255, 0, 85, 0.2) !important;
    border-color: #fff !important;
    box-shadow: 0 0 25px rgba(255, 0, 85, 0.4) !important;
    transform: translateY(-3px) !important;
}

@keyframes brandPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Alive Live Counter */
.live-counter {
    background: rgba(255, 0, 85, 0.05);
    padding: 18px 40px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    border: 2px solid rgba(255, 0, 85, 0.2);
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.1);
    animation: counterGlow 4s infinite alternate;
}

@keyframes counterGlow {
    from { border-color: rgba(255, 0, 85, 0.2); box-shadow: 0 0 10px rgba(255, 0, 85, 0.1); }
    to { border-color: rgba(255, 0, 85, 0.5); box-shadow: 0 0 25px rgba(255, 0, 85, 0.2); }
}

.online-indicator {
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: #00ff88;
    border-radius: 50%;
    margin-right: 15px;
    animation: indicatorPulse 2s infinite ease-in-out;
    box-shadow: 0 0 15px #00ff88;
}

.online-count {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    margin-right: 10px;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    animation: countBeat 2s infinite ease-in-out;
}

@keyframes countBeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); color: #ff0055; }
    100% { transform: scale(1); }
}

.online-text {
    font-size: 1rem;
    color: #cbd5e1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-centered-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Ticker Styles */
.ticker-container {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-item {
    display: inline-block;
    padding: 0 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.ticker-item span {
    color: var(--primary-soft);
    font-weight: 500;
}
