﻿/* ======================================
   HOME PAGE STYLES
   Extracted from index.html inline styles
   ====================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --bg-primary: #030308;
    --bg-secondary: #0a0a12;
    --bg-glass: rgba(10, 10, 18, 0.85);
    --bg-card: rgba(20, 20, 35, 0.6);

    --text-primary: #ffffff;
    --text-secondary: #9999bb;
    --text-muted: #666688;

    --accent-purple: #8b5cf6;
    --accent-blue: #3b82f6;
    --accent-cyan: #06b6d4;
    --accent-pink: #ec4899;
    --accent-lime: #84cc16;

    --gradient-primary: linear-gradient(135deg, #8b5cf6, #3b82f6);
    --gradient-accent: linear-gradient(135deg, #8b5cf6, #06b6d4, #ec4899);
    --gradient-text: linear-gradient(135deg, #fff 0%, #a78bfa 50%, #3b82f6 100%);

    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

    --font-primary: 'Inter', sans-serif;
    --font-mono: 'Space Mono', monospace;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-purple) var(--bg-secondary);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-purple);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    mix-blend-mode: difference;
    transition: transform 0.15s ease, border-color 0.2s ease;
}

.cursor-glow {
    position: fixed;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
}

.cursor-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
}

.cursor.hover {
    transform: scale(2.5);
    border-color: var(--accent-cyan);
}

@media (max-width: 768px) {

    .cursor,
    .cursor-glow,
    .cursor-trail {
        display: none;
    }

    body {
        cursor: auto;
    }
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 50px rgba(139, 92, 246, 0.8));
    }
}

/* ===== ANIMATED BACKGROUND ===== */
.bg-animated {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-lime));
    bottom: -150px;
    right: -150px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

.orb-4 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--accent-lime), var(--accent-cyan));
    bottom: 20%;
    left: 10%;
    animation-delay: -15s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(20px, 10px) scale(1.02);
    }
}

/* Perspective Grid */
.perspective-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    top: 50%;
    left: -50%;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg);
    animation: gridScroll 20s linear infinite;
}

@keyframes gridScroll {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(50px);
    }
}

/* Morphing Blobs */
.morph-blob {
    position: absolute;
    opacity: 0.1;
    animation: morphBlob 15s ease-in-out infinite;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    top: 20%;
    right: 10%;
}

.blob-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    bottom: 30%;
    left: 5%;
    animation-delay: -5s;
}

@keyframes morphBlob {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    50% {
        border-radius: 50% 60% 30% 60% / 30% 40% 70% 50%;
    }

    75% {
        border-radius: 60% 40% 60% 30% / 70% 50% 40% 60%;
    }
}

/* Floating Particles */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-accent);
    background-size: 200% 100%;
    animation: gradientShift 3s linear infinite;
    z-index: 10000;
    width: 0%;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.back-to-top i {
    font-size: 1rem;
    z-index: 2;
}

.progress-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-ring-circle {
    fill: none;
    stroke: var(--accent-purple);
    stroke-width: 3;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 0.1s;
}

/* ===== FLOATING ACTION BUTTON ===== */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
}

.fab-main {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    transition: var(--transition-normal);
    position: relative;
    z-index: 2;
}

.fab-main:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.6);
}

.fab-container.open .fab-main {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
}

.fab-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.fab-container.open .fab-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-item {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
    position: relative;
}

.fab-item:hover {
    background: var(--accent-purple);
    transform: scale(1.15);
}

.fab-item::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    background: var(--bg-card);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    border: 1px solid var(--glass-border);
}

.fab-item:hover::before {
    opacity: 1;
    visibility: visible;
}

/* ===== QUICK STATS POPUP ===== */
.quick-stats-popup {
    position: fixed;
    bottom: 100px;
    left: 30px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: 997;
    backdrop-filter: blur(10px);
}

