/* ======================================== HEADER STYLES ======================================== */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --border-color: #e0e0e0;
    --accent-color: #4285F4;
    --hover-bg: #f0f0f0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #404040;
    --accent-color: #6fa8ff;
    --hover-bg: #363636;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.3);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Google Sans', 'Segoe UI', sans-serif;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: var(--transition);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

/* Brand */
.nav-brand {
    flex-shrink: 0;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.brand-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-color);
}

.brand-text {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #4285F4, #34A853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    background: var(--hover-bg);
    color: var(--text-primary);
}

.nav-link.active {
    background: var(--accent-color);
    color: white;
}

.nav-link i {
    font-size: 18px;
}

/* Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 18px;
}

.action-btn:hover {
    background: var(--hover-bg);
    color: var(--text-primary);
}

.badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #EA4335;
    color: white;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.profile-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-placeholder {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--hover-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

/* Dropdowns */
.notification-wrapper,
.profile-wrapper {
    position: relative;
}

.notification-dropdown,
.profile-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 360px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1001;
}

.notification-dropdown.show,
.profile-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-header h3 {
    font-size: 16px;
    font-weight: 600;
}

.mark-read-btn {
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 14px;
    cursor: pointer;
}

.dropdown-body {
    max-height: 400px;
    overflow-y: auto;
}

.notification-item {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    transition: var(--transition);
    cursor: pointer;
}

.notification-item:hover {
    background: var(--hover-bg);
}

.notification-item.unread {
    background: rgba(66, 133, 244, 0.05);
}

.notif-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.notif-content {
    flex: 1;
}

.notif-message {
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.notif-time {
    font-size: 12px;
    color: var(--text-secondary);
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: var(--text-secondary);
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 16px;
}

/* Profile Dropdown */
.profile-dropdown {
    width: 280px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
}

.profile-avatar-lg {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.profile-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 4px 0;
}

.dropdown-menu {
    padding: 4px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--hover-bg);
}

.dropdown-item.logout {
    color: #EA4335;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: 16px;
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 16px;
    transition: var(--transition);
}

.mobile-link:hover {
    background: var(--hover-bg);
}

.mobile-link.active {
    background: var(--accent-color);
    color: white;
}

/* Main Content */
.main-content {
    margin-top: 64px;
    min-height: calc(100vh - 64px);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu.show {
        display: block;
    }
    
    .nav-link span {
        display: none;
    }
}

/* ======================================== HOME STYLES ======================================== */
.home-page {
    margin-top: -64px;
}

/* Hero Section */
.hero {
    background: var(--bg-primary);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(66,133,244,0.05), transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(66,133,244,0.1);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: white;
    box-shadow: 0 4px 15px rgba(66,133,244,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66,133,244,0.4);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: 5%;
    animation-delay: 2s;
}

.card-3 {
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

.floating-card .card-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.floating-card .card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.floating-card .card-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-color);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-primary);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    padding: 32px;
    background: var(--bg-secondary);
    border-radius: 16px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.step-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 16px;
    margin-top: 8px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-arrow {
    font-size: 24px;
    color: var(--accent-color);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: white;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta .btn-primary {
    background: white;
    color: #4285F4;
}

.cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta .btn-secondary:hover {
    background: white;
    color: #4285F4;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
}

/* ======================================== CALCULATOR STYLES ======================================== */
.calculator-page {
    padding: 40px 0;
    background: var(--bg-secondary);
    min-height: 100vh;
}

.calculator-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Info Bar */
.info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.info-item span span {
    font-weight: 600;
    color: var(--text-primary);
}

/* Calculator Header */
.calculator-header {
    margin-bottom: 24px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-wrapper {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(66,133,244,0.1);
    border-radius: 16px;
}

.header-left h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border: 1px solid;
}

.alert i {
    font-size: 18px;
    margin-top: 2px;
}

.alert p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.alert-info {
    background: rgba(66,133,244,0.05);
    border-color: rgba(66,133,244,0.2);
    color: #4285F4;
}

.alert-warning {
    background: rgba(251,188,5,0.05);
    border-color: rgba(251,188,5,0.2);
    color: #F9A825;
}

.alert-warning a {
    color: #4285F4;
    font-weight: 600;
    text-decoration: none;
}

.alert-warning a:hover {
    text-decoration: underline;
}

.alert-error {
    background: rgba(234,67,53,0.05);
    border-color: rgba(234,67,53,0.2);
    color: #EA4335;
    flex-direction: column;
}

.alert-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    margin-bottom: 8px;
}

