/* ===================================
   RESET & BASE STYLES
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Gritty Dark Palette */
    --primary-color: #ff1744;
    --primary-hover: #ff5252;
    --primary-dark: #c50e29;
    --secondary-color: #0a0a0a;
    --text-primary: #e8e8e8;
    --text-secondary: #b0b0b0;
    --text-tertiary: #707070;
    --background: #0d0d0d;
    --surface: #181818;
    --surface-elevated: #1e1e1e;
    --border: #2a2a2a;
    --accent-red: #ff1744;
    --accent-gradient: linear-gradient(135deg, #ff1744 0%, #c50e29 100%);
    
    /* Mouse tracking for glows */
    --mouse-x: 50%;
    --mouse-y: 50%;
    --mouse-x-fast: 0px;
    --mouse-y-fast: 0px;
    
    /* Social Media Colors - Darkened */
    --youtube: #ff1744;
    --tiktok: #fe2c55;
    --instagram: #E4405F;
    --twitter: #1DA1F2;
    --reddit: #FF4500;
    
    /* Spacing System */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    
    /* Typography - Aggressive */
    --font-primary: 'Arial Black', 'Impact', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 600;
    --font-weight-semibold: 700;
    --font-weight-bold: 800;
    --font-weight-black: 900;
    
    /* Border Radius - Sharper */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 10px;
    --radius-full: 9999px;
    
    /* Harsh Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.6);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.7);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.8);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.85);
    --shadow-2xl: 0 20px 50px rgba(0, 0, 0, 0.9);
    --shadow-red: 0 0 20px rgba(255, 23, 68, 0.5);
    --shadow-red-intense: 0 0 40px rgba(255, 23, 68, 0.8);
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: #0a0a0a;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='350' height='350' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M65,15 Q50,15 40,20 C25,27 20,40 22,55 C24,68 35,78 50,82 C58,84 65,87 68,92 C72,98 72,105 68,112 C64,118 55,123 45,125 C38,126 32,127 28,132 Q25,137 26,143' stroke='rgba(15,40,25,0.4)' stroke-width='1.5' fill='none' transform='rotate(-87 50 80)'/%3E%3Cpath d='M55,15 Q53,14 50,15' stroke='rgba(15,40,25,0.3)' stroke-width='1' fill='none' transform='rotate(-87 50 80)'/%3E%3Cpath d='M255,135 Q235,135 220,142 C200,152 193,168 196,188 C199,206 215,220 235,226 C246,229 255,233 260,240 C266,249 266,260 260,270 C254,279 240,287 225,290 C215,292 207,294 201,301 Q197,308 198,318' stroke='rgba(10,30,20,0.38)' stroke-width='2.2' fill='none' transform='rotate(104 250 230)'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='320' height='320' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M85,55 Q65,55 50,62 C30,72 23,88 26,108 C29,126 45,140 65,146 C76,149 85,153 90,160 C96,169 96,180 90,190 C84,199 70,207 55,210 C45,212 37,214 31,221 Q27,228 28,238' stroke='rgba(15,40,25,0.36)' stroke-width='2.5' fill='none' transform='rotate(-115 80 150)'/%3E%3Cpath d='M72,55 Q70,54 65,55' stroke='rgba(15,40,25,0.26)' stroke-width='1.2' fill='none' transform='rotate(-115 80 150)'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='280' height='280' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M45,35 Q30,35 20,40 C5,47 0,60 2,75 C4,88 15,98 30,102 C38,104 45,107 48,112 C52,118 52,125 48,132 C44,138 35,143 25,145 C18,146 12,147 8,152 Q5,157 6,163' stroke='rgba(10,30,20,0.48)' stroke-width='2' fill='none' transform='rotate(58 40 100)'/%3E%3Cpath d='M35,35 Q33,34 30,35' stroke='rgba(10,30,20,0.33)' stroke-width='1' fill='none' transform='rotate(58 40 100)'/%3E%3C/svg%3E"),
        radial-gradient(circle at 20% 50%, rgba(255, 23, 68, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 23, 68, 0.02) 0%, transparent 50%);
    background-size: 350px 350px, 320px 320px, 280px 280px, 100% 100%, 100% 100%;
    background-position: 0 0, 160px 190px, 240px 80px, 0 0, 0 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    position: relative;
}

/* Gritty scan line effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15) 0px,
        transparent 1px,
        transparent 2px,
        rgba(0, 0, 0, 0.15) 3px
    );
    pointer-events: none;
    z-index: 1000;
    opacity: 0.3;
}

/* Noise texture */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    z-index: 999;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
    z-index: 2;
}

