/* ===== CSS VARIABLES & DESIGN TOKENS ===== */
:root {
    /* Colors */
    --primary: #ff6b1a;
    --primary-dark: #e55a0c;
    --primary-light: #ff8a4c;

    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-card-light: #f5f5f5;
    --bg-card-hover: #222222;

    --text-primary: #ffffff;
    --text-secondary: #888888;
    --text-muted: #555555;
    --text-dark: #1a1a1a;

    --discord-color: #5865F2;
    --youtube-color: #FF0000;
    --twitch-color: #9146FF;

    --border-color: rgba(255, 255, 255, 0.08);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.5;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== BACKGROUND ===== */
.background-noise {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255, 107, 26, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 107, 26, 0.05) 0%, transparent 40%),
        var(--bg-dark);
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

/* ===== HEADER ===== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

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

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.share-btn:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

/* ===== PROFILE CARD ===== */
.profile-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl) var(--space-lg);
    background: linear-gradient(145deg, rgba(25, 25, 30, 0.98) 0%, rgba(15, 15, 18, 0.99) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 26, 0.15);
    border-radius: var(--radius-xl);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 107, 26, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 107, 26, 0.5) 0%, transparent 40%, transparent 60%, rgba(255, 107, 26, 0.2) 100%);
    -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;
    pointer-events: none;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.profile-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 107, 26, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.profile-card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(255, 107, 26, 0.3);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(255, 107, 26, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.profile-avatar {
    position: relative;
    flex-shrink: 0;
    z-index: 1;
}

.profile-avatar::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: calc(var(--radius-lg) + 4px);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, transparent 100%);
    opacity: 0.8;
    animation: avatarGlow 2s ease-in-out infinite;
}

@keyframes avatarGlow {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

.profile-avatar img {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    object-position: center top;
    border: 3px solid rgba(20, 20, 20, 1);
    box-shadow: 0 4px 20px rgba(255, 107, 26, 0.3);
    z-index: 1;
}

.profile-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.profile-name {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.profile-name .accent {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(255, 107, 26, 0.5);
}

.profile-tagline {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

.profile-stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-xs);
}

.stats-row {
    display: flex;
    gap: var(--space-lg);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 100px;
}

.stat-value {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.stat-icon {
    color: var(--primary);
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(255, 107, 26, 0.4));
}

.stat-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0.01em;
    padding-left: 20px;
}

.profile-schedule {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.stat-highlight .stat-value {
    color: var(--primary);
    font-size: 0.8rem;
}

.stat-highlight .stat-label {
    color: var(--primary-light);
    font-size: 0.55rem;
}

/* ===== FEATURED BANNER ===== */
.featured-banner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, #ff6b1a 0%, #e55a0c 50%, #c44808 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 20px rgba(255, 107, 26, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.featured-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    pointer-events: none;
}

.featured-banner:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow:
        0 12px 40px rgba(255, 107, 26, 0.4),
        0 4px 12px rgba(255, 107, 26, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

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

.banner-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(0, 0, 0, 0.85);
    margin-bottom: var(--space-xs);
}

.text-dark {
    color: rgba(0, 0, 0, 0.9);
}

.text-youtube {
    color: #FF0000;
    font-weight: 600;
}

.text-twitch {
    color: #9146FF;
    font-weight: 600;
}

.text-white {
    color: #ffffff;
    font-weight: 600;
}

.banner-title {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
}

.banner-logo {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
    transition: all var(--transition-base);
}

.banner-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-banner:hover .banner-logo {
    transform: translateY(-50%) scale(1.08);
}

.banner-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 16px;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 20px;
    z-index: 10;
    white-space: nowrap;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.banner-subtitle {
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.7);
    margin-top: 4px;
    font-weight: 500;
}

.banner-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    border-radius: var(--radius-lg);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.banner-cta svg {
    transition: transform 0.3s ease;
}

.featured-banner:hover .banner-cta {
    background: rgba(0, 0, 0, 0.95);
    transform: scale(1.05);
}

.featured-banner:hover .banner-cta svg {
    transform: translateX(4px);
}

.banner-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    animation: bannerShine 3s ease-in-out infinite;
}

@keyframes bannerShine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 150%;
    }
}

.banner-bg-pattern {
    position: absolute;
    top: 0;
    right: -20px;
    bottom: 0;
    width: 200px;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30L30 0z' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E") repeat;
    opacity: 0.5;
}

/* ===== LINK CARD ===== */
.link-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8) 0%, rgba(22, 22, 22, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.link-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.5s ease;
}

.link-card:hover {
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.9) 0%, rgba(30, 30, 30, 0.95) 100%);
    transform: translateY(-2px) translateX(4px);
    border-color: rgba(255, 107, 26, 0.2);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 107, 26, 0.1);
}

.link-card:hover::after {
    left: 100%;
}

