/* ============================================
   WHISPER MEPHI - ИТОГИ 2025
   Gradient Mesh Style - Apple/Spotify inspired
   ============================================ */

/* CSS Variables - Telegram Dark Blue Theme */
:root {
    --bg-primary: #0e1621;
    --bg-secondary: #17212b;
    --bg-card: rgba(36, 47, 61, 0.5);
    --bg-card-hover: rgba(44, 58, 75, 0.7);

    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.45);

    /* Telegram-inspired colors */
    --color-orange: #ff6b35;
    --color-telegram: #2aabee;
    --color-purple: #9d4edd;
    --color-blue: #5ebbff;
    --color-cyan: #5eead4;
    --color-teal: #14b8a6;

    --gradient-main: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff8c5a 100%);
    --gradient-accent: linear-gradient(135deg, #2aabee 0%, #5ebbff 50%, #9d4edd 100%);
    --gradient-telegram: linear-gradient(135deg, #1e3a5f 0%, #2aabee 50%, #5ebbff 100%);

    --border-radius: 20px;
    --border-radius-lg: 32px;
    --border-radius-full: 9999px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    max-width: 100vw;
}

/* Particles Background */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* Gradient Mesh Background */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-primary);
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
    animation: mesh-float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: #1e3a5f;
    top: -200px;
    right: -150px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--color-purple);
    bottom: -150px;
    left: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--color-telegram);
    top: 40%;
    left: 30%;
    animation-delay: -14s;
    opacity: 0.35;
}

@keyframes mesh-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.95); }
    75% { transform: translate(-50px, -30px) scale(1.05); }
}

/* Fox Mascot */
.fox-mascot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    z-index: 1000;
    cursor: pointer;
    animation: mascot-float 4s ease-in-out infinite;
    transition: all var(--transition-medium);
}

.fox-mascot img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 107, 53, 0.5);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.4);
}

.fox-mascot:hover {
    transform: scale(1.15);
}

.fox-mascot:hover img {
    box-shadow: 0 0 60px rgba(255, 107, 53, 0.6);
}

.fox-mascot.excited {
    animation: mascot-excited 0.5s ease-in-out;
}

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

@keyframes mascot-excited {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(-10deg); }
    50% { transform: scale(1.1) rotate(10deg); }
    75% { transform: scale(1.15) rotate(-5deg); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(14, 22, 33, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 100vw;
    overflow: hidden;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-image {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-primary), var(--bg-primary)) padding-box,
                var(--gradient-main) border-box;
    transition: all var(--transition-medium);
}

.logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.4);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-year {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--text-secondary);
    padding: 10px 20px;
    background: var(--bg-card);
    border-radius: var(--border-radius-full);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.nav-year .fox-icon {
    font-size: 18px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 100px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.badge-fox {
    font-size: 20px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gradient-main);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-display);
    margin-bottom: 32px;
}

.title-line {
    display: block;
    font-size: clamp(48px, 10vw, 80px);
    font-weight: 300;
    letter-spacing: -2px;
    color: var(--text-secondary);
}

.title-year {
    display: block;
    font-size: clamp(80px, 18vw, 160px);
    font-weight: 800;
    letter-spacing: -4px;
    line-height: 1;
}

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

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

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 56px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-subtitle .fox-emoji {
    display: inline-block;
    animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-8deg); }
    75% { transform: rotate(8deg); }
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
}

.scroll-indicator svg {
    animation: bounce 2s ease-in-out infinite;
    color: var(--color-orange);
}

/* Animations */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}

.animate-fade-in { animation: fadeIn 1s ease forwards; }
.animate-slide-up { animation: slideUp 1s ease forwards; }
.animate-slide-up-delay { animation: slideUp 1s ease 0.2s forwards; opacity: 0; }
.animate-fade-in-delay { animation: fadeIn 1s ease 0.4s forwards; opacity: 0; }
.animate-bounce { animation: fadeIn 1s ease 0.6s forwards, bounce 2s ease-in-out 1.6s infinite; opacity: 0; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Highlights Section */
.highlights-section {
    padding: 140px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 6vw, 52px);
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.section-icon {
    font-size: 42px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.highlight-card {
    position: relative;
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-medium);
    cursor: default;
    backdrop-filter: blur(10px);
}

.highlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-lg);
    padding: 1px;
    background: var(--gradient-main);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.highlight-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-8px);
}

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