@media (max-width: 640px) {
    .container {
        padding: 0 var(--spacing-md);
    }
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    padding: var(--spacing-2xl) 0 var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Red glow effects - MAXIMUM INTENSITY - FOLLOWS MOUSE - ALTERNATE PULSE */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 23, 68, 0.5) 0%, rgba(255, 23, 68, 0.15) 40%, transparent 70%);
    filter: blur(80px);
    animation: pulse-glow-1 4s ease-in-out infinite;
    pointer-events: none;
    transform: translate(
        calc(var(--mouse-x) - 50%),
        calc(var(--mouse-y) - 50%)
    );
    transition: transform 0.3s ease-out;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(255, 23, 68, 0.45) 0%, rgba(255, 23, 68, 0.12) 40%, transparent 70%);
    filter: blur(70px);
    animation: pulse-glow-2 5s ease-in-out infinite;
    pointer-events: none;
    transform: translate(
        calc((var(--mouse-x) - 50%) * -0.7),
        calc((var(--mouse-y) - 50%) * -0.7)
    );
    transition: transform 0.3s ease-out;
}

@keyframes pulse-glow-1 {
    0%, 100% { 
        opacity: 0.8;
        transform: scale(1) translate(
            calc(var(--mouse-x) - 50%),
            calc(var(--mouse-y) - 50%)
        );
    }
    50% { 
        opacity: 1;
        transform: scale(1.3) translate(
            calc(var(--mouse-x) - 50%),
            calc(var(--mouse-y) - 50%)
        );
    }
}

@keyframes pulse-glow-2 {
    0%, 100% { 
        opacity: 1;
        transform: scale(1.3) translate(
            calc((var(--mouse-x) - 50%) * -0.7),
            calc((var(--mouse-y) - 50%) * -0.7)
        );
    }
    50% { 
        opacity: 0.8;
        transform: scale(1) translate(
            calc((var(--mouse-x) - 50%) * -0.7),
            calc((var(--mouse-y) - 50%) * -0.7)
        );
    }
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: var(--radius-md);
    border: 3px solid var(--primary-color);
    box-shadow: 
        var(--shadow-2xl),
        var(--shadow-red),
        inset 0 0 20px rgba(0, 0, 0, 0.8),
        0 0 0 8px rgba(0, 0, 0, 0.5);
    object-fit: cover;
    margin-bottom: var(--spacing-lg);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    background: var(--surface);
    filter: contrast(1.1) saturate(1.2);
    animation: border-pulse 3s ease-in-out infinite;
}

@keyframes border-pulse {
    0%, 100% {
        border-color: var(--primary-color);
        box-shadow: 
            var(--shadow-2xl),
            0 0 20px rgba(255, 23, 68, 0.5),
            inset 0 0 20px rgba(0, 0, 0, 0.8),
            0 0 0 8px rgba(0, 0, 0, 0.5);
    }
    50% {
        border-color: var(--primary-hover);
        box-shadow: 
            var(--shadow-2xl),
            0 0 40px rgba(255, 23, 68, 0.8),
            inset 0 0 20px rgba(0, 0, 0, 0.8),
            0 0 0 8px rgba(0, 0, 0, 0.5);
    }
}

.profile-image:hover {
    transform: scale(1.05) rotate(-2deg);
    border-color: var(--primary-hover);
    box-shadow: 
        var(--shadow-2xl),
        var(--shadow-red-intense),
        inset 0 0 20px rgba(0, 0, 0, 0.8),
        0 0 0 8px rgba(255, 23, 68, 0.2);
    filter: contrast(1.2) saturate(1.3) brightness(1.1);
    animation: none;
}

