/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Softer Pastel Girly Dark Color Palette */
    --primary: #f7a8d7;
    --primary-light: #ffd6ec;
    --primary-dark: #e07bb0;
    --accent: #c6b6f5;
    --accent-light: #e9e3fc;
    --background: #1a1423;
    --surface: #241a2e;
    --surface-light: #32243d;
    --text-primary: #fff6fa;
    --text-secondary: #e9d6f7;
    --border: #c6b6f5;
    --sparkle: #fff6fb;
    --heart: #f7a8d7;
    --star: #ffe066;
    
    /* Typography */
    --font-heading: 'Space Grotesk', 'Poppins', sans-serif;
    --font-body: 'Inter', 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 32px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(247, 168, 215, 0.04);
    --shadow-md: 0 4px 16px rgba(198, 182, 245, 0.08);
    --shadow-lg: 0 8px 32px rgba(247, 168, 215, 0.10);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
    text-align: center;
    position: relative;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
}

.loader-bar {
    width: 300px;
    height: 4px;
    background: var(--surface);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.2);
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
    animation: loading 1.5s infinite, shimmer 2s infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Main Cursor (Pink Circle) */
.cursor {
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    transform-origin: center;
}

.cursor.click {
    transform: scale(0.8);
}

/* Follower Cursor (Pixel Cat) */
.cursor-follower {
    width: 48px;
    height: 48px;
    background-image: url('../images/pixel-cat.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s ease;
    opacity: 0.7;
    transform-origin: center;
}

.cursor-follower.click {
    transform: scale(1.2) rotate(10deg);
    opacity: 0.5;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(30, 41, 59, 0.95);
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.logo span {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border: none;
    border-radius: var(--radius-lg);
    padding: 1rem 2rem;
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
}

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

.stat-card {
    background: linear-gradient(145deg, var(--surface) 0%, var(--surface-light) 100%);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 139, 0.1);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.stat-card .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.stat-card .label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.hero-image {
    position: relative;
    display: inline-block;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Live Badge */
.live-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.live-badge i {
    color: #ff0000;
    font-size: 12px;
    animation: pulse 1.5s infinite;
}

.live-badge.is-live {
    background: rgba(255, 0, 0, 0.2);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.live-badge.is-live i {
    color: #ff0000;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* About Section */
.about {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-image img {
    width: 50%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
    margin: 0 auto;
}

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

.stat-item {
    background: var(--surface);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
}

.stat-item .label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-xs);
}

.stat-item .value {
    color: var(--primary);
    font-weight: 600;
}

/* Content Section */
.content {
    padding: var(--spacing-xl) 0;
    background: var(--surface);
}

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

.load-more {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg) 0;
}

.load-more .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.content-card {
    background: linear-gradient(145deg, var(--surface) 0%, var(--surface-light) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 139, 0.1);
    position: relative;
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.card-image {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.content-card:hover .play-button {
    opacity: 1;
}

.play-button i {
    color: white;
    font-size: 1.5rem;
}

.card-content {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.video-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-stats {
    display: flex;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Socials Section */
.socials {
    padding: var(--spacing-xl) 0;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.socials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, var(--accent) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}

.social-card {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: transparent;
    border: none;
    text-decoration: none;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
    border-radius: 50%;
}

.social-card:hover::before {
    opacity: 0.1;
}

.social-card i {
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-card.youtube i {
    color: #ff0000;
}

.social-card.instagram i {
    color: #e1306c;
}

.social-card.discord i {
    color: #7289da;
}

.social-card:hover {
    transform: translateY(-8px) scale(1.1);
}

.social-card:hover i {
    transform: scale(1.2);
}

/* Contact Section */
.contact {
    padding: var(--spacing-xl) 0;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--primary) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.contact-form {
    background: var(--background);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 107, 139, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
    padding: 0 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid rgba(255, 107, 139, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 107, 139, 0.2);
    outline: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    opacity: 0;
    transform: translateY(-50%) scale(0.9);
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.info-card {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 139, 0.1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.info-card:hover::before {
    opacity: 0.1;
}

.info-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.info-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.info-card p {
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: var(--background);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: var(--spacing-md);
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom .made-by {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .stats {
        max-width: 600px;
        margin: 0 auto;
    }

    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100vw;
        background: linear-gradient(135deg, #fff6fa 0%, #f7a8d7 60%, #c6b6f5 100%);
        box-shadow: 0 8px 32px #fff6fa, 0 0 40px #f7a8d7;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 0 2.5rem 0;
        align-items: center;
        z-index: 200;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(.4,0,.2,1), opacity 0.3s;
        filter: drop-shadow(0 8px 32px #fff6fa) brightness(1.15);
    }
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-links a {
        font-size: 1.3rem;
        color: #d72660;
        padding: 1rem 2rem;
        border-radius: var(--radius-md);
        background: rgba(255,255,255,0.18);
        margin: 0.2rem 0;
        box-shadow: 0 2px 12px #ffd6ec;
        transition: background 0.2s, color 0.2s, box-shadow 0.2s;
        font-weight: 700;
        letter-spacing: 1px;
    }
    .nav-links a:hover, .nav-links a.active {
        background: linear-gradient(90deg, #f7a8d7 0%, #c6b6f5 100%);
        color: #fff;
        box-shadow: 0 4px 16px #f7a8d7, 0 0 24px #c6b6f5;
    }
    .menu-btn {
        display: block;
        z-index: 300;
    }
    /* Overlay for menu */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100vw; height: 100vh;
        background: rgba(24, 20, 35, 0.7);
        z-index: 150;
        transition: opacity 0.3s;
    }
    .menu-overlay.active {
        display: block;
        opacity: 1;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }

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

    .social-links {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .social-grid {
        gap: 2rem;
    }
    
    .social-card {
        width: 80px;
        height: 80px;
    }
    
    .social-card i {
        font-size: 2rem;
    }

    .about-image img {
        width: 70%;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-image {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .stats {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Section Enhancements */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.1;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.1;
    z-index: -1;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

/* Content Card Enhancements */
.content-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.content-card:hover::before {
    opacity: 0.1;
}

.content-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 139, 0.2);
}

.card-image {
    position: relative;
    overflow: hidden;
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.7));
    opacity: 0;
    transition: all 0.4s ease;
}

.content-card:hover .card-image::after {
    opacity: 1;
}

/* Social Media Enhancements */
.social-card {
    position: relative;
    overflow: hidden;
}

.social-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.social-card:hover::after {
    width: 200%;
    height: 200%;
}

/* Contact Form Enhancements */
.contact-form {
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.05;
    animation: rotate 20s linear infinite;
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 107, 139, 0.2);
    transform: translateY(-2px);
}

/* Stats Card Enhancements */
.stat-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.stat-card:hover::before {
    opacity: 0.1;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 139, 0.15);
}

/* Section Header Enhancements */
.section-header {
    position: relative;
    margin-bottom: var(--spacing-xl);
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 20px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .hero::before,
    .hero::after {
        display: none;
    }
    
    .content-card:hover {
        transform: translateY(-5px);
    }
    
    .stat-card:hover {
        transform: translateY(-3px);
    }
}

/* Contact Form Button */
.contact-form button[type="submit"] {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border: none;
    border-radius: var(--radius-lg);
    padding: 1rem 2rem;
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.contact-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-form button[type="submit"]:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.contact-form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.contact-form button[type="submit"] i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.contact-form button[type="submit"]:hover i {
    transform: translateX(5px);
}

.contact-form button[type="submit"] .fa-spinner {
    animation: spin 1s linear infinite;
}

/* Click animation */
.contact-form button[type="submit"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.contact-form button[type="submit"]:active::after {
    width: 200%;
    height: 200%;
}

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

/* Contact Form Status Messages */
.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 500;
}

.form-status.success {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.form-status.error {
    background-color: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid #f44336;
}

/* Collaborations Section */
.collaborations {
    padding: var(--spacing-xl) 0;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.collaborations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--accent) 0%, transparent 70%);
    opacity: 0.05;
    z-index: 0;
}

.collab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.collab-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.collab-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.collab-image {
    position: relative;
    width: 100%;
    padding-top: 66.67%; /* 3:2 Aspect Ratio */
    overflow: hidden;
}

.collab-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collab-card:hover .collab-image img {
    transform: scale(1.05);
}

.collab-content {
    padding: var(--spacing-lg);
}

.collab-content h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.collab-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
    line-height: 1.6;
}

.collab-tags {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.collab-tags span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .collab-grid {
        grid-template-columns: 1fr;
        padding: 0 var(--spacing-md);
    }
    
    .collab-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Sparkle/Star/Heart Background Accents */
.hero::after, .collaborations::after, .contact::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0; top: 0;
    background-image:
        url('https://svgshare.com/i/13kA.svg'), /* sparkle */
        url('https://svgshare.com/i/13kB.svg'), /* heart */
        url('https://svgshare.com/i/13kC.svg'); /* star */
    background-repeat: repeat;
    background-size: 60px, 40px, 50px;
    opacity: 0.04;
    animation: sparkle-move 40s linear infinite;
}
@keyframes sparkle-move {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 100px 200px, 200px 100px, 150px 300px; }
}

/* Section Headers - Softer Glow & Shimmer */
.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    text-align: center;
    position: relative;
    z-index: 1;
}
@keyframes shimmer {
    0% { filter: brightness(1.05); }
    50% { filter: brightness(1.15) drop-shadow(0 0 4px var(--primary-light)); }
    100% { filter: brightness(1.05); }
}

/* Buttons - Softer Rounded & Glowy */
.btn, .contact-form button[type="submit"] {
    border-radius: var(--radius-lg);
    box-shadow: 0 0 8px var(--primary-light), 0 0 16px var(--accent-light);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.btn:hover, .contact-form button[type="submit"]:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
    box-shadow: 0 0 16px var(--primary), 0 0 24px var(--accent);
    filter: brightness(1.05);
}

/* Cards - Softer Rounded & Glow */
.stat-card, .content-card, .info-card, .collab-card {
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(247, 168, 215, 0.06), 0 4px 16px rgba(198, 182, 245, 0.06);
    border: 1.5px solid var(--primary-light);
    background: linear-gradient(135deg, var(--surface) 60%, var(--surface-light) 100%);
    transition: box-shadow 0.3s, border-color 0.3s;
}
.stat-card:hover, .content-card:hover, .info-card:hover, .collab-card:hover {
    box-shadow: 0 8px 24px var(--primary), 0 0 32px var(--accent-light);
    border-color: var(--primary);
}

/* Tag/Label - Heart Accent */
.section-label {
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    border-radius: 20px;
    padding: 0.5rem 1.5rem 0.5rem 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
}
.section-label::after {
    content: '\f004';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--heart);
    margin-left: 0.5em;
    font-size: 1.1em;
    vertical-align: middle;
    opacity: 0.7;
}

/* Add a little more padding and roundness to forms */
.contact-form, .form-group input, .form-group textarea {
    border-radius: var(--radius-md);
}

/* Gentle Pastel Gradient Overlay */
.hero::before, .collaborations::before, .contact::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(247,168,215,0.10) 0%, rgba(198,182,245,0.10) 100%);
}

/* Message Popup Styles */
.message-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.message-popup.show {
    transform: translateX(0);
}

.popup-content {
    background: var(--surface);
    border: 1px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    min-width: 300px;
    max-width: 400px;
    box-shadow: var(--shadow-lg);
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideIn 0.3s ease-out;
}

.popup-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0.1;
    border-radius: var(--radius-lg);
    z-index: -1;
}

.popup-message {
    color: var(--text-primary);
    font-size: 1rem;
    margin: 0;
    flex: 1;
}

.success-icon {
    color: #4CAF50;
    font-size: 1.5rem;
    display: none;
}

.error-icon {
    color: #f44336;
    font-size: 1.5rem;
    display: none;
}

.popup-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: var(--text-primary);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive styles for popup */
@media (max-width: 480px) {
    .message-popup {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .popup-content {
        min-width: auto;
        width: 100%;
    }
} 