.link-card-light {
    background: linear-gradient(135deg, #ff6b1a 0%, #e55a0c 100%);
    border: none;
    box-shadow:
        0 4px 16px rgba(255, 107, 26, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.link-card-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 100%);
    pointer-events: none;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.link-card-light:hover {
    background: linear-gradient(135deg, #ff7a33 0%, #e55a0c 100%);
    transform: translateY(-2px) translateX(4px);
    box-shadow:
        0 8px 28px rgba(255, 107, 26, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.link-card-light .link-content {
    color: white;
}

.link-card-light .link-label {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 700;
}

.link-card-light .link-title {
    color: white;
    font-weight: 700;
}

.link-card-light .link-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.link-card-light .link-arrow {
    color: rgba(255, 255, 255, 0.8);
}

/* Mentoria Card - Dark Theme */
.mentoria-card {
    background: linear-gradient(145deg, rgba(35, 30, 40, 0.95) 0%, rgba(25, 20, 30, 0.98) 100%);
    border: 1px solid rgba(255, 107, 26, 0.15);
}

.mentoria-card:hover {
    border-color: rgba(255, 107, 26, 0.35);
    box-shadow:
        0 8px 28px rgba(255, 107, 26, 0.15),
        0 0 0 1px rgba(255, 107, 26, 0.1);
}

.mentoria-card .link-icon-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 26, 0.3);
}

.mentoria-card .link-label {
    color: var(--primary);
}

.mentoria-card .link-title {
    color: var(--text-primary);
}

.link-card-light .link-content {
    color: var(--text-dark);
}

.link-card-light .link-label {
    color: var(--primary);
}

.link-card-light .link-title {
    color: var(--text-dark);
}

.link-card-light .link-arrow {
    color: var(--text-muted);
}

.link-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
}

.link-card-light .link-icon-wrapper {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}

.link-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.link-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--primary);
    text-transform: uppercase;
}

.link-title {
    font-size: 0.95rem;
    font-weight: 600;
}

.link-arrow {
    color: var(--text-muted);
    transition: transform var(--transition-base);
}

.link-card:hover .link-arrow {
    transform: translate(3px, -3px);
}

/* Twitch Card */
.twitch-card {
    background: linear-gradient(145deg, rgba(30, 25, 40, 0.9) 0%, rgba(25, 20, 35, 0.95) 100%);
    border: 1px solid rgba(145, 70, 255, 0.15);
}

.twitch-card:hover {
    border-color: rgba(145, 70, 255, 0.3);
    box-shadow:
        0 8px 24px rgba(145, 70, 255, 0.15),
        0 0 0 1px rgba(145, 70, 255, 0.1);
}

.twitch-icon {
    background: linear-gradient(135deg, #9146FF 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(145, 70, 255, 0.4);
}

.twitch-label {
    color: var(--twitch-color);
}

/* ===== CARDS GRID ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.grid-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 130px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.grid-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.grid-card:hover {
    transform: translateY(-6px) scale(1.02);
}

.grid-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    position: relative;
    z-index: 1;
}

.grid-card-content {
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.grid-card-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.grid-card-label {
    display: block;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    opacity: 0.6;
    text-transform: uppercase;
}

/* Decorative Platform Icons */
.card-decor-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 100px;
    height: 100px;
    opacity: 0.12;
    pointer-events: none;
    transition: all 0.3s ease;
}

.card-decor-icon svg {
    width: 100%;
    height: 100%;
}

.grid-card:hover .card-decor-icon {
    opacity: 0.2;
    transform: scale(1.1) rotate(-5deg);
}

.discord-decor {
    color: var(--discord-color);
}

.youtube-decor {
    color: var(--youtube-color);
}

.twitch-decor {
    color: var(--twitch-color);
}

.link-card:hover .card-decor-icon {
    opacity: 0.2;
    transform: scale(1.1) rotate(-5deg);
}

.grid-card-bg {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    transition: opacity var(--transition-base);
}

.grid-card:hover .grid-card-bg {
    opacity: 0.25;
}

/* Discord Card */
.discord-card {
    background: linear-gradient(145deg, rgba(30, 30, 60, 0.9) 0%, rgba(22, 33, 62, 0.95) 100%);
    border: 1px solid rgba(88, 101, 242, 0.25);
}

.discord-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.discord-card:hover {
    border-color: rgba(88, 101, 242, 0.4);
    box-shadow:
        0 8px 32px rgba(88, 101, 242, 0.2),
        0 0 0 1px rgba(88, 101, 242, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.discord-card .grid-card-icon {
    background: linear-gradient(135deg, #5865F2 0%, #4752c4 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}

.discord-card .grid-card-bg {
    background: linear-gradient(135deg, var(--discord-color) 0%, transparent 60%);
}

/* YouTube Card */
.youtube-card {
    background: linear-gradient(145deg, rgba(40, 20, 20, 0.9) 0%, rgba(30, 15, 15, 0.95) 100%);
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.youtube-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.youtube-card:hover {
    border-color: rgba(255, 0, 0, 0.35);
    box-shadow:
        0 8px 32px rgba(255, 0, 0, 0.15),
        0 0 0 1px rgba(255, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.youtube-card .grid-card-icon {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.35);
}

.youtube-card .grid-card-bg {
    background: linear-gradient(135deg, var(--youtube-color) 0%, transparent 60%);
}

/* ===== SOCIAL FOOTER ===== */
.social-footer {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.social-icon-sm {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.social-icon-sm:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* ===== COPYRIGHT ===== */
.copyright {
    text-align: center;
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-top: var(--space-md);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
    .container {
        padding: var(--space-lg) var(--space-md);
    }

    .profile-card {
        padding: var(--space-md);
    }

    .profile-avatar img {
        width: 70px;
        height: 70px;
    }

    .profile-name {
        font-size: 1.2rem;
    }

    .banner-title {
        font-size: 1.5rem;
    }

    .cards-grid {
        gap: var(--space-sm);
    }

    .grid-card {
        padding: var(--space-md);
        min-height: 100px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    animation: fadeInUp 0.5s ease-out;
}

.profile-card {
    animation: fadeInUp 0.5s ease-out 0.05s backwards;
}

.featured-banner {
    animation: fadeInUp 0.5s ease-out 0.1s backwards;
}

.link-card {
    animation: fadeInUp 0.5s ease-out 0.15s backwards;
}

.cards-grid {
    animation: fadeInUp 0.5s ease-out 0.2s backwards;
}

.twitch-card {
    animation: fadeInUp 0.5s ease-out 0.25s backwards;
}

.social-footer {
    animation: fadeInUp 0.5s ease-out 0.3s backwards;
}