.alert-help {
    margin-top: 12px;
}

.alert-help ul {
    list-style: none;
    padding: 0;
    margin-top: 8px;
}

.alert-help li {
    padding: 4px 0;
    font-size: 14px;
}

.alert-help li i {
    color: #34A853;
    margin-right: 8px;
}

/* Calculator Card */
.calculator-card {
    background: var(--bg-primary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.card-header {
    margin-bottom: 24px;
}

.card-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-header h2 i {
    color: var(--accent-color);
}

/* Season Progress */
.season-progress {
    margin-bottom: 32px;
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.season-dates {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 16px;
}

.date-box {
    padding: 12px 16px;
    background: var(--bg-primary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    min-width: 140px;
}

.date-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.progress-wrapper {
    flex: 1;
    position: relative;
    padding: 20px 0;
}

.progress-bar {
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4285F4, #34A853);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-indicator {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    background: #4285F4;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
}

.status-badge.active {
    background: rgba(66,133,244,0.1);
    color: #4285F4;
}

.status-badge.completed {
    background: rgba(52,168,83,0.1);
    color: #34A853;
}

/* Search Form */
.search-form {
    margin-top: 24px;
}

.input-group {
    display: flex;
    gap: 12px;
}

.input-wrapper {
    flex: 1;
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 16px;
}

.form-input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(66,133,244,0.1);
}

.form-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.btn-calculate {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-calculate:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(66,133,244,0.3);
}

.form-help {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* How to Use Card */
.how-to-card {
    background: var(--bg-primary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 32px;
    margin-bottom: 24px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
}

.step-number-d {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.step-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.step-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.step-content a:hover {
    text-decoration: underline;
}

.step-divider {
    height: 1px;
    background: var(--border-color);
    margin-left: 40px;
}

/* Profile Card */
.profile-card {
    background: var(--bg-primary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 24px;
    margin-bottom: 24px;
}

.profile-header-d {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-color);
    flex-shrink: 0;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.profile-member {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.profile-league {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(251,188,5,0.1);
    border-radius: 12px;
    border: 1px solid rgba(251,188,5,0.2);
}

.league-img {
    width: 40px;
    height: auto;
}

.league-name {
    font-size: 14px;
    color: var(--text-secondary);
}

.league-points {
    font-size: 20px;
    font-weight: 700;
    color: #FBBC05;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.stat-card {
    background: var(--bg-primary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 24px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.stat-card.highlight {
    border-color: rgba(251,188,5,0.3);
    background: linear-gradient(135deg, rgba(251,188,5,0.02), rgba(251,188,5,0.05));
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.stat-label-d {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.stat-value-d {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-value-large {
    font-size: 36px;
    font-weight: 700;
    color: #FBBC05;
}

.points-star {
    font-size: 24px;
    margin-right: 4px;
}

.stat-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-bonus {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-secondary);
}

.bonus-star {
    color: #FBBC05;
    margin-right: 4px;
}

.stat-breakdown {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breakdown-icon {
    font-size: 16px;
}

.breakdown-label {
    color: var(--text-secondary);
    flex: 1;
}

.breakdown-value {
    font-weight: 600;
    color: var(--text-primary);
}

.points-bar-wrapper {
    margin-top: 16px;
}

.points-bar {
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.points-fill {
    height: 100%;
    background: linear-gradient(90deg, #FBBC05, #F9A825);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.points-label {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Section Card */
.section-card {
    background: var(--bg-primary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 32px;
    margin-bottom: 24px;
}

.section-header-d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-header-d h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header-d h2 i {
    color: var(--accent-color);
}

.section-actions {
    display: flex;
    gap: 12px;
}

.filter-select {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    outline: none;
}

.filter-select:focus {
    border-color: var(--accent-color);
}

/* Milestones Grid */
.milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.milestone-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.milestone-card.completed {
    border-color: rgba(52,168,83,0.3);
    background: rgba(52,168,83,0.02);
}

.milestone-card.active {
    border-color: rgba(66,133,244,0.3);
    background: rgba(66,133,244,0.02);
}

.milestone-card.upcoming {
    opacity: 0.6;
}

.milestone-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.milestone-badge {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.milestone-title-group h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.milestone-badge-text {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 100px;
}

.milestone-badge-text.completed {
    background: rgba(52,168,83,0.1);
    color: #34A853;
}

.milestone-badge-text.active {
    background: rgba(66,133,244,0.1);
    color: #4285F4;
}

.milestone-progress {
    margin-bottom: 20px;
}

.progress-item {
    margin-bottom: 12px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 13px;
}

.progress-value {
    font-weight: 600;
    color: var(--text-primary);
}

.progress-value.done {
    color: #34A853;
}

.mini-progress {
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
}

.mini-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.milestone-reward {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(251,188,5,0.05);
    border-left: 3px solid #FBBC05;
    border-radius: 0 8px 8px 0;
}

.reward-icon {
    font-size: 24px;
}

.reward-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.reward-value {
    font-size: 16px;
    font-weight: 700;
    color: #FBBC05;
}

/* Tier Progress */
.tier-progress-container {
    position: relative;
}

.tier-bar-container {
    padding: 40px 0;
    position: relative;
}

.tier-track {
    position: relative;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    margin: 0 20px;
}

.tier-fill-bar {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, #4285F4, #34A853, #FBBC05, #EA4335);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.tier-marker {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.tier-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 3px solid var(--bg-primary);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.tier-dot.active {
    transform: scale(1.2);
    box-shadow: var(--shadow-md);
}

.tier-label-group {
    text-align: center;
    margin-top: 40px;
}

.tier-name-text {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.tier-name-text.active {
    font-weight: 700;
}

.tier-point-text {
    font-size: 11px;
    color: var(--text-secondary);
    white-space: nowrap;
}

/* Next Tier Card */
.next-tier-card {
    margin-top: 24px;
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.next-tier-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.next-tier-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.next-tier-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.next-tier-name {
    font-size: 18px;
    font-weight: 700;
}

.next-tier-progress {
    margin-top: 16px;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.progress-text strong {
    color: var(--accent-color);
}

.almost-there {
    margin-top: 16px;
    padding: 12px;
    background: rgba(251,188,5,0.1);
    border-radius: 8px;
    color: #F9A825;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.max-tier-reached {
    text-align: center;
    padding: 40px 20px;
}

.max-tier-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.max-tier-reached h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.max-tier-reached p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Badges Table */
.badges-table-wrapper {
    overflow-x: auto;
}

.badges-table {
    width: 100%;
    border-collapse: collapse;
}

.badges-table thead {
    background: var(--bg-secondary);
}

.badges-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border-color);
}

.badges-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.badges-table tbody tr {
    transition: all 0.2s ease;
}

.badges-table tbody tr:hover {
    background: var(--hover-bg);
}

.badge-name-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-icon {
    font-size: 18px;
}

.challenge-labs {
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    background-color: #1a73e8;
    color: #ffff;
    transition: background-color 0.2s ease;
}

.category-tag {
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.category-tag.badge-baseCamp {
    background: rgba(66,133,244,0.1);
    color: #4285F4;
}

.category-tag.badge-adventure {
    background: rgba(234,67,53,0.1);
    color: #EA4335;
}

.category-tag.badge-voyage {
    background: rgba(52,168,83,0.1);
    color: #34A853;
}

.category-tag.badge-trail {
    background: rgba(96,125,139,0.1);
    color: #607D8B;
}

.category-tag.badge-special {
    background: rgba(251,188,5,0.1);
    color: #F9A825;
}

.category-tag.badge-new {
    background: rgba(0,188,212,0.1);
    color: #00BCD4;
}

.category-tag.badge-skill {
    background: rgba(156,39,176,0.1);
    color: #9C27B0;
}

.points-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    color: #FBBC05;
}

.points-badge i {
    font-size: 12px;
}

.detail-row td {
  padding: 0;
  border-top: none;
}

.box-wrapper {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}

.box-konten {
  background-color: var(--bg-primary);
  padding: 20px;
  box-shadow: var(--shadow-lg);
}

.detail-info {
  margin-bottom: 15px;
}

.detail-info p {
  margin: 6px 0;
  font-size: 14px;
  color: var(--text-primary);
}

.btn-arcade {
  display: inline-block;
  background-color: #1a73e8;
  color: #ffff !important;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.btn-arcade:hover {
  background-color: #1557b0;
}

.btn-arcade i {
  font-size: 12px;
  margin-left: 4px;
}

/* GitHub CTA */
.github-cta {
    background: var(--bg-primary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 24px;
    margin-bottom: 24px;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.cta-text p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.btn-github {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #24292e;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-github:hover {
    background: #1a1f24;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .calculator-page {
        padding: 20px 0;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .btn-calculate {
        width: 100%;
        justify-content: center;
    }
    
    .season-dates {
        flex-direction: column;
        align-items: stretch;
    }
    
    .progress-wrapper {
        padding: 10px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .milestones-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-header-d {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-league {
        width: 100%;
        justify-content: center;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-github {
        width: 100%;
        justify-content: center;
    }
    
    .section-header-d {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ======================================== LEADERBOARD STYLES ======================================== */
.leaderboard-page {
    padding: 40px 0;
    background: var(--bg-secondary);
    min-height: 100vh;
}

.leaderboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.leaderboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.trophy-icon {
    color: #FBBC05;
    font-size: 36px;
}

.page-description {
    font-size: 16px;
    color: var(--text-secondary);
}

.custom-select {
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    outline: none;
}

.custom-select:focus {
    border-color: var(--accent-color);
}

/* Podium */
.podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 64px;
    padding: 40px 0;
    background: var(--bg-primary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.podium-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.podium-card {
    text-align: center;
    padding: 24px;
}

.podium-badge {
    font-size: 32px;
    margin-bottom: 12px;
}

.podium-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    overflow: hidden;
    border: 3px solid var(--accent-color);
}

.podium-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder-l {
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
}

.podium-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.podium-points {
    font-size: 24px;
    font-weight: 700;
    color: #FBBC05;
    margin-bottom: 4px;
}

.podium-tier {
    font-size: 14px;
    color: var(--text-secondary);
}

.podium-bar {
    width: 80px;
    background: linear-gradient(180deg, var(--accent-color), #8AB4F8);
    border-radius: 8px 8px 0 0;
}

/* Table */
.leaderboard-table-container {
    background: var(--bg-primary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 48px;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
}

.table-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.search-box {
    position: relative;
}

.search-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.search-box input {
    padding: 10px 12px 10px 36px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 14px;
    width: 250px;
    outline: none;
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--accent-color);
}

.table-wrapper {
    overflow-x: auto;
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
}

.leaderboard-table thead {
    background: var(--bg-secondary);
}

.leaderboard-table th {
    padding: 12px 24px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leaderboard-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
}

.leaderboard-table tbody tr {
    transition: var(--transition);
}

.leaderboard-table tbody tr:hover {
    background: var(--hover-bg);
}

.leaderboard-table tbody tr.top-three {
    background: rgba(66,133,244,0.02);
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    font-size: 16px;
}

.rank-1 { color: #FBBC05; }
.rank-2 { color: #9E9E9E; }
.rank-3 { color: #CD7F32; }

.player-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.player-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.player-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-details {
    display: flex;
    flex-direction: column;
}

.player-name {
    font-weight: 600;
    color: var(--text-primary);
}

.player-username {
    font-size: 13px;
    color: var(--text-secondary);
}

.points-value {
    font-weight: 700;
    color: var(--text-primary);
}

.tier-badge {
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
}

.badges-count {
    color: var(--text-secondary);
}

.trend {
    font-weight: 600;
    font-size: 14px;
}

.trend.up { color: #34A853; }
.trend.down { color: #EA4335; }
.trend.stable { color: var(--text-secondary); }

/* Stats Summary */
.stats-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.stat-card-l {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon-l {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(66,133,244,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-color);
}

.stat-label-l {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.stat-value-l {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .podium {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    
    .podium-item {
        width: 100%;
        max-width: 300px;
    }
    
    .table-header {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .leaderboard-table th:nth-child(5),
    .leaderboard-table td:nth-child(5),
    .leaderboard-table th:nth-child(6),
    .leaderboard-table td:nth-child(6) {
        display: none;
    }
}

/* ======================================== FOOTER STYLES ======================================== */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 0;
    margin-top: 80px;
    transition: var(--transition);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo {
    width: 32px;
    height: 32px;
    color: var(--accent-color);
}

.footer-brand h3 {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #4285F4, #34A853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}

.social-link:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 4px;
}

.footer-links i {
    width: 16px;
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-info p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 4px;
}

.footer-disclaimer {
    font-size: 12px !important;
    max-width: 600px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--accent-color);
}

.separator {
    color: var(--border-color);
}

/* Footer Love */
.footer-love {
    text-align: center;
    padding: 24px 0;
    color: var(--text-secondary);
    font-size: 14px;
    border-top: 1px solid var(--border-color);
}

.footer-love .heart {
    color: #EA4335;
    margin: 0 4px;
    animation: heartbeat 1.5s ease infinite;
}

.creator-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.creator-link:hover {
    text-decoration: underline;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}