/* ===========================
   Variables & Reset
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Vibrant Colors from Profile Photo */
    --hot-pink: #E91E63;
    --vibrant-purple: #8A2BE2;
    --electric-blue: #007BFF;
    --neon-orange: #FF6B35;
    
    /* Neutrals */
    --dark-bg: #0a0a0f;
    --card-bg: rgba(255, 255, 255, 0.05);
    --white: #F5F5F5;
    --gray: #CCCCCC;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #E91E63 0%, #8A2BE2 50%, #007BFF 100%);
    --gradient-card: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    --gradient-text: linear-gradient(90deg, #E91E63 0%, #8A2BE2 50%, #007BFF 100%);
    
    /* Fonts */
    --font-headline: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: var(--gradient-hero);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

/* Profile Photo */
.profile-photo {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto var(--spacing-xl);
}

.photo-glow {
    position: absolute;
    inset: -20px;
    background: var(--gradient-hero);
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.6;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.profile-img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Headlines */
.headline {
    font-family: var(--font-headline);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.subheadline {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-xl);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-headline);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

.social-link {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(100px, -100px) scale(0.5);
        opacity: 0;
    }
}

/* ===========================
   Section Styles
   =========================== */
.channels-section,
.apps-section,
.about-section,
.content-section,
.contact-section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.channels-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0a1a 100%);
}

.apps-section {
    background: linear-gradient(180deg, #0f0a1a 0%, var(--dark-bg) 100%);
}

.about-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1a0a2e 100%);
}

.content-section {
    background: linear-gradient(180deg, #1a0a2e 0%, var(--dark-bg) 100%);
}

.contact-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0a0a0f 100%);
}

.section-title {
    font-family: var(--font-headline);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--spacing-md);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   Channel Cards
   =========================== */
.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.channel-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.channel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.channel-card:hover {
    transform: translateY(-10px);
    border-color: var(--vibrant-purple);
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.4);
}

.channel-card > * {
    position: relative;
    z-index: 1;
}

.channel-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.channel-icon i {
    transition: all 0.3s ease;
}

/* Brand icon colors - always visible */
.fa-instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fa-youtube {
    color: #FF0000;
}

.fa-threads {
    color: #000000;
    filter: brightness(5);
}

.fa-linkedin {
    color: white !important;
    background: #0077B5;
    padding: 12px 14px;
    border-radius: 4px;
}

.fa-tiktok {
    color: #00f2ea;
    text-shadow: 
        -2px -2px 0 #ff0050,
        2px 2px 0 #00f2ea;
}

.fa-x-twitter {
    color: #000000;
    filter: brightness(5);
}

/* Enhanced hover effects */
.channel-card:hover .fa-instagram {
    transform: scale(1.1);
}

.channel-card:hover .fa-youtube {
    transform: scale(1.1);
}

.channel-card:hover .fa-threads {
    transform: scale(1.1);
}

.channel-card:hover .fa-linkedin {
    transform: scale(1.1);
}

.channel-card:hover .fa-tiktok {
    transform: scale(1.1);
}

.channel-card:hover .fa-x-twitter {
    transform: scale(1.1);
}

.channel-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--white);
}

.channel-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: auto;
    font-size: 0.9rem;
    padding-bottom: var(--spacing-md);
}

.channel-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.channel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* ===========================
   Apps & Projects
   =========================== */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.app-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.app-card:hover {
    transform: translateY(-10px);
    border-color: var(--hot-pink);
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.4);
}

.app-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-icon i {
    transition: all 0.3s ease;
}