.creator-name {
    font-size: 2.5rem;
    font-weight: var(--font-weight-black);
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    letter-spacing: 0.05em;
    position: relative;
    z-index: 10;
    text-transform: uppercase;
    text-shadow: 
        0 0 10px rgba(255, 23, 68, 0.8),
        0 0 20px rgba(255, 23, 68, 0.5),
        0 0 40px rgba(255, 23, 68, 0.3),
        2px 2px 0px rgba(0, 0, 0, 0.8),
        4px 4px 8px rgba(0, 0, 0, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.9));
    animation: glitch-text 8s infinite;
}

@keyframes glitch-text {
    0%, 90%, 100% { 
        transform: translate(0);
        text-shadow: 
            0 0 10px rgba(255, 23, 68, 0.8),
            0 0 20px rgba(255, 23, 68, 0.5),
            0 0 40px rgba(255, 23, 68, 0.3),
            2px 2px 0px rgba(0, 0, 0, 0.8),
            4px 4px 8px rgba(0, 0, 0, 1);
    }
    91% { 
        transform: translate(-2px, 2px);
        text-shadow: 
            -2px 0 rgba(255, 23, 68, 0.8),
            2px 0 rgba(0, 255, 255, 0.5),
            0 0 20px rgba(255, 23, 68, 0.5);
    }
    92% { 
        transform: translate(2px, -2px);
        text-shadow: 
            2px 0 rgba(255, 23, 68, 0.8),
            -2px 0 rgba(0, 255, 255, 0.5),
            0 0 20px rgba(255, 23, 68, 0.5);
    }
    93% { 
        transform: translate(0);
    }
}

.tagline {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: var(--font-weight-medium);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 10;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* ===================================
   YOUTUBE SECTION (PRIMARY FOCUS)
   =================================== */

.youtube-section {
    padding: var(--spacing-2xl) 0;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 23, 68, 0.2);
    border-bottom: 1px solid rgba(255, 23, 68, 0.2);
}

/* Aggressive red gradient background - TINY & VIBRANT - OPACITY ONLY - FOLLOWS MOUSE FAST */
.youtube-section::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 94px;
    height: 56px;
    background: 
        radial-gradient(ellipse 47px 28px at center, rgba(255, 23, 68, 0.525) 0%, rgba(255, 23, 68, 0.225) 40%, transparent 60%);
    pointer-events: none;
    animation: opacity-pulse 0.9s ease-in-out infinite;
    transform: translate(
        calc(var(--mouse-x-fast) - 47px),
        calc(var(--mouse-y-fast) - 28px)
    );
    z-index: 5;
}

@keyframes opacity-pulse {
    0%, 100% { 
        opacity: 0.45;
    }
    50% { 
        opacity: 0.75;
    }
}

.section-title {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    position: relative;
    z-index: 10;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-shadow: 
        0 0 5px rgba(255, 23, 68, 0.5),
        2px 2px 0px rgba(0, 0, 0, 0.8);
}

/* Bracket decoration */
.section-title::before,
.section-title::after {
    content: '//';
    color: var(--primary-color);
    font-weight: var(--font-weight-black);
    opacity: 0.6;
    font-size: 0.8em;
}

.section-title::before {
    margin-right: 0.5em;
}

.section-title::after {
    margin-left: 0.5em;
}

.youtube-title {
    font-size: 2rem;
    font-weight: var(--font-weight-black);
    color: var(--text-primary);
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 10;
    text-transform: uppercase;
    text-shadow: 
        0 0 10px rgba(255, 23, 68, 0.6),
        2px 2px 0px rgba(0, 0, 0, 0.8),
        3px 3px 6px rgba(0, 0, 0, 1);
}

/* Underline effect */
.youtube-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.8);
    animation: underline-pulse 2s ease-in-out infinite;
}

@keyframes underline-pulse {
    0%, 100% {
        width: 100px;
        opacity: 0.6;
    }
    50% {
        width: 150px;
        opacity: 1;
    }
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    margin-bottom: var(--spacing-xl);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 
        0 0 0 2px var(--primary-color),
        var(--shadow-2xl),
        var(--shadow-red),
        0 0 0 12px rgba(0, 0, 0, 0.6);
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
    z-index: 10;
    border: 2px solid rgba(255, 23, 68, 0.5);
}

