/* ===== CSS VARIABLES ===== */
:root {
    --primary: #00f0ff;
    --primary-dark: #0099aa;
    --secondary: #ff6b35;
    --accent: #a855f7;
    --gold: #ffd700;
    --bg-dark: #0a0e1a;
    --bg-card: #111827;
    --bg-card-hover: #1a2332;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border: rgba(0, 240, 255, 0.15);
    --glow-primary: 0 0 20px rgba(0, 240, 255, 0.3);
    --glow-gold: 0 0 30px rgba(255, 215, 0, 0.4);
    --glow-accent: 0 0 20px rgba(168, 85, 247, 0.3);
    --gradient-primary: linear-gradient(135deg, #00f0ff, #0066ff);
    --gradient-gold: linear-gradient(135deg, #ffd700, #ff8c00);
    --gradient-accent: linear-gradient(135deg, #a855f7, #6366f1);
    --gradient-danger: linear-gradient(135deg, #ef4444, #dc2626);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== PARTICLE CANVAS ===== */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.7rem 2rem;
    background: rgba(10, 14, 26, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

.brand-icon {
    color: var(--primary);
    font-size: 1.5rem;
    text-shadow: var(--glow-primary);
    animation: pulse-glow 2s ease-in-out infinite;
}

.brand-text {
    font-size: 1.4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-server {
    font-size: 0.8rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0.2rem 0.5rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.nav-hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 240, 255, 0.05) 0%, transparent 70%),
                radial-gradient(ellipse at 20% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 50%),
                linear-gradient(180deg, rgba(10, 14, 26, 0.3) 0%, rgba(10, 14, 26, 0.8) 100%);
    z-index: 1;
}

.hex-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(30deg, rgba(0, 240, 255, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(0, 240, 255, 0.03) 87.5%),
        linear-gradient(150deg, rgba(0, 240, 255, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(0, 240, 255, 0.03) 87.5%),
        linear-gradient(30deg, rgba(0, 240, 255, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(0, 240, 255, 0.03) 87.5%),
        linear-gradient(150deg, rgba(0, 240, 255, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(0, 240, 255, 0.03) 87.5%);
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    opacity: 0.5;
    animation: hex-drift 20s linear infinite;
}

@keyframes hex-drift {
    0% { transform: translateY(0); }
    100% { transform: translateY(-140px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
}

.badge-diamond {
    font-size: 1rem;
    animation: spin-slow 4s linear infinite;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00f0ff 0%, #ffffff 50%, #00f0ff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
    text-shadow: none;
    position: relative;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Glitch effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00de;
    clip-path: inset(0 0 0 0);
    animation: glitch-1 2s infinite linear alternate-reverse;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, #ff00de, transparent);
    -webkit-background-clip: text;
    background-clip: text;
    opacity: 0.8;
}

.glitch::after {
    left: -2px;
    text-shadow: 2px 0 #00fff9;
    clip-path: inset(0 0 0 0);
    animation: glitch-2 2s infinite linear alternate-reverse;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, #00fff9, transparent);
    -webkit-background-clip: text;
    background-clip: text;
    opacity: 0.8;
}

@keyframes glitch-1 {
    0% { clip-path: inset(20% 0 60% 0); }
    20% { clip-path: inset(60% 0 1% 0); }
    40% { clip-path: inset(43% 0 1% 0); }
    60% { clip-path: inset(25% 0 58% 0); }
    80% { clip-path: inset(54% 0 7% 0); }
    100% { clip-path: inset(58% 0 43% 0); }
}

@keyframes glitch-2 {
    0% { clip-path: inset(65% 0 13% 0); }
    20% { clip-path: inset(15% 0 62% 0); }
    40% { clip-path: inset(57% 0 16% 0); }
    60% { clip-path: inset(8% 0 67% 0); }
    80% { clip-path: inset(37% 0 47% 0); }
    100% { clip-path: inset(12% 0 62% 0); }
}

.hero-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: var(--glow-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    border-radius: 50px;
    color: var(--bg-dark);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.4);
    color: var(--bg-dark);
}

.hero-cta:hover::before {
    transform: translateX(100%);
}

.pulse-btn {
    animation: btn-pulse 2s ease-in-out infinite;
}

@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(0, 240, 255, 0); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    animation: bounce-soft 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

@keyframes bounce-soft {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECTION SHARED STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== GOVERNOR SECTION ===== */
.governor-section {
    position: relative;
    padding: 8rem 0;
    z-index: 1;
    overflow: hidden;
}

.section-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.energy-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    opacity: 0.1;
    animation: ring-expand 8s ease-in-out infinite;
}

.ring-1 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: var(--primary);
    animation-delay: 0s;
}

.ring-2 {
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: var(--gold);
    animation-delay: 2s;
}

.ring-3 {
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: var(--accent);
    animation-delay: 4s;
}

@keyframes ring-expand {
    0%, 100% { opacity: 0.05; transform: translate(-50%, -50%) scale(0.8); }
    50% { opacity: 0.15; transform: translate(-50%, -50%) scale(1.1); }
}

.governor-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(26, 35, 50, 0.9));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
    padding: 4rem 3rem;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    transition: all 0.5s ease;
}

.governor-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: var(--glow-gold), inset 0 0 60px rgba(255, 215, 0, 0.02);
    transform: translateY(-5px);
}

.governor-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    animation: glow-rotate 10s linear infinite;
}

@keyframes glow-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.governor-frame {
    position: relative;
    width: 200px;
    height: 200px;
}

.frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--gold);
    border-style: solid;
}

.frame-corner.top-left {
    top: 0; left: 0;
    border-width: 2px 0 0 2px;
}

.frame-corner.top-right {
    top: 0; right: 0;
    border-width: 2px 2px 0 0;
}

.frame-corner.bottom-left {
    bottom: 0; left: 0;
    border-width: 0 0 2px 2px;
}

.frame-corner.bottom-right {
    bottom: 0; right: 0;
    border-width: 0 2px 2px 0;
}

.governor-avatar {
    position: absolute;
    inset: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
    background: conic-gradient(from 0deg, var(--gold), var(--primary), var(--accent), var(--gold)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: ring-spin 4s linear infinite;
}

@keyframes ring-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.avatar-inner {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
}

.crown-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.25rem;
    animation: crown-float 2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

@keyframes crown-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.avatar-initials {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.governor-info {
    text-align: center;
    position: relative;
    z-index: 1;
}

.governor-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.g-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nutz-badge {
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--gold);
}

.rank-badge {
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: var(--accent);
}

.server-badge {
    background: rgba(0, 240, 255, 0.15);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: var(--primary);
}

.governor-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.name-glow {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
}

.governor-title {
    font-size: 1.1rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.governor-quote {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border-left: 3px solid var(--gold);
}

.quote-icon {
    color: var(--gold);
    opacity: 0.5;
    font-size: 0.75rem;
    margin: 0 0.3rem;
}

.governor-traits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.trait {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.trait:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.3);
    color: var(--primary);
    transform: translateX(5px);
}

.trait i {
    color: var(--primary);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* ===== NAP SECTION ===== */
.nap-section {
    position: relative;
    padding: 8rem 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 240, 255, 0.02) 50%, transparent 100%);
}

.nap-rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.nap-rule-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 0.6s forwards;
}

.nap-rule-card:nth-child(1) { animation-delay: 0.1s; }
.nap-rule-card:nth-child(2) { animation-delay: 0.2s; }
.nap-rule-card:nth-child(3) { animation-delay: 0.3s; }
.nap-rule-card:nth-child(4) { animation-delay: 0.4s; }
.nap-rule-card:nth-child(5) { animation-delay: 0.5s; }
.nap-rule-card:nth-child(6) { animation-delay: 0.6s; }
.nap-rule-card:nth-child(7) { animation-delay: 0.7s; }

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nap-rule-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.rule-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
}

