/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&family=Fira+Code:wght@400;500;600&display=swap');

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

:root {
    --primary-red: #ff0000;
    --primary-red-dark: #cc0000;
    --primary-red-light: #ff3333;
    --text-dark: #1a202c;
    --text-medium: #2d3748;
    --text-light: #4a5568;
    --text-muted: #718096;
    --text-subtle: #a0aec0;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --bg-gray: #edf2f7;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.15);
    --border-radius: 16px;
    --border-radius-large: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-secondary: 'SF Pro Display', 'Segoe UI', system-ui, sans-serif;
    --font-mono: 'SF Mono', 'Monaco', 'Consolas', monospace;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.65;
    background-color: var(--bg-light);
    color: var(--text-medium);
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-weight: var(--font-weight-normal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

.Banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), url(images/Banner.png);
    background-size: cover;
    background-position: center;
    height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.Banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.1), rgba(204, 0, 0, 0.1));
    pointer-events: none;
}

.Banner-title {
    animation: FadeIn 2s ease-out;
    text-align: center;
    color: var(--bg-white);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 0, 0, 0.4);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: var(--font-weight-black);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    font-family: var(--font-secondary);
}

/* Scroll-triggered animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Container and layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section styling improvements */
section {
    padding: 5rem 0;
    position: relative;
}

section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -0.025em;
    font-family: var(--font-secondary);
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
    font-weight: var(--font-weight-normal);
}

/* YouTube Hero Section */
.youtube-hero {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: var(--bg-white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.youtube-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.youtube-hero .container {
    position: relative;
    z-index: 1;
}

.youtube-hero h2 {
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    color: var(--bg-white);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
    font-family: var(--font-secondary);
}

.youtube-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: var(--font-weight-normal);
}

.youtube-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-large);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    text-align: center;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    font-weight: var(--font-weight-semibold);
    color: var(--bg-white);
    letter-spacing: -0.01em;
}

.stat-item p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: var(--font-weight-normal);
}

/* Enhanced streaming info */
.streaming-info {
    background: rgba(145, 70, 255, 0.15);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem auto;
    border: 2px solid rgba(145, 70, 255, 0.3);
    backdrop-filter: blur(10px);
    max-width: 500px;
    transition: var(--transition);
}

.streaming-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(145, 70, 255, 0.2);
}

.streaming-info h3 {
    color: #c77dff;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.streaming-info p {
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.twitch-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #c77dff;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(199, 125, 255, 0.1);
}

.twitch-link:hover {
    color: #9146ff;
    transform: translateX(5px);
    background: rgba(199, 125, 255, 0.2);
}

/* Channel Link Section */
.channel-link-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.channel-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: var(--border-radius-large);
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.channel-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.channel-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.channel-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-red);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    transition: var(--transition);
}

.channel-avatar:hover {
    transform: scale(1.05);
}

.channel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.channel-info h3 {
    font-size: 1.875rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
    font-family: var(--font-secondary);
}

.channel-info p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    font-weight: var(--font-weight-medium);
    font-family: var(--font-mono);
}

.subscriber-count {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: var(--font-weight-normal);
}

.channel-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--primary-red);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    border: 2px solid transparent;
}