.card-glow {
    display: none;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.card-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.card-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    padding: 140px 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(42, 171, 238, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.stats-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

@media (max-width: 900px) {
    .stats-showcase { grid-template-columns: 1fr; gap: 60px; }
}

.stats-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fox-circle {
    position: relative;
    width: 300px;
    height: 300px;
}

.fox-circle-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
}

.ring-1 {
    inset: 0;
    border: 2px solid;
    border-image: var(--gradient-main) 1;
    border-radius: 50%;
    border-color: rgba(255, 107, 53, 0.3);
    animation: rotate 25s linear infinite;
}

.ring-2 {
    inset: 30px;
    border-color: rgba(42, 171, 238, 0.3);
    animation: rotate 20s linear infinite reverse;
}

.ring-3 {
    inset: 60px;
    border-color: rgba(157, 78, 221, 0.3);
    animation: rotate 30s linear infinite;
}

.fox-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.fox-center-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    background: linear-gradient(var(--bg-primary), var(--bg-primary)) padding-box,
                var(--gradient-main) border-box;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 0 50px rgba(255, 107, 53, 0.6); }
}

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

.stats-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 28px;
}

.stats-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.stats-bars {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.stat-bar { width: 100%; }

.bar-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.bar-label {
    font-size: 15px;
    color: var(--text-secondary);
}

.bar-value {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bar-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-full);
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--gradient-main);
    border-radius: var(--border-radius-full);
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Nicknames Section */
.nicknames-section {
    padding: 140px 0;
}

.nicknames-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 48px;
    margin-bottom: 40px;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    backdrop-filter: blur(10px);
}

.nickname-tag {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-medium);
    white-space: nowrap;
}

.nickname-tag:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-orange);
    color: var(--text-primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.nickname-tag.clicked {
    animation: tag-pop 0.4s ease;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(131, 56, 236, 0.15));
    border-color: var(--color-orange);
}

@keyframes tag-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.12); }
    100% { transform: translateY(-4px); }
}

.nickname-tag:nth-child(3n) { font-size: 15px; padding: 12px 22px; }
.nickname-tag:nth-child(5n) { font-size: 13px; padding: 8px 16px; }
.nickname-tag:nth-child(7n) { font-size: 16px; padding: 12px 24px; }

.nickname-tag:nth-child(4n) { border-color: rgba(131, 56, 236, 0.3); }
.nickname-tag:nth-child(4n):hover { border-color: var(--color-purple); box-shadow: 0 10px 30px rgba(131, 56, 236, 0.2); }
.nickname-tag:nth-child(6n) { border-color: rgba(255, 0, 110, 0.3); }
.nickname-tag:nth-child(6n):hover { border-color: var(--color-pink); box-shadow: 0 10px 30px rgba(255, 0, 110, 0.2); }

.easter-egg-hint {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .nicknames-cloud { padding: 24px; gap: 8px; }
    .nickname-tag { font-size: 12px; padding: 8px 14px; }
    .nickname-tag:nth-child(3n), .nickname-tag:nth-child(5n), .nickname-tag:nth-child(7n) {
        font-size: 12px; padding: 8px 14px;
    }
}

/* Lovester Section */
.lovester-section {
    padding: 140px 0;
}

.lovester-card {
    position: relative;
    padding: 64px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    text-align: center;
    backdrop-filter: blur(10px);
}

.lovester-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-lg);
    padding: 1px;
    background: var(--gradient-main);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.lovester-foxes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-fox {
    position: absolute;
    font-size: 24px;
    animation: float-element 6s ease-in-out infinite;
}

.f1 { top: 15%; left: 8%; animation-delay: 0s; }
.f2 { top: 25%; right: 12%; animation-delay: -1.5s; }
.f3 { bottom: 20%; left: 15%; animation-delay: -3s; }
.f4 { bottom: 15%; right: 8%; animation-delay: -4.5s; }

@keyframes float-element {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(-20px); opacity: 0.7; }
}

.lovester-content { position: relative; z-index: 1; }

.lovester-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-main);
    color: white;
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--border-radius-full);
    margin-bottom: 24px;
}

.lovester-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 8vw, 64px);
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.lovester-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.lovester-description {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 28px;
    line-height: 1.8;
}

.lovester-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--border-radius-full);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-orange);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

/* New Year Section */
.new-year-section {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.mystery-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.mystery-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: float-particle 10s ease-in-out infinite;
}

.p1 { top: 15%; left: 15%; background: var(--color-orange); animation-delay: 0s; }
.p2 { top: 25%; right: 20%; background: var(--color-purple); animation-delay: -2.5s; }
.p3 { top: 10%; left: 55%; background: var(--color-pink); animation-delay: -5s; }
.p4 { bottom: 30%; left: 10%; background: var(--color-cyan); animation-delay: -7.5s; }

@keyframes float-particle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
    50% { transform: translateY(-40px) scale(1.5); opacity: 0.8; }
}

