* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 30%, #16213e 70%, #0f3460 100%);
    --secondary-bg: rgba(255, 255, 255, 0.08);
    --text-primary: #f8fafc;
    --text-secondary: rgba(248, 250, 252, 0.85);
    --accent-primary: #8b5cf6;
    --accent-secondary: #10b981;
    --accent-tertiary: #f472b6;
    --card-bg: rgba(255, 255, 255, 0.08);
    --card-border: rgba(255, 255, 255, 0.15);
    --nav-bg: rgba(0, 0, 0, 0.4);
    --nav-bg-scroll: rgba(15, 15, 35, 0.98);
    --section-bg: rgba(0, 0, 0, 0.25);
    --footer-bg: rgba(0, 0, 0, 0.6);
    --particle-color: rgba(139, 92, 246, 0.8);
    --quote-bg: rgba(139, 92, 246, 0.15);
    --glow-primary: rgba(139, 92, 246, 0.6);
    --glow-secondary: rgba(16, 185, 129, 0.6);
    --shadow-light: rgba(255, 255, 255, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--primary-bg);
    transition: all 0.3s ease;
    overflow: hidden;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.2) 0%, transparent 50%);
    animation: backgroundShift 15s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--particle-color);
    animation: float 6s ease-in-out infinite;
    will-change: transform;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 3px;
    height: 3px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    width: 5px;
    height: 5px;
    top: 80%;
    left: 40%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    width: 2px;
    height: 2px;
    top: 40%;
    left: 60%;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    width: 4px;
    height: 4px;
    top: 10%;
    left: 90%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-15px); 
    }
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(15px) saturate(150%);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--card-border);
    box-shadow: 0 4px 20px var(--shadow-dark);
}

.navbar.scrolled {
    background: var(--nav-bg-scroll);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 30px var(--shadow-dark);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

.nav-logo h2 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--glow-primary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-logo h2:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px var(--accent-primary));
}

.nav-actions {
    display: flex;
    align-items: center;    gap: 25px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 16px;
    border-radius: 25px;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 25px;
    z-index: -1;
}

.nav-menu a:hover::before {
    opacity: 0.2;
}

.nav-menu a:hover {
    color: var(--accent-secondary);
    transform: translateY(-2px);
    text-shadow: 0 0 20px var(--accent-secondary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(153, 69, 255, 0.15) 0%, transparent 70%),
        radial-gradient(circle at 70% 60%, rgba(20, 241, 149, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    animation: slideInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.glitch {
    position: relative;
    color: var(--text-primary);
    text-shadow: 
        0 0 30px var(--glow-primary),
        0 0 60px var(--glow-primary);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 3s infinite;
    color: var(--accent-primary);
    z-index: -1;
    text-shadow: 0 0 20px var(--accent-primary);
}

.glitch::after {
    animation: glitch-2 3s infinite;
    color: var(--accent-secondary);
    z-index: -2;
    text-shadow: 0 0 20px var(--accent-secondary);
}

@keyframes glitch-1 {
    0%, 14%, 15%, 49%, 50%, 99%, 100% {
        transform: translate(0);
        opacity: 1;
    }
    15%, 49% {
        transform: translate(-3px, 3px);
        opacity: 0.8;
    }
}

@keyframes glitch-2 {
    0%, 20%, 21%, 62%, 63%, 99%, 100% {
        transform: translate(0);
        opacity: 1;
    }
    21%, 62% {
        transform: translate(3px, -3px);
        opacity: 0.7;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
    animation: slideInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
    animation: slideInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
    padding: 12px 20px;
    background: var(--card-bg);
    border-radius: 50px;
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    width: fit-content;
    box-shadow: 0 8px 32px var(--shadow-dark);
}

.status-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse 2.5s infinite;
    box-shadow: 
        0 0 20px #4ade80,
        0 0 40px #4ade80;
}

.status-dot.offline {
    background: #ef4444;
    box-shadow: 
        0 0 20px #ef4444,
        0 0 40px #ef4444;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.4; 
        transform: scale(1.3);
    }
}

.hero-buttons {
    display: flex;
    gap: 25px;
    animation: slideInLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.btn {
    padding: 16px 35px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px var(--shadow-dark);
    backdrop-filter: blur(15px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--text-primary);
    border: 1px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 25px var(--glow-primary);
    filter: brightness(1.1);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--text-primary);
    border: 2px solid var(--card-border);
    backdrop-filter: blur(15px);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    border-color: transparent;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 25px var(--glow-secondary);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.floating-element {
    font-size: 10rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px var(--accent-primary));
    position: relative;
    z-index: 2;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 80px;
    position: relative;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(50px);
    z-index: -1;
}

.about {
    padding: 120px 0;
    background: var(--section-bg);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px) saturate(150%);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid var(--card-border);
    box-shadow: 0 15px 40px var(--shadow-dark);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow-dark);
    border-color: var(--accent-primary);
}

.about-card h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.about-card p {
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.quote {
    background: var(--quote-bg);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--accent-primary);
    font-style: italic;
    margin-top: 25px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px var(--shadow-dark);
}

.quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 3rem;
    color: var(--accent-primary);
    opacity: 0.5;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px) saturate(150%);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow-dark);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px var(--shadow-dark);
    border-color: var(--accent-secondary);
}