.quick-stats-popup.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.quick-stats-content h4 {
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.quick-stat {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.quick-stat span:last-child {
    color: var(--accent-cyan);
    font-family: var(--font-mono);
}

@media (max-width: 768px) {
    .fab-container {
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        bottom: 90px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .quick-stats-popup {
        display: none;
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-video {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 120px 0 60px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-lime);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    margin-bottom: 1rem;
}

.greeting {
    display: block;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.name {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--accent-cyan);
    clip-path: inset(0 0 0 0);
    animation: glitch-1 2s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: 2px 0 var(--accent-pink);
    clip-path: inset(0 0 0 0);
    animation: glitch-2 2s infinite linear alternate-reverse;
}

@keyframes glitch-1 {

    0%,
    100% {
        clip-path: inset(0 0 95% 0);
    }

    20% {
        clip-path: inset(30% 0 50% 0);
    }

    40% {
        clip-path: inset(70% 0 10% 0);
    }

    60% {
        clip-path: inset(10% 0 80% 0);
    }

    80% {
        clip-path: inset(50% 0 30% 0);
    }
}

@keyframes glitch-2 {

    0%,
    100% {
        clip-path: inset(95% 0 0 0);
    }

    20% {
        clip-path: inset(50% 0 30% 0);
    }

    40% {
        clip-path: inset(10% 0 70% 0);
    }

    60% {
        clip-path: inset(80% 0 10% 0);
    }

    80% {
        clip-path: inset(30% 0 50% 0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
    min-height: 2rem;
}

.typing-cursor {
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4), 0 0 50px rgba(139, 92, 246, 0.2);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
}

.btn-secondary:hover {
    border-color: var(--accent-purple);
    background: rgba(139, 92, 246, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

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

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

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
}

.hero-logo {
    width: 350px;
    height: 350px;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--accent-purple);
    filter: blur(100px);
    opacity: 0.3;
    border-radius: 50%;
    z-index: -1;
    animation: pulseGlow 4s ease-in-out infinite;
}

/* Hero Rings */
.hero-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    animation: ringPulse 4s ease-in-out infinite;
}

.ring-1 {
    width: 380px;
    height: 380px;
    animation-delay: 0s;
}

.ring-2 {
    width: 450px;
    height: 450px;
    animation-delay: 0.5s;
}

.ring-3 {
    width: 520px;
    height: 520px;
    animation-delay: 1s;
}

@keyframes ringPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.1;
    }
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
}

.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: heroParticle 8s linear infinite;
}

.hero-particles span:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.hero-particles span:nth-child(2) {
    top: 20%;
    left: 80%;
    animation-delay: 0.5s;
}

.hero-particles span:nth-child(3) {
    top: 40%;
    left: 10%;
    animation-delay: 1s;
}

.hero-particles span:nth-child(4) {
    top: 60%;
    left: 90%;
    animation-delay: 1.5s;
}

.hero-particles span:nth-child(5) {
    top: 80%;
    left: 30%;
    animation-delay: 2s;
}

.hero-particles span:nth-child(6) {
    top: 15%;
    left: 50%;
    animation-delay: 2.5s;
}

.hero-particles span:nth-child(7) {
    top: 70%;
    left: 70%;
    animation-delay: 3s;
}

.hero-particles span:nth-child(8) {
    top: 50%;
    left: 5%;
    animation-delay: 3.5s;
}

.hero-particles span:nth-child(9) {
    top: 30%;
    left: 95%;
    animation-delay: 4s;
}

.hero-particles span:nth-child(10) {
    top: 90%;
    left: 60%;
    animation-delay: 4.5s;
}

@keyframes heroParticle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: translate(20px, -30px) scale(1.5);
        opacity: 0.8;
    }

    90% {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Skills Marquee */
.skills-marquee {
    margin-top: 2rem;
    margin-bottom: 0;
    overflow: hidden;
    padding: 1.5rem 0;
    background: var(--bg-glass);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    width: 100%;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
    --marquee-offset: -25%;
}

.marquee-content {
    display: flex;
    gap: 2rem;
    padding-right: 2rem;
    flex-shrink: 0;
    align-items: center;
}

.marquee-content span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: color 0.3s ease;
}

.marquee-content span:hover {
    color: var(--primary-color);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(var(--marquee-offset, -25%));
    }
}

/* Pause on hover */
.skills-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ===== SECTIONS COMMON ===== */
section {
    padding: 100px 0;
    position: relative;
}

/* Section divider */
section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-purple), transparent);
    opacity: 0.5;
}

section:last-of-type::after {
    display: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* ===== SECTION DIVIDERS ===== */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 2rem 0;
    max-width: 600px;
    margin: 0 auto;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-purple), transparent);
    opacity: 0.3;
}