.rule-icon.blue {
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.rule-icon.green {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.rule-icon.purple {
    background: rgba(168, 85, 247, 0.1);
    color: var(--accent);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.rule-content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.rule-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Infractions Panel */
.infractions-panel {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(30, 20, 20, 0.95));
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.infractions-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold), #ef4444);
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.panel-header i {
    font-size: 1.5rem;
    color: #fbbf24;
    animation: warning-pulse 1.5s ease-in-out infinite;
}

@keyframes warning-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.panel-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.infraction-intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.infraction-intro strong {
    color: #ef4444;
    font-size: 1.1rem;
}

.infraction-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.infraction-levels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.infraction-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border: 1px solid;
    transition: all 0.3s ease;
}

.infraction-item:hover {
    transform: translateX(8px);
}

.infraction-item.level-1 {
    background: rgba(0, 240, 255, 0.05);
    border-color: rgba(0, 240, 255, 0.2);
}

.infraction-item.level-2 {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
}

.infraction-item.level-3 {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
}

.infraction-badge {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
}

.level-1 .infraction-badge {
    background: rgba(0, 240, 255, 0.15);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.level-2 .infraction-badge {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold);
    border: 2px solid var(--gold);
}

.level-3 .infraction-badge {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 2px solid #ef4444;
}

.infraction-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.infraction-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===== TIPS SECTION ===== */
.tips-section {
    position: relative;
    padding: 8rem 0;
    z-index: 1;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tip-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.tip-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.tip-card:hover::before {
    transform: scaleX(1);
}

.tip-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 14px;
    margin-bottom: 1.25rem;
    font-size: 1.3rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.tip-card:hover .tip-icon {
    background: rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
    transform: scale(1.1);
}

.tip-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.tip-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.tip-source {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.tip-source a {
    color: var(--primary);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.tip-source a:hover {
    opacity: 1;
}

/* ===== ALLIANCE SECTION ===== */
.alliance-section {
    position: relative;
    padding: 8rem 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(168, 85, 247, 0.02) 50%, transparent 100%);
}

.alliance-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.feature-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    font-size: 1.5rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(168, 85, 247, 0.2);
    box-shadow: var(--glow-accent);
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.alliance-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(0, 240, 255, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
}

.alliance-cta p {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.alliance-cta .cta-sub {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    z-index: 1;
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    background: rgba(10, 14, 26, 0.9);
}

.footer-content {
    text-align: center;
}

.footer-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.footer-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== ANIMATIONS ===== */
.animate-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { text-shadow: 0 0 5px rgba(0, 240, 255, 0.5); }
    50% { text-shadow: 0 0 20px rgba(0, 240, 255, 0.8), 0 0 40px rgba(0, 240, 255, 0.4); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 14, 26, 0.98);
        padding: 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-stats {
        flex-direction: row;
        gap: 2rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .governor-card {
        padding: 2.5rem 1.5rem;
    }

    .governor-traits {
        grid-template-columns: 1fr;
    }

    .nap-rules-grid {
        grid-template-columns: 1fr;
    }

    .infractions-panel {
        padding: 2rem 1.5rem;
    }

    .infraction-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .alliance-features {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 4rem;
    }

    .glitch::before,
    .glitch::after {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .glitch::before,
    .glitch::after {
        font-size: 3rem;
    }

    .governor-name {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* ===== REVEAL ON SCROLL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== DARK SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-dark), var(--accent));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary), var(--accent));
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-dark) var(--bg-dark);
}

/* ===== COUNTDOWN SECTION ===== */
.countdown-section {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.02) 0%, transparent 50%, rgba(0, 240, 255, 0.02) 100%);
}