.stat-card h4 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.clips {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.clips::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(153, 69, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.clips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
}

.clip-card {
    background: var(--card-bg);
    backdrop-filter: blur(25px) saturate(180%);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 15px 50px var(--shadow-dark),
        inset 0 1px 0 var(--shadow-light);
    position: relative;
    transform-style: preserve-3d;
}

.clip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.clip-card:hover::before {
    opacity: 0.05;
}

.clip-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 
        0 35px 80px var(--shadow-dark),
        0 0 60px var(--glow-primary);
    border-color: var(--accent-primary);
}

.clip-embed {
    width: 100%;
    height: 220px;
    border: none;
    border-radius: 20px 20px 0 0;
    transition: all 0.4s ease;
}

.clip-placeholder {
    background: linear-gradient(135deg, var(--card-bg), var(--secondary-bg));
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.clip-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--shadow-light), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.clip-placeholder i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px var(--accent-primary));
}

.clip-placeholder h4 {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

.clip-link {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(153, 69, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.clip-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.clip-link:hover::before {
    left: 100%;
}

.clip-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(153, 69, 255, 0.6),
        0 0 30px var(--accent-secondary);
    filter: brightness(1.1);
}

.clip-link-small {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-tertiary));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    box-shadow: 0 6px 20px rgba(20, 241, 149, 0.3);
}

.clip-link-small:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 12px 30px rgba(20, 241, 149, 0.5),
        0 0 25px var(--accent-primary);
    filter: brightness(1.1);
}

.clip-info {
    padding: 25px;
    position: relative;
}

.clip-info h3 {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.social {
    padding: 120px 0;
    background: var(--section-bg);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.social::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(244, 114, 182, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.social-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px) saturate(150%);
    padding: 45px 35px;
    border-radius: 25px;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-dark);
    will-change: transform;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-dark);
    border-color: var(--accent-primary);
}

.social-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle 120px at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                var(--accent-primary) 0%, 
                transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 25px;
}

.social-card:hover::after {
    opacity: 0.15;
}

.social-card .glow-effect {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-card:hover .glow-effect {
    opacity: 0.3;
}

.social-card i {
    font-size: 3rem;
    margin-bottom: 25px;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-card:hover i {
    transform: scale(1.1);
}

.social-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.social-card:hover h3 {
    transform: translateY(-2px);
    text-shadow: 0 0 20px var(--accent-primary);
}

.social-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.social-card:hover p {
    opacity: 1;
    transform: translateY(-2px);
}

.social-card .floating-icon {
    position: absolute;
    opacity: 0;
    font-size: 1.2rem;
    color: var(--accent-primary);
    pointer-events: none;
    animation: float-away 2.5s ease-out forwards;
}

@keyframes float-away {
    0% {
        opacity: 1;
        transform: translateY(0) scale(0) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-30px) scale(1) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-60px) scale(0) rotate(360deg);
    }
}

@keyframes sparkle-burst {
    0% {
        opacity: 1;
        transform: scale(0) translateY(0) rotate(0deg);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.5) translateY(-25px) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0) translateY(-50px) rotate(360deg);
    }
}


.footer {
    background: var(--footer-bg);
    backdrop-filter: blur(25px) saturate(180%);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.footer p {
    opacity: 0.9;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 400;
}

.designer-credit {
    font-size: 0.95rem;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--card-border);
}

.designer-link {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
}

.designer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    transition: width 0.4s ease;
}

.designer-link:hover::after {
    width: 100%;
}

.designer-link:hover {
    filter: drop-shadow(0 0 15px var(--accent-primary));
    transform: scale(1.05) translateY(-2px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }
    
    .hamburger span {
        width: 28px;
        height: 3px;
        background: var(--text-primary);
        margin: 4px 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 2px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -6px);
    }
      .nav-actions {
        gap: 20px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--nav-bg-scroll);
        backdrop-filter: blur(25px) saturate(180%);
        width: 100%;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 30px 0;
        border-top: 1px solid var(--card-border);
        box-shadow: 0 10px 40px var(--shadow-dark);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .hero {
        padding: 140px 20px 40px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .floating-element {
        font-size: 6rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .social-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .clips-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .floating-element {
        font-size: 5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        height: 70px;
        padding: 0 15px;
    }
    
    .nav-logo h2 {
        font-size: 1.6rem;
    }
    
    .about-card,
    .stat-card {
        padding: 30px 20px;
    }
    
    .clip-info {
        padding: 20px;
    }
    
    .social-card {
        padding: 35px 25px;
    }
}

* {
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                color 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .floating-element {
    filter: drop-shadow(0 0 40px var(--accent-primary));
}

[data-theme="dark"] .glitch::before {
    text-shadow: 0 0 25px var(--accent-primary);
}

[data-theme="dark"] .glitch::after {
    text-shadow: 0 0 25px var(--accent-secondary);
}

[data-theme="dark"] .particle {
    box-shadow: 
        0 0 30px var(--particle-color),
        0 0 60px var(--particle-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.navbar,
.social-card,
.clip-card,
.btn,
.particle,
.hero-image,
.floating-element {
    will-change: transform;
    transform: translateZ(0);
}

.btn:focus,
.nav-menu a:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}