.divider-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--accent-purple);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.divider-icon:hover {
    transform: rotate(360deg) scale(1.1);
    background: var(--gradient-primary);
    color: white;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-purple);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

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

.about-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.highlight-item i {
    color: var(--accent-purple);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-stat-card {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
}

.about-stat-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

.about-stat-card .stat-icon {
    font-size: 2rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
}

.about-stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: inline;
}

.about-stat-card .stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
}

.about-stat-card .stat-label {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== SKILLS SECTION ===== */
.skills-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.skill-card {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-normal);
}

.skill-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-5px);
}

.skill-card.large {
    grid-column: span 2;
}

.skill-card.wide {
    grid-column: span 2;
}

.skill-card .skill-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.skill-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tags span {
    padding: 6px 14px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.skill-tags span:hover {
    background: rgba(139, 92, 246, 0.2);
    color: var(--text-primary);
}

/* ===== PROJECTS SECTION ===== */
.projects-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1.5rem;
}

.project-card {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-normal);
}

.project-card:hover {
    border-color: var(--accent-purple);
}

.project-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.project-card.wide {
    grid-column: span 2;
}

.project-card.tall {
    grid-row: span 2;
}

.project-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--bg-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(139, 92, 246, 0.2);
}

.project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.project-tags span {
    padding: 4px 10px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-purple);
}