.new-year-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.countdown-wrapper { margin-bottom: 48px; }

.countdown-label {
    display: block;
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.year-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.year-old {
    font-family: var(--font-display);
    font-size: clamp(48px, 10vw, 80px);
    font-weight: 700;
    color: var(--text-muted);
}

.year-arrow {
    font-size: 32px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.year-new {
    font-family: var(--font-display);
    font-size: clamp(48px, 10vw, 80px);
    font-weight: 800;
}

.glow-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.5));
}

.new-year-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.2;
}

.new-year-message {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 28px;
    line-height: 1.8;
}

.new-year-message.freshman-wish {
    background: var(--bg-card);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--border-radius);
    padding: 24px 32px;
    margin-bottom: 48px;
    font-size: 17px;
    backdrop-filter: blur(10px);
}

.confetti-button-wrapper { margin-bottom: 56px; }

.confetti-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-primary);
    color: white;
    background: var(--gradient-main);
    border: none;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: all var(--transition-medium);
    box-shadow: 0 4px 30px rgba(255, 107, 53, 0.4);
}

.confetti-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 40px rgba(255, 107, 53, 0.5);
}

.wishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.wish-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius);
    transition: all var(--transition-medium);
    backdrop-filter: blur(10px);
}

.wish-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-4px);
}

.wish-emoji { font-size: 28px; }
.wish-text { font-size: 15px; font-weight: 500; }

/* Footer */
.footer {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 16px;
}

.footer-logo .logo-image { width: 40px; height: 40px; }
.footer-logo .logo-text { font-size: 20px; }

.footer-tagline {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-admins {
    font-size: 15px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.footer-year {
    font-size: 14px;
    color: var(--text-muted);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(14, 22, 33, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    position: relative;
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--bg-card-hover);
    color: var(--color-orange);
}

.modal-emoji { font-size: 64px; margin-bottom: 20px; display: block; }
.modal-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.modal-status { font-size: 15px; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 18px; }
.modal-message { font-size: 15px; color: var(--text-secondary); }

/* Fox Speech Bubble */
.fox-speech {
    position: fixed;
    bottom: 110px;
    right: 30px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--border-radius);
    padding: 14px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 220px;
    z-index: 999;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-medium);
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.fox-speech.visible { opacity: 1; transform: translateY(0); }

.fox-speech::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--bg-secondary);
}

/* Confetti */
#confetti-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    animation: confetti-fall linear forwards;
}