.countdown-container {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 3rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.countdown-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--gold), var(--primary));
}

.countdown-event-name {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 2rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 50px;
}

.countdown-event-name i {
    animation: fire-flicker 1s ease-in-out infinite alternate;
}

@keyframes fire-flicker {
    from { opacity: 0.7; transform: scale(1); }
    to { opacity: 1; transform: scale(1.1); }
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.countdown-separator {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.5;
    animation: blink 1s step-end infinite;
    margin-top: -1.5rem;
}

@keyframes blink {
    50% { opacity: 0; }
}

.countdown-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ===== DISCORD BUTTON ===== */
.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
    background: #5865F2;
    border-radius: 50px;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.discord-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.discord-btn:hover {
    background: #4752C4;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
    color: #ffffff;
}

.discord-btn:hover::before {
    transform: translateX(100%);
}

.discord-btn i {
    font-size: 1.2rem;
}

/* ===== MOBILE PARTICLE OPTIMIZATION ===== */
@media (max-width: 768px) {
    #particles {
        opacity: 0.4;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-unit {
        min-width: 60px;
    }

    .countdown-separator {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    #particles {
        display: none;
    }

    .countdown-timer {
        gap: 0.25rem;
    }

    .countdown-number {
        font-size: 1.6rem;
    }

    .countdown-unit {
        min-width: 50px;
    }
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-diamond {
    font-size: 3rem;
    color: var(--primary);
    animation: loader-pulse 1s ease-in-out infinite;
    text-shadow: var(--glow-primary);
    margin-bottom: 1rem;
}

@keyframes loader-pulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

.loader-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin: 0 auto;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    animation: loader-fill 1.5s ease-in-out forwards;
}

@keyframes loader-fill {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ===== CURSOR TRAIL ===== */
.cursor-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 10px var(--primary), 0 0 20px rgba(0, 240, 255, 0.3);
    mix-blend-mode: screen;
}

.cursor-trail.visible {
    opacity: 0.6;
}

/* ===== SECTION DIVIDERS ===== */
.section-divider {
    position: relative;
    z-index: 1;
    margin: -2rem 0;
    line-height: 0;
    overflow: hidden;
}

.section-divider svg {
    width: 100%;
    height: 60px;
    display: block;
}

.section-divider.flip svg {
    transform: scaleX(-1);
}

/* ===== ALLIANCE ROSTER ===== */
.alliances-section {
    position: relative;
    padding: 8rem 0;
    z-index: 1;
}

.alliance-roster {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}

.roster-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.roster-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.roster-card:hover {
    background: var(--bg-card-hover);
    transform: translateX(5px);
    border-color: rgba(0, 240, 255, 0.3);
}

.roster-card:hover::before {
    opacity: 1;
}

/* Rank-specific accent colors */
.roster-card.rank-1 { border-left: 3px solid var(--gold); }
.roster-card.rank-1::before { background: var(--gold); opacity: 1; }
.roster-card.rank-1:hover { box-shadow: 0 5px 20px rgba(255, 215, 0, 0.15); }

.roster-card.rank-2 { border-left: 3px solid #c0c0c0; }
.roster-card.rank-2::before { background: #c0c0c0; opacity: 1; }

.roster-card.rank-3 { border-left: 3px solid #cd7f32; }
.roster-card.rank-3::before { background: #cd7f32; opacity: 1; }

.roster-rank {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    min-width: 35px;
}

.rank-1 .roster-rank { color: var(--gold); text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
.rank-2 .roster-rank { color: #c0c0c0; }
.rank-3 .roster-rank { color: #cd7f32; }

.roster-shield {
    flex-shrink: 0;
    width: 40px;
    height: 48px;
}

.shield-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.roster-card:hover .shield-svg {
    transform: scale(1.1);
}

.roster-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.roster-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    min-width: 140px;
}

.roster-tag {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    min-width: 50px;
}

.roster-power {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-left: auto;
}

.rank-1 .roster-power { color: var(--gold); }

.roster-badge {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.85rem;
}

.roster-badge.crown-holder {
    color: var(--gold);
    background: rgba(255, 215, 0, 0.15);
    animation: crown-float 2s ease-in-out infinite;
}

.roster-badge.silver {
    color: #c0c0c0;
    background: rgba(192, 192, 192, 0.15);
}

.roster-badge.bronze {
    color: #cd7f32;
    background: rgba(205, 127, 50, 0.15);
}

.roster-badge i {
    font-size: 0.85rem;
}

.roster-update-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

.roster-update-note i {
    margin-right: 0.5rem;
    color: var(--primary);
    opacity: 0.6;
}

/* ===== COMMUNITY SECTION (replaces old alliance section) ===== */
.community-section {
    position: relative;
    padding: 8rem 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(168, 85, 247, 0.02) 50%, transparent 100%);
}

.community-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.community-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), rgba(0, 240, 255, 0.05));
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 20px;
}

.community-cta p {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.community-cta .cta-sub {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ===== FOOTER LINKS ===== */
.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    background: #5865F2;
    border-color: #5865F2;
    color: white;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE: ROSTER ===== */
@media (max-width: 768px) {
    .roster-info {
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .roster-name {
        min-width: unset;
        font-size: 0.9rem;
    }

    .roster-tag {
        display: none;
    }

    .roster-power {
        font-size: 0.8rem;
    }

    .roster-card {
        padding: 1rem;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .roster-shield {
        width: 30px;
        height: 36px;
    }

    .roster-rank {
        font-size: 0.9rem;
        min-width: 28px;
    }
}

/* ===== VICKY BADGE ===== */
.vicky-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem 0.5rem 0.5rem;
    background: rgba(255, 64, 129, 0.1);
    border: 1px solid rgba(255, 64, 129, 0.3);
    border-radius: 50px;
    animation: vicky-bounce 2s ease-in-out infinite;
}

.vicky-emoji {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.vicky-badge:hover .vicky-emoji {
    transform: scale(1.2) rotate(-10deg);
}

.vicky-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ff4081;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 64, 129, 0.5);
}

@keyframes vicky-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