.project-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.project-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.project-links {
    display: flex;
    gap: 0.75rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.project-link:hover {
    transform: translateY(-2px);
}

/* 3D Tilt Effect */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* ===== SOCIAL SECTION ===== */
.social-section {
    padding: 6rem 0;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.social-card {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

/* Platform-specific hover colors */
.social-card[data-platform="discord"]:hover {
    border-color: #5865F2;
    box-shadow: 0 20px 40px rgba(88, 101, 242, 0.3);
}

.social-card[data-platform="discord"]::before {
    background: #5865F2;
}

.social-card[data-platform="tiktok"]:hover {
    border-color: #ff0050;
    box-shadow: 0 20px 40px rgba(255, 0, 80, 0.3);
}

.social-card[data-platform="tiktok"]::before {
    background: linear-gradient(45deg, #00f2ea, #ff0050);
}

.social-card[data-platform="youtube"]:hover {
    border-color: #FF0000;
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
}

.social-card[data-platform="youtube"]::before {
    background: #FF0000;
}

.social-card[data-platform="twitch"]:hover {
    border-color: #9146FF;
    box-shadow: 0 20px 40px rgba(145, 70, 255, 0.3);
}

.social-card[data-platform="twitch"]::before {
    background: #9146FF;
}

.social-card[data-platform="kick"]:hover {
    border-color: #53FC18;
    box-shadow: 0 20px 40px rgba(83, 252, 24, 0.3);
}

.social-card[data-platform="kick"]::before {
    background: #53FC18;
}

.social-card[data-platform="instagram"]:hover {
    border-color: #E4405F;
    box-shadow: 0 20px 40px rgba(228, 64, 95, 0.3);
}

.social-card[data-platform="instagram"]::before {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-card[data-platform="twitter"]:hover {
    border-color: #1DA1F2;
    box-shadow: 0 20px 40px rgba(29, 161, 242, 0.3);
}

.social-card[data-platform="twitter"]::before {
    background: #1DA1F2;
}

.social-card[data-platform="github"]:hover {
    border-color: #6e5494;
    box-shadow: 0 20px 40px rgba(110, 84, 148, 0.3);
}

.social-card[data-platform="github"]::before {
    background: #6e5494;
}

.social-card[data-platform="email"]:hover {
    border-color: #8b5cf6;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.social-card[data-platform="email"]::before {
    background: #8b5cf6;
}

.social-card .social-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-card:hover .social-icon {
    transform: scale(1.1);
}

.social-card .social-info {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.social-card .social-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.social-card .social-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

@media (max-width: 1024px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ===== QUICK LINKS SECTION ===== */
.quick-links-section {
    padding: 6rem 0;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.quick-link-card {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.quick-link-card:hover::before {
    left: 100%;
}

.quick-link-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.quick-link-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

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

.quick-link-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.quick-link-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.quick-link-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    color: var(--accent-purple);
    transition: var(--transition-normal);
}

.quick-link-card:hover .quick-link-arrow {
    background: var(--accent-purple);
    color: white;
    transform: translateX(5px);
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info>p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition-normal);
}

.contact-method:hover {
    border-color: var(--accent-purple);
    transform: translateX(10px);
    background: var(--bg-secondary);
}

.contact-method:hover .method-value,
.contact-method:hover .method-label {
    color: var(--text-primary);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.method-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.method-value {
    font-weight: 600;
}

.contact-form-wrapper {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo-video {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo span {
    font-weight: 700;
    font-size: 1.25rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--accent-purple);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social .social-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-social .social-icon:hover {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
    transform: translateY(-3px);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.2s;
}

.reveal-delay-2 {
    transition-delay: 0.4s;
}

/* ===== ANNOUNCEMENTS SECTION ===== */
.announcements {
    padding: 3rem 0;
}

.announcements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.announcement-card {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.announcement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

.announcement-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-5px);
}

.announcement-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.announcement-badge.update {
    background: rgba(59, 130, 246, 0.2);
    color: var(--accent-blue);
}

.announcement-badge.event {
    background: rgba(236, 72, 153, 0.2);
    color: var(--accent-pink);
}

.announcement-badge.beta {
    background: rgba(132, 204, 22, 0.2);
    color: var(--accent-lime);
}

.announcement-badge.info {
    background: rgba(139, 92, 246, 0.2);
    color: var(--accent-purple);
}

.announcement-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.announcement-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.announcement-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.announcement-skeleton {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    height: 180px;
    position: relative;
    overflow: hidden;
}

.skeleton-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: shimmer 1.5s infinite;
}

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

    100% {
        transform: translateX(100%);
    }
}

/* ===== GIVEAWAY WIDGET ===== */
.giveaway-section {
    padding: 60px 0;
}

.giveaway-widget {
    background: var(--bg-glass);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.giveaway-widget-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    animation: rotateGlow 10s linear infinite;
}

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

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

.giveaway-widget-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.giveaway-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.giveaway-info {
    flex: 1;
    min-width: 200px;
}

.giveaway-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-purple);
    margin-bottom: 0.5rem;
}

.giveaway-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.giveaway-info p {
    color: var(--text-secondary);
}

.giveaway-timer {
    display: flex;
    gap: 1rem;
}

.timer-item {
    text-align: center;
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 12px;
    min-width: 60px;
}

.timer-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-mono);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timer-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.giveaway-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-normal);
}

.giveaway-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

/* ===== EXPERIENCE TIMELINE ===== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

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

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -44px;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--accent-purple);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.timeline-content {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: var(--transition-normal);
}

.timeline-content:hover {
    border-color: var(--accent-purple);
    transform: translateX(10px);
}

.timeline-date {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-purple);
    margin-bottom: 0.75rem;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.timeline-company {
    color: var(--accent-cyan);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.timeline-content p:last-child {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-purple);
    opacity: 0.3;
    line-height: 0;
    display: block;
    margin-bottom: -1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 2rem;
    }

    .hero-logo {
        width: 250px;
        height: 250px;
    }

    .hero-stats {
        justify-content: center;
    }

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

    .skills-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-bento {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .nav-menu,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-glass);
        backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
        z-index: 1000;
    }

    .name {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .skills-bento {
        grid-template-columns: 1fr;
    }

    .skill-card.large,
    .skill-card.wide {
        grid-column: span 1;
    }

    .projects-bento {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .project-card.large,
    .project-card.wide,
    .project-card.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Timeline mobile */
    .timeline {
        padding-left: 30px;
    }

    .timeline-dot {
        left: -34px;
    }

    .timeline-content:hover {
        transform: none;
    }

    /* Testimonials mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Hero mobile improvements */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-logo {
        width: 180px;
        height: 180px;
    }

    .hero-rings .ring {
        display: none;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .hero-description {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    /* Quick links mobile */
    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .quick-link-card {
        padding: 1.5rem;
    }

    /* Contact mobile */
    .contact-methods {
        gap: 1rem;
    }

    .contact-method {
        padding: 1rem;
    }

    /* Marquee mobile */
    .skills-marquee {
        margin-top: 1.5rem;
        padding: 0.75rem 0;
    }

    .marquee-content span {
        font-size: 0.85rem;
        padding: 0 12px;
    }

    /* Section spacing mobile */
    section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-tag {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    section {
        padding: 40px 0;
    }

    .name {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

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

    /* Giveaway widget mobile */
    .giveaway-widget-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .giveaway-timer {
        justify-content: center;
        flex-wrap: wrap;
    }

    .timer-item {
        min-width: 50px;
        padding: 0.5rem;
    }

    .timer-value {
        font-size: 1.1rem;
    }

    .timer-label {
        font-size: 0.65rem;
    }

    .giveaway-cta {
        width: 100%;
        justify-content: center;
    }

    /* Announcements mobile */
    .announcements-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .announcement-card {
        padding: 1.25rem;
    }

    .announcement-card h4 {
        font-size: 1rem;
    }

    .announcement-card p {
        font-size: 0.85rem;
    }

    /* Social grid mobile */
    .social-grid {
        gap: 0.75rem;
    }

    .social-card {
        padding: 1.25rem;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .social-card h3 {
        font-size: 1rem;
    }

    /* Footer mobile */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .footer-col h4 {
        margin-bottom: 0.75rem;
    }

    /* Hero visual mobile */
    .hero-logo {
        width: 150px;
        height: 150px;
    }

    .hero-glow {
        width: 200px;
        height: 200px;
    }

    .hero-particles span {
        display: none;
    }

    /* Scroll indicator mobile */
    .scroll-indicator {
        display: none;
    }

    /* Section titles mobile */
    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* Contact form mobile */
    .contact-form {
        padding: 0;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 0.9rem;
    }

    /* Navbar mobile */
    .navbar {
        padding: 12px 0;
    }

    .nav-logo {
        gap: 8px;
    }

    .logo-video {
        width: 36px;
        height: 36px;
    }

    .logo-text {
        font-size: 1.1rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .name {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .giveaway-timer {
        gap: 6px;
    }

    .timer-item {
        min-width: 45px;
    }
}

/* ===== EXTRA EFFECTS ===== */

/* Hover glow on interactive elements */
.btn::before,
.nav-cta::before,
.project-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(15px);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn:hover::before,
.nav-cta:hover::before,
.project-link:hover::before {
    opacity: 0.5;
}

/* Card shine effect */
.skill-card::before,
.project-card::before,
.testimonial-card::before,
.about-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.skill-card:hover::before,
.project-card:hover::before,
.testimonial-card:hover::before,
.about-stat-card:hover::before {
    left: 100%;
}

.skill-card,
.project-card,
.testimonial-card,
.about-stat-card {
    position: relative;
    overflow: hidden;
}

/* Animated gradient text */
.hero-title .name {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6, #06b6d4, #ec4899, #8b5cf6);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 5s ease infinite;
}

@keyframes gradientText {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Hover glow effect for buttons */
.btn-primary {
    position: relative;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: inherit;
    transform: translate(-50%, -50%);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::after {
    opacity: 0.5;
}

/* Pulse animation for badges */
.hero-badge .badge-dot {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

/* Floating animation for icons */
.skill-icon {
    animation: float 3s ease-in-out infinite;
}

.skill-card:nth-child(2) .skill-icon {
    animation-delay: 0.5s;
}

.skill-card:nth-child(3) .skill-icon {
    animation-delay: 1s;
}

.skill-card:nth-child(4) .skill-icon {
    animation-delay: 1.5s;
}

.skill-card:nth-child(5) .skill-icon {
    animation-delay: 2s;
}

.skill-card:nth-child(6) .skill-icon {
    animation-delay: 2.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Gradient border animation on hover */
.contact-form-wrapper {
    position: relative;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-accent);
    background-size: 300% 300%;
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    animation: gradientShift 3s ease infinite;
    transition: opacity 0.3s ease;
}

.contact-form-wrapper:hover::before {
    opacity: 1;
}

/* Text selection */
::selection {
    background: rgba(139, 92, 246, 0.3);
    color: white;
}

/* Focus styles */
*:focus-visible {
    outline: 2px solid var(--accent-purple);
    outline-offset: 2px;
}

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

/* Loading animation for images */
img {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img.loaded {
    opacity: 1;
}