/* Corner brackets effect */
.video-container::before,
.video-container::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid var(--primary-color);
    z-index: 10;
    opacity: 0.8;
}

.video-container::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
    animation: corner-glow 2s ease-in-out infinite;
}

.video-container::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
    animation: corner-glow 2s ease-in-out infinite 1s;
}

@keyframes corner-glow {
    0%, 100% {
        opacity: 0.8;
        filter: drop-shadow(0 0 5px rgba(255, 23, 68, 0.5));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 10px rgba(255, 23, 68, 1));
    }
}

.video-container:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 0 0 2px var(--primary-hover),
        var(--shadow-2xl),
        var(--shadow-red-intense),
        0 0 0 12px rgba(255, 23, 68, 0.2);
    border-color: var(--primary-color);
}

.video-container:hover::before,
.video-container:hover::after {
    border-color: var(--primary-hover);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-md);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Primary YouTube Subscribe Button - Aggressive */
.btn-youtube-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    width: 100%;
    max-width: 100%;
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.8),
        var(--shadow-red),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5),
        0 0 0 1px var(--primary-color);
    position: relative;
    overflow: hidden;
    font-weight: var(--font-weight-black);
    letter-spacing: 0.08em;
    border: 2px solid var(--primary-color);
    transition: all 0.2s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    animation: button-intensity 3s ease-in-out infinite;
}

@keyframes button-intensity {
    0%, 100% {
        box-shadow: 
            0 8px 16px rgba(0, 0, 0, 0.8),
            0 0 20px rgba(255, 23, 68, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            inset 0 -1px 0 rgba(0, 0, 0, 0.5),
            0 0 0 1px var(--primary-color);
    }
    50% {
        box-shadow: 
            0 8px 16px rgba(0, 0, 0, 0.8),
            0 0 30px rgba(255, 23, 68, 0.8),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            inset 0 -1px 0 rgba(0, 0, 0, 0.5),
            0 0 0 1px var(--primary-hover);
    }
}

.btn-youtube-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-youtube-primary:hover::before {
    left: 100%;
}

.btn-youtube-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.9),
        var(--shadow-red-intense),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: var(--primary-hover);
}

.btn-youtube-primary:active {
    transform: translateY(0px);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.8),
        var(--shadow-red);
}

.btn-youtube-primary .btn-text {
    position: relative;
    z-index: 2;
}

.btn-youtube-primary .btn-icon {
    position: relative;
    z-index: 2;
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

/* ===================================
   SOCIAL LINKS SECTION
   =================================== */

.social-section {
    padding: var(--spacing-2xl) 0;
    background: transparent;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.social-link {
    background: var(--surface-elevated);
    color: var(--text-primary);
    padding: 1.125rem 1.75rem;
    border: 2px solid var(--border);
    transition: all 0.2s ease;
    box-shadow: var(--shadow-md), inset 0 0 0 1px rgba(255, 23, 68, 0.1);
    font-weight: var(--font-weight-bold);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
}

/* Diagonal stripe effect - SLOWER & MORE INTENTIONAL */
.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -2px;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), transparent);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover::before {
    width: 100%;
    opacity: 0.15;
}

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

