@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

:root {
    --bg-main: #0f172a;
    --bg-card: rgba(30, 41, 59, 0.7);
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --text-gradient: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: #f8fafc;
}

.brag-gradient {
    background: var(--primary-gradient);
}

.brag-gradient-text {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
}

.btn-primary {
    background: var(--primary-gradient);
    transition: all 0.2s;
}

.btn-primary:hover {
    transform: translateY(-1px);
    opacity: 0.9;
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.input-field {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-color);
    color: white;
    outline: none;
    transition: border-color 0.2s;
}

.input-field:focus {
    border-color: #6366f1;
}

/* Animations */
@keyframes pulse-soft {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.animate-pulse-soft {
    animation: pulse-soft 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Navbar links */
.nav-link {
    transition: color 0.2s;
    color: #94a3b8;
}

.nav-link:hover, .nav-link.active {
    color: #c084fc;
}

/* Mobile Menu Styles */
#mobileMenu {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
}

.admin-card {
    border-left: 4px solid #6366f1;
}

.section-header {
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #64748b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.section-header i {
    margin-right: 0.75rem; color: #818cf8;
}

/* BRAG Token Icon */
.brag-token-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    background: var(--primary-gradient);
    color: white;
    font-size: 0.65rem;
    font-weight: 900;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
    vertical-align: middle;
    margin-top: -2px;
}

.brag-token-icon-lg {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
}