/* Colored app icons */
.fa-rocket {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FDC830 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fa-wand-magic-sparkles {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fa-lightbulb {
    color: #FFD93D;
}

.app-card:hover .app-icon i {
    transform: scale(1.1) rotate(5deg);
}

/* Enhanced glow on hover */
.app-card:hover .fa-rocket {
    filter: drop-shadow(0 0 8px #FF6B35);
}

.app-card:hover .fa-wand-magic-sparkles {
    filter: drop-shadow(0 0 8px #764ba2);
}

.app-card:hover .fa-lightbulb {
    filter: drop-shadow(0 0 10px #FFD93D);
}

.app-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.app-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
}

.tech-badges {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.badge {
    padding: 0.3rem 0.8rem;
    background: rgba(233, 30, 99, 0.2);
    border: 1px solid rgba(233, 30, 99, 0.4);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.app-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.app-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

/* ===========================
   About Section
   =========================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    max-width: 1000px;
    margin: var(--spacing-xl) auto 0;
}

.about-text {
    width: 100%;
}

.about-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-hero);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-lg);
}

.timeline-dot {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--hot-pink);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--hot-pink);
}

.timeline-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.7);
}

/* ===========================
   Content Section
   =========================== */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.content-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 123, 255, 0.4);
}

.content-thumb {
    height: 200px;
    background: var(--gradient-card);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.content-card h3 {
    padding: var(--spacing-md);
    font-size: 1.4rem;
    font-weight: 700;
}

.content-card p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: rgba(255, 255, 255, 0.7);
}

/* ===========================
   Contact Section
   =========================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-xl);
}

.contact-form {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: var(--spacing-xl);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--vibrant-purple);
}

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

.info-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: var(--spacing-lg);
    text-align: center;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
}

.info-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-sm);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links .social-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links .social-link:hover {
    color: var(--hot-pink);
}

.newsletter-input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: var(--spacing-lg);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ===========================
   Animations
   =========================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.scroll-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===========================
   Instagram Section
   =========================== */
.instagram-section {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #F77737 100%);
    padding: var(--spacing-2xl) 0;
}

.instagram-profiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.instagram-profile {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.instagram-profile:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.profile-card {
    padding: var(--spacing-xl);
    text-align: center;
}

.profile-photo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.profile-photo-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.instagram-profile:hover .profile-photo-img {
    transform: scale(1.08);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.profile-photo-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 4px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.instagram-profile:hover .profile-photo-placeholder {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
}

.placeholder-icon {
    font-size: 50px;
    margin-bottom: 0.5rem;
}

.placeholder-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.profile-details h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: white;
}

.profile-details .bio {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.insta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.insta-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.insta-btn span {
    font-size: 1.3rem;
}

.instagram-note {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.instagram-note p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.instagram-note code {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    color: #FFD93D;
}

/* ===========================
   YouTube Channels Section
   =========================== */
.youtube-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0a1a 100%);
}

.youtube-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.youtube-channel {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.youtube-channel:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.3);
    border-color: rgba(255, 0, 0, 0.3);
}

.channel-header {
    display: flex;
    align-items: center;
    padding: var(--spacing-xl);
    gap: var(--spacing-md);
    background: rgba(255, 255, 255, 0.02);
}

.channel-banner {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.youtube-channel:hover .channel-banner {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.katha-banner {
    background: linear-gradient(135deg, #FFD93D 0%, #FF6B35 100%);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.channel-logo {
    font-size: 40px;
}

.channel-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.youtube-channel:hover .channel-logo-img {
    transform: scale(1.1);
}

.channel-info {
    flex: 1;
}

.channel-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.channel-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.channel-link:hover {
    color: var(--hot-pink);
}

.channel-description {
    padding: var(--spacing-lg) var(--spacing-xl);
    flex-grow: 1;
}

.channel-description p {
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.channel-description ul {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.channel-description li {
    padding: 0.6rem 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.channel-description li:last-child {
    border-bottom: none;
}

.subscribe-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) var(--spacing-xl) var(--spacing-xl);
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.subscribe-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.5);
    background: linear-gradient(135deg, #FF1a1a 0%, #DD0000 100%);
}

.subscribe-btn span {
    font-size: 1.3rem;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

/* Latest Videos */
.latest-videos {
    margin-top: var(--spacing-2xl);
    text-align: center;
}

.videos-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.videos-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--spacing-xl);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.video-placeholder {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: var(--spacing-2xl) var(--spacing-xl);
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    border-color: var(--hot-pink);
    background: rgba(255, 255, 255, 0.08);
}

.video-icon {
    font-size: 50px;
    margin-bottom: var(--spacing-md);
}

.video-placeholder p {
    color: rgba(255, 255, 255, 0.6);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .profile-photo {
        width: 180px;
        height: 180px;
    }
    
    .headline {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 350px;
    }
    
    .social-icons {
        gap: var(--spacing-sm);
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .channels-grid,
    .apps-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .youtube-channels {
        grid-template-columns: 1fr;
    }
    
    .instagram-profiles {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .timeline {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .profile-photo {
        width: 150px;
        height: 150px;
    }
    
    .headline {
        font-size: 2rem;
    }
    
    .subheadline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* ===========================
   Accessibility
   =========================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