@keyframes confetti-fall {
    0% { transform: translateY(-10px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* Paw Prints */
.paw-prints {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.paw-print {
    position: absolute;
    font-size: 22px;
    opacity: 0;
    animation: paw-appear 3s ease-out forwards;
}

@keyframes paw-appear {
    0% { opacity: 0; transform: scale(0); }
    20% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0; transform: scale(1) translateY(-60px); }
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .container { padding: 0 20px; }
    .stats-showcase { gap: 60px; }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 14px 16px;
    }
    .logo-image {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
    .logo-text {
        font-size: 18px;
    }
    .nav-year {
        padding: 6px 12px;
        font-size: 11px;
        flex-shrink: 0;
    }
    .nav-logo {
        min-width: 0;
        flex-shrink: 1;
    }
    .logo-text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Hero */
    .hero {
        padding: 100px 16px 60px;
        min-height: auto;
    }
    .badge {
        padding: 10px 16px;
        font-size: 12px;
        gap: 8px;
        margin-bottom: 24px;
    }
    .title-line {
        font-size: 36px;
        letter-spacing: -1px;
    }
    .title-year {
        font-size: 72px;
        letter-spacing: -2px;
    }
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 36px;
        padding: 0 10px;
    }
    .hero-stats {
        gap: 20px;
        flex-direction: column;
    }
    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .stat-number {
        font-size: 36px;
    }
    .stat-plus {
        font-size: 24px;
    }
    .stat-label {
        font-size: 12px;
        letter-spacing: 1px;
    }
    .stat-divider {
        display: none;
    }
    .scroll-indicator {
        margin-top: 40px;
    }

    /* Fox Mascot */
    .fox-mascot {
        width: 50px;
        height: 50px;
        bottom: 16px;
        right: 16px;
    }
    .fox-mascot img {
        border-width: 2px;
    }
    .fox-speech {
        right: 12px;
        bottom: 80px;
        max-width: 160px;
        font-size: 12px;
        padding: 10px 14px;
    }

    /* Sections */
    .highlights-section,
    .stats-section,
    .nicknames-section,
    .lovester-section,
    .new-year-section {
        padding: 60px 0;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 40px;
    }
    .section-title {
        font-size: 24px;
        gap: 12px;
        flex-wrap: wrap;
    }
    .section-icon {
        font-size: 28px;
    }
    .section-subtitle {
        font-size: 15px;
        padding: 0 10px;
    }

    /* Highlights Grid */
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .highlight-card {
        padding: 24px;
        border-radius: 20px;
    }
    .card-icon {
        font-size: 36px;
        margin-bottom: 16px;
    }
    .card-title {
        font-size: 18px;
    }
    .card-description {
        font-size: 14px;
    }

    /* Stats Section */
    .stats-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .fox-circle {
        width: 200px;
        height: 200px;
    }
    .ring-2 { inset: 20px; }
    .ring-3 { inset: 40px; }
    .fox-center-image {
        width: 80px;
        height: 80px;
    }
    .stats-title {
        font-size: 28px;
        text-align: center;
    }
    .stats-description {
        font-size: 15px;
        text-align: center;
        margin-bottom: 32px;
    }
    .stats-bars {
        gap: 20px;
    }
    .bar-label, .bar-value {
        font-size: 13px;
    }

    /* Nicknames */
    .nicknames-cloud {
        padding: 20px;
        gap: 8px;
        border-radius: 20px;
    }
    .nickname-tag {
        font-size: 11px;
        padding: 6px 12px;
    }
    .nickname-tag:nth-child(3n),
    .nickname-tag:nth-child(5n),
    .nickname-tag:nth-child(7n) {
        font-size: 11px;
        padding: 6px 12px;
    }
    .easter-egg-hint {
        font-size: 12px;
    }

    /* Lovester */
    .lovester-card {
        padding: 32px 20px;
        border-radius: 24px;
    }
    .lovester-badge {
        font-size: 11px;
        padding: 6px 14px;
    }
    .lovester-title {
        font-size: 32px;
    }
    .lovester-subtitle {
        font-size: 16px;
    }
    .lovester-description {
        font-size: 14px;
    }
    .lovester-status {
        font-size: 13px;
        padding: 10px 18px;
    }
    .floating-fox {
        font-size: 18px;
    }

    /* New Year */
    .countdown-wrapper {
        margin-bottom: 32px;
    }
    .countdown-label {
        font-size: 12px;
        letter-spacing: 2px;
    }
    .year-display {
        flex-direction: column;
        gap: 12px;
    }
    .year-old, .year-new {
        font-size: 48px;
    }
    .year-arrow {
        transform: rotate(90deg);
        font-size: 24px;
    }
    .new-year-title {
        font-size: 26px;
        padding: 0 10px;
    }
    .new-year-message {
        font-size: 15px;
        padding: 0 10px;
    }
    .new-year-message.freshman-wish {
        padding: 18px 20px;
        font-size: 14px;
        margin: 0 10px 32px;
    }
    .confetti-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
    .wishes-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 10px;
    }
    .wish-card {
        padding: 16px 18px;
        border-radius: 16px;
    }
    .wish-emoji {
        font-size: 24px;
    }
    .wish-text {
        font-size: 14px;
    }

    /* Footer */
    .footer {
        padding: 50px 0;
    }
    .footer-logo .logo-image {
        width: 36px;
        height: 36px;
    }
    .footer-logo .logo-text {
        font-size: 18px;
    }
    .footer-tagline {
        font-size: 13px;
    }
    .footer-admins {
        font-size: 13px;
    }
    .footer-year {
        font-size: 12px;
    }

    /* Modal */
    .modal-content {
        padding: 36px 24px;
        margin: 16px;
        border-radius: 24px;
    }
    .modal-emoji {
        font-size: 48px;
    }
    .modal-title {
        font-size: 20px;
    }
    .modal-status, .modal-message {
        font-size: 13px;
    }

    /* Background orbs - smaller on mobile */
    .orb-1 {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -100px;
    }
    .orb-2 {
        width: 250px;
        height: 250px;
        bottom: -80px;
        left: -80px;
    }
    .orb-3 {
        width: 200px;
        height: 200px;
        opacity: 0.3;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 380px) {
    .title-line { font-size: 28px; }
    .title-year { font-size: 56px; }
    .hero-subtitle { font-size: 14px; }
    .stat-number { font-size: 32px; }
    .section-title { font-size: 22px; }
    .new-year-title { font-size: 22px; }
    .lovester-title { font-size: 28px; }
    .year-old, .year-new { font-size: 40px; }
}

/* Scroll Animations */
[data-aos="fade-up"] { opacity: 0; transform: translateY(40px); transition: all 0.6s ease; }
[data-aos="fade-up"].aos-animate { opacity: 1; transform: translateY(0); }