.social-link:hover {
    transform: translateX(12px);
    box-shadow: var(--shadow-xl), inset 0 0 0 1px rgba(255, 23, 68, 0.3);
    border-color: rgba(255, 23, 68, 0.3);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:active {
    transform: translateX(4px);
}

/* Social Platform Specific Styles - Aggressive */
.social-link.youtube {
    border-color: rgba(255, 23, 68, 0.4);
    color: var(--youtube);
}

.social-link.youtube:hover {
    background: linear-gradient(135deg, var(--youtube) 0%, #c50e29 100%);
    color: white;
    box-shadow: var(--shadow-xl), var(--shadow-red);
    border-color: var(--youtube);
}

.social-link.tiktok {
    border-color: rgba(254, 44, 85, 0.4);
    color: var(--tiktok);
}

.social-link.tiktok:hover {
    background: linear-gradient(135deg, #fe2c55 0%, #000000 100%);
    color: white;
    box-shadow: var(--shadow-xl), 0 0 20px rgba(254, 44, 85, 0.5);
    border-color: var(--tiktok);
}

.social-link.instagram {
    border-color: rgba(228, 64, 95, 0.4);
    color: var(--instagram);
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #E4405F 0%, #833AB4 50%, #FD1D1D 100%);
    color: white;
    box-shadow: var(--shadow-xl), 0 0 20px rgba(228, 64, 95, 0.5);
    border-color: var(--instagram);
}

.social-link.twitter {
    border-color: rgba(29, 161, 242, 0.4);
    color: var(--twitter);
}

.social-link.twitter:hover {
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8fd9 100%);
    color: white;
    box-shadow: var(--shadow-xl), 0 0 20px rgba(29, 161, 242, 0.5);
    border-color: var(--twitter);
}

.social-link.reddit {
    border-color: rgba(255, 69, 0, 0.4);
    color: var(--reddit);
}

.social-link.reddit:hover {
    background: linear-gradient(135deg, #FF4500 0%, #e63d00 100%);
    color: white;
    box-shadow: var(--shadow-xl), 0 0 20px rgba(255, 69, 0, 0.5);
    border-color: var(--reddit);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    padding: var(--spacing-xl) 0 var(--spacing-lg) 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-secondary);
    margin-top: var(--spacing-2xl);
    border-top: 1px solid rgba(255, 23, 68, 0.2);
}

.contact-text {
    margin-bottom: var(--spacing-sm);
    font-size: 0.9375rem;
    font-weight: var(--font-weight-medium);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.contact-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: var(--font-weight-bold);
    position: relative;
}

.contact-text a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 8px var(--primary-color);
    transition: width 0.3s ease;
}

.contact-text a:hover::after {
    width: 100%;
}

.contact-text a:hover {
    color: var(--primary-hover);
    text-shadow: 0 0 8px rgba(255, 23, 68, 0.8);
}

.copyright {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    font-weight: var(--font-weight-normal);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet and up (640px+) */
@media (min-width: 640px) {
    .creator-name {
        font-size: 2.75rem;
    }
    
    .tagline {
        font-size: 1.1875rem;
    }
    
    .profile-image {
        width: 170px;
        height: 170px;
    }
}

/* Desktop and up (768px+) */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    .hero {
        padding: 5rem 0 4rem 0;
    }
    
    .youtube-section {
        padding: 6rem 0;
    }
    
    .social-section {
        padding: 5rem 0;
    }
    
    .creator-name {
        font-size: 3.25rem;
    }
    
    .tagline {
        font-size: 1.25rem;
        max-width: 520px;
    }
    
    .profile-image {
        width: 190px;
        height: 190px;
        border-width: 4px;
    }
    
    .youtube-title {
        font-size: 2.5rem;
    }
    
    .btn-youtube-primary {
        font-size: 1.25rem;
        padding: 1.5rem 3rem;
    }
    
    .btn-youtube-primary .btn-icon {
        width: 26px;
        height: 26px;
    }
    
    /* Show social links in a grid on larger screens */
    .social-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .video-container {
        border-radius: var(--radius-lg);
    }
}

/* Large Desktop (1024px+) */
@media (min-width: 1024px) {
    .container {
        max-width: 800px;
    }
    
    .creator-name {
        font-size: 3.5rem;
    }
    
    .youtube-title {
        font-size: 2.75rem;
    }
    
    .hero {
        padding: 6rem 0 5rem 0;
    }
}

/* ===================================
   ANIMATIONS & INTERACTIONS
   =================================== */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus-visible,
.social-link:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(255, 23, 68, 0.3);
}

.btn-youtube-primary:focus-visible {
    outline: 3px solid var(--primary-hover);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(255, 23, 68, 0.5), var(--shadow-red-intense);
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .social-link {
        min-height: 48px;
    }
}