.subscribe-btn:hover {
    background: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.subscribe-btn.secondary {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    box-shadow: none;
}

.subscribe-btn.secondary:hover {
    background: var(--primary-red);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.youtube-icon {
    font-size: 1.2rem;
}

/* Content Types Section */
.content-types {
    padding: 80px 0;
    background: #f8f9fa;
}

.content-types h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

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

.content-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.content-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.content-item h3 {
    font-size: 1.375rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.content-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Latest Videos Section */
.latest-videos {
    padding: 80px 0;
    background: white;
}

.latest-videos h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.video-embed-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    background: linear-gradient(145deg, #f1f1f1, #e0e0e0);
    border-radius: 15px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.play-button {
    width: 80px;
    height: 80px;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    margin: 0 auto 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.view-all-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

/* Community Section */
.community-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.community-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.community-section > p {
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.community-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.community-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.community-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.link-icon {
    font-size: 1.5rem;
}

/* Additional social media platform colors */
.community-link.youtube:hover {
    background: rgba(255, 0, 0, 0.3);
}

.community-link.twitch:hover {
    background: rgba(145, 70, 255, 0.3);
}

.community-link.instagram:hover {
    background: rgba(225, 48, 108, 0.3);
}

.community-link.twitter:hover {
    background: rgba(29, 161, 242, 0.3);
}

.community-link.linktree:hover {
    background: rgba(67, 181, 129, 0.3);
}

/* Enhanced hero section with Twitch info */
.streaming-info {
    background: rgba(145, 70, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-top: 30px;
    border: 2px solid rgba(145, 70, 255, 0.3);
}

.streaming-info h3 {
    color: #9146ff;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.streaming-info p {
    margin-bottom: 15px;
}

.twitch-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9146ff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.twitch-link:hover {
    color: #7c3aed;
    transform: translateX(5px);
}

/* YouTube API Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 0, 0, 0.9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-play-overlay {
    opacity: 1;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.video-info {
    padding: 20px;
}

.video-title {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
}

.video-views {
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-date {
    font-size: 0.8rem;
}

/* Loading Animation */
.loading-placeholder {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff0000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.view-more-container {
    text-align: center;
}

/* Gaming Quote Section */
.gaming-quote-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.quote-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.gaming-quote {
    margin: 0 0 30px 0;
    font-style: italic;
}

.gaming-quote p {
    font-size: 1.25rem;
    line-height: 1.5;
    font-style: italic;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.01em;
    margin: 0;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-quote-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.005em;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.new-quote-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Error States */
.error-message {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
}

/* Custom Text Section */
.custom-text-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
}

.custom-text-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.custom-text-display {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.01em;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.custom-text-section h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 30px;
    text-align: center;
}

.retry-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.retry-btn:hover {
    background: #cc0000;
}

/* Interests Section */
.interests-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.interests-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.interests-section .section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.interest-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.interest-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.interest-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.interest-item:hover::before {
    transform: scaleX(1);
}

.interest-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
    transition: transform 0.3s ease;
}

.interest-item:hover .interest-icon {
    transform: scale(1.1) rotate(5deg);
}

.interest-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: var(--font-weight-semibold);
    letter-spacing: -0.01em;
    font-family: var(--font-secondary);
}

.interest-item p {
    color: var(--text-light);
    line-height: 1.65;
    font-size: 0.95rem;
    font-weight: var(--font-weight-normal);
}

/* Special hover effects for different interests */
.interest-item:nth-child(1):hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.interest-item:nth-child(1):hover h3,
.interest-item:nth-child(1):hover p {
    color: white;
}

.interest-item:nth-child(2):hover {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

.interest-item:nth-child(2):hover h3,
.interest-item:nth-child(2):hover p {
    color: white;
}

.interest-item:nth-child(3):hover {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
}

.interest-item:nth-child(3):hover h3,
.interest-item:nth-child(3):hover p {
    color: white;
}

.interest-item:nth-child(4):hover {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: white;
}

.interest-item:nth-child(4):hover h3,
.interest-item:nth-child(4):hover p {
    color: white;
}

.interest-item:nth-child(5):hover {
    background: linear-gradient(135deg, #fa709a, #fee140);
    color: white;
}

.interest-item:nth-child(5):hover h3,
.interest-item:nth-child(5):hover p {
    color: white;
}

.interest-item:nth-child(6):hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.interest-item:nth-child(6):hover h3,
.interest-item:nth-child(6):hover p {
    color: white;
}

/* Responsive adjustments for interests */
@media (max-width: 768px) {
    .interests-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .interests-section h2 {
        font-size: 2rem;
    }
    
    .interest-item {
        padding: 30px 20px;
    }
    
    .interest-icon {
        font-size: 3rem;
    }
}

/* ===== COMPREHENSIVE MEDIA QUERIES ===== */

/* Large Desktops (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .Banner {
        height: 80vh;
    }
    
    .Banner-title {
        font-size: 5rem;
    }
    
    .youtube-hero h2 {
        font-size: 4rem;
    }
    
    .youtube-description {
        font-size: 1.375rem;
    }
    
    section {
        padding: 6rem 0;
    }
}

/* Standard Desktops (1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
    
    .youtube-stats {
        gap: 2.5rem;
    }
    
    .interests-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Large Tablets and Small Desktops (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .Banner {
        height: 65vh;
    }
    
    .Banner-title {
        font-size: clamp(3rem, 7vw, 3.5rem);
    }
    
    .youtube-hero {
        padding: 4rem 0;
    }
    
    .youtube-hero h2 {
        font-size: 3rem;
    }
    
    .youtube-description {
        font-size: 1.2rem;
    }
    
    .channel-card {
        padding: 2.5rem;
    }
    
    .channel-avatar {
        width: 80px;
        height: 80px;
    }
    
    .interests-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
        padding: 0 1.5rem;
    }
    
    .Banner {
        height: 60vh;
    }
    
    .Banner-title {
        font-size: clamp(2.5rem, 6vw, 3rem);
        letter-spacing: -0.01em;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .youtube-hero {
        padding: 3.5rem 0;
    }
    
    .youtube-hero h2 {
        font-size: 2.5rem;
    }
    
    .youtube-description {
        font-size: 1.125rem;
    }
    
    .youtube-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .stat-item {
        padding: 2rem;
    }
    
    .streaming-info {
        padding: 1.5rem;
    }
    
    .channel-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .channel-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .channel-avatar {
        width: 100px;
        height: 100px;
    }
    
    .channel-actions {
        justify-content: center;
        gap: 1rem;
    }
    
    .subscribe-btn {
        flex: 1;
        min-width: 160px;
    }
    
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .interests-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .community-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .quote-container {
        padding: 2rem;
    }
    
    .gaming-quote p {
        font-size: 1.125rem;
    }
}

/* Large Mobile Phones (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 1rem;
    }
    
    .Banner {
        height: 50vh;
    }
    
    .Banner-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    section {
        padding: 3rem 0;
    }
    
    .youtube-hero {
        padding: 3rem 0;
    }
    
    .youtube-hero h2 {
        font-size: 2rem;
    }
    
    .youtube-description {
        font-size: 1.05rem;
    }
    
    .youtube-stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .stat-item {
        padding: 1.75rem 1.5rem;
    }
    
    .streaming-info {
        padding: 1.25rem;
        margin: 1.5rem auto;
    }
    
    .channel-card {
        padding: 1.5rem;
    }
    
    .channel-avatar {
        width: 80px;
        height: 80px;
    }
    
    .channel-info h3 {
        font-size: 1.5rem;
    }
    
    .subscribe-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .content-item {
        padding: 2rem 1.5rem;
    }
    
    .interests-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .interest-item {
        padding: 2rem 1.5rem;
    }
    
    .interest-icon {
        font-size: 3rem;
    }
    
    .community-links {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .community-link {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    .quote-container {
        padding: 1.5rem;
    }
    
    .quote-icon {
        font-size: 3rem;
    }
    
    .gaming-quote p {
        font-size: 1.05rem;
    }
    
    .new-quote-btn {
        padding: 0.875rem 1.5rem;
    }
}

/* Small Mobile Phones (up to 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 1rem;
    }
    
    body {
        font-size: 14px;
    }
    
    .Banner {
        height: 45vh;
    }
    
    .Banner-title {
        font-size: clamp(1.75rem, 10vw, 2.25rem);
        letter-spacing: 0;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    .youtube-hero {
        padding: 2.5rem 0;
    }
    
    .youtube-hero h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .youtube-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .youtube-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-item h3 {
        font-size: 1.125rem;
    }
    
    .stat-item p {
        font-size: 0.875rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .streaming-info {
        padding: 1rem;
        margin: 1rem auto;
    }
    
    .streaming-info h3 {
        font-size: 1.125rem;
    }
    
    .twitch-link {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .channel-card {
        padding: 1.25rem;
    }
    
    .channel-avatar {
        width: 70px;
        height: 70px;
    }
    
    .channel-info h3 {
        font-size: 1.375rem;
    }
    
    .channel-info p {
        font-size: 1rem;
    }
    
    .subscribe-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        gap: 0.5rem;
    }
    
    .content-item {
        padding: 1.75rem 1.25rem;
    }
    
    .content-icon {
        font-size: 2.5rem;
    }
    
    .content-item h3 {
        font-size: 1.25rem;
    }
    
    .content-item p {
        font-size: 0.875rem;
    }
    
    .interest-item {
        padding: 1.75rem 1.25rem;
    }
    
    .interest-icon {
        font-size: 2.5rem;
    }
    
    .interest-item h3 {
        font-size: 1.25rem;
    }
    
    .interest-item p {
        font-size: 0.875rem;
    }
    
    .video-card {
        margin-bottom: 1rem;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .video-info {
        padding: 1rem;
    }
    
    .video-title {
        font-size: 1rem;
    }
    
    .video-stats {
        font-size: 0.8rem;
    }
    
    .view-all-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .community-link {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .link-icon {
        font-size: 1.25rem;
    }
    
    .quote-container {
        padding: 1.25rem;
    }
    
    .quote-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .gaming-quote p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .new-quote-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    footer {
        padding: 1.5rem 0;
    }
    
    footer p {
        font-size: 0.875rem;
    }
}

/* Extra Small Devices (320px and below) */
@media (max-width: 320px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .Banner {
        height: 40vh;
    }
    
    .Banner-title {
        font-size: 1.5rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .youtube-hero {
        padding: 2rem 0;
    }
    
    .stat-item {
        padding: 1.25rem 0.75rem;
    }
    
    .channel-card {
        padding: 1rem;
    }
    
    .content-item,
    .interest-item {
        padding: 1.5rem 1rem;
    }
    
    .quote-container {
        padding: 1rem;
    }
    
    .community-link {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

/* Landscape Mobile Phones */
@media (max-height: 500px) and (orientation: landscape) {
    .Banner {
        height: 80vh;
    }
    
    .Banner-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .youtube-hero {
        padding: 2rem 0;
    }
    
    section {
        padding: 2rem 0;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .Banner-title {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 0, 0, 0.4);
    }
    
    .channel-avatar img,
    .video-thumbnail img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
    
    .Banner,
    .community-section,
    .gaming-quote-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}