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

:root {
    --primary: #00ff9d;
    --secondary: #00d4ff;
    --accent: #ff0062;
    --accent-2: #ff6b00;
    --dark: #0a0a0f;
    --dark-light: #1a1a2e;
    --dark-lighter: #252538;
    --text: #ffffff;
    --text-muted: #a0a0b0;
    --gradient-1: linear-gradient(135deg, #00ff9d 0%, #00d4ff 100%);
    --gradient-2: linear-gradient(135deg, #ff0062 0%, #ff6b00 100%);
    --gradient-3: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow-glow: 0 0 60px rgba(0, 255, 157, 0.3);
}

/* Custom Cursor */
.custom-cursor {
    width: 10px;
    height: 10px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.custom-cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.custom-cursor.hover {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 157, 0.1);
    border-color: var(--primary);
}

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

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    position: relative;
    margin-bottom: 2rem;
}

.loading-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

.loading-spinner {
    width: 100px;
    height: 100px;
    border: 3px solid rgba(0, 255, 157, 0.1);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

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

.loading-progress {
    width: 300px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.loading-progress-bar {
    height: 100%;
    background: var(--gradient-1);
    width: 0%;
    animation: loadProgress 2s ease-out forwards;
}

@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

.loading-message {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInOut 2s ease-in-out infinite;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    cursor: none;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

body * {
    cursor: none;
}

/* Particles Background */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at bottom, #1a1a2e 0%, #0a0a0f 100%);
}

#particles-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 157, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 98, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.nav.scrolled {
    padding: 1rem 5%;
    background: rgba(10, 10, 15, 0.95);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.logo-pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

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

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.4) 0%, transparent 70%);
    top: -20%;
    left: -10%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    bottom: -10%;
    right: -5%;
    animation-delay: 7s;
}

.hero-orb-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 98, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.7rem 1.5rem;
    background: rgba(0, 255, 157, 0.1);
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

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

.hero-stats-mini {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.7s;
}

.mini-stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.mini-stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mini-stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 255, 157, 0.2);
}

.hologram-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: 
        linear-gradient(0deg, transparent 48%, rgba(0, 255, 157, 0.1) 50%, transparent 52%),
        linear-gradient(90deg, transparent 48%, rgba(0, 255, 157, 0.1) 50%, transparent 52%);
    background-size: 20px 20px;
    animation: hologramScan 4s linear infinite;
    opacity: 0.3;
}

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

.bike-hologram {
    width: 400px;
    height: 300px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(0, 255, 157, 0.6));
}

.bike-wheel {
    animation: rotateWheel 3s linear infinite;
    transform-origin: center;
}

@keyframes rotateWheel {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bike-parts {
    animation: bikeHover 3s ease-in-out infinite;
}

@keyframes bikeHover {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-content {
    flex: 1;
    max-width: 650px;
    z-index: 2;
}

.hero-subtitle {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

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

.hero-tagline {
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text-muted);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.hero-cta {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(30px);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--dark);
    box-shadow: 0 10px 40px rgba(0, 255, 157, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 255, 157, 0.4);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 600px;
}

.bike-container {
    position: relative;
    width: 500px;
    height: 500px;
}

.bike-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.bike-shadow {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    filter: blur(20px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
    0%, 100% { opacity: 0; transform: translateY(-10px); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Section Styles */
section {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.title-number {
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.5;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
}

/* Bikes Section */
.bikes-section {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
    position: relative;
    overflow: hidden;
}

/* Riding Philosophy */
.riding-philosophy {
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.riding-philosophy::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(0, 255, 157, 0.05),
        transparent 30%
    );
    animation: rotate 20s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.riding-philosophy:hover::before {
    opacity: 1;
}

.philosophy-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.philosophy-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem;
    background: rgba(0, 255, 157, 0.05);
    border: 1px solid rgba(0, 255, 157, 0.2);
    border-radius: 15px;
    transition: all 0.4s ease;
    min-width: 150px;
}

.philosophy-badge:hover {
    transform: translateY(-5px);
    background: rgba(0, 255, 157, 0.1);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.3);
}

.philosophy-badge svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.philosophy-badge span {
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

/* Career Timeline */
.career-timeline {
    position: relative;
    margin: 4rem 0;
    padding-left: 50px;
}

.timeline-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 40px;
}

.timeline-dot {
    position: absolute;
    left: -35px;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border: 4px solid var(--dark);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.timeline-content:hover {
    transform: translateX(10px);
    border-color: rgba(0, 255, 157, 0.3);
    box-shadow: 0 10px 40px rgba(0, 255, 157, 0.2);
}

.timeline-date {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 157, 0.1);
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: 20px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.timeline-company {
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-desc {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.timeline-achievements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.05);
    border-left: 3px solid var(--secondary);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(5px);
}

.achievement-item svg {
    width: 24px;
    height: 24px;
    color: var(--secondary);
    flex-shrink: 0;
}

.achievement-item span {
    color: var(--text);
    line-height: 1.6;
}

.philosophy-content {
    text-align: center;
}

.philosophy-quote-large {
    margin-bottom: 2rem;
    position: relative;
}

.quote-icon-large {
    width: 60px;
    height: 60px;
    color: var(--primary);
    margin: 0 auto 1rem;
    opacity: 0.5;
}

.philosophy-quote-large p {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.5;
    font-style: italic;
}

.philosophy-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.9;
}

.bikes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.bike-card {
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.bike-card-inner {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.bike-card-inner:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 157, 0.3);
}

.bike-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bike-card-inner:hover .bike-card-glow {
    opacity: 1;
}

.r1m-glow {
    background: radial-gradient(circle, rgba(255, 0, 98, 0.1) 0%, transparent 70%);
}

.bike-image {
    width: 100%;
    height: 300px;
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
}

.bike-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ninja-bg {
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
}

.r1m-bg {
    background: linear-gradient(135deg, rgba(255, 0, 98, 0.1) 0%, rgba(255, 107, 0, 0.1) 100%);
}

.bike-icon {
    width: 200px;
    height: 100px;
    filter: drop-shadow(0 0 20px rgba(0, 255, 157, 0.5));
    animation: bikeFloat 3s ease-in-out infinite;
}

.r1m-bg .bike-icon {
    filter: drop-shadow(0 0 20px rgba(255, 0, 98, 0.5));
}

@keyframes bikeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.bike-info {
    padding: 0 1rem;
}

.bike-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.bike-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 157, 0.1);
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: 20px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.bike-year {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
}

.bike-badge.beast {
    background: rgba(255, 0, 98, 0.1);
    border-color: rgba(255, 0, 98, 0.3);
    color: var(--accent);
}

.bike-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.bike-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.bike-specs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.spec {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spec-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.spec-value {
    color: var(--text);
    font-weight: 600;
}

/* Bike Highlights */
.bike-highlights {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bike-highlights h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.highlights-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.highlights-list li {
    color: var(--text-muted);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.highlights-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Riding Stats */
.riding-stats {
    margin-top: 5rem;
}

.stats-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 255, 157, 0.4);
    box-shadow: 0 20px 50px rgba(0, 255, 157, 0.3);
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.stat-data {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-unit {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Career Section */
.career-section {
    background: var(--dark);
}

/* Tech Stack */
.tech-stack-section {
    margin-top: 4rem;
}

.tech-stack-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.tech-item:hover::before {
    opacity: 0.1;
}

.tech-item:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 255, 157, 0.3);
}

.tech-icon-wrapper {
    width: 60px;
    height: 60px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.tech-item:hover .tech-icon-wrapper {
    transform: rotateY(360deg);
}

.tech-icon {
    width: 100%;
    height: 100%;
    color: var(--primary);
    filter: drop-shadow(0 0 10px rgba(0, 255, 157, 0.3));
}

.tech-item span {
    font-weight: 600;
    color: var(--text);
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    text-align: center;
}

/* Certifications Section */
.certifications-section {
    margin-top: 4rem;
}

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

.cert-badge {
    background: rgba(0, 212, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.cert-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(0, 212, 255, 0.1),
        transparent 30%
    );
    animation: rotate 4s linear infinite;
    opacity: 0;
}

.cert-badge:hover::before {
    opacity: 1;
}

.cert-badge:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--secondary);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4);
}

.cert-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    color: var(--secondary);
    position: relative;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

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

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

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cert-badge h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.cert-badge p {
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.career-content {
    margin-top: 4rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

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

.career-card {
    max-width: 900px;
}

.career-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 2rem;
    color: var(--secondary);
}

.career-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.career-company {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.career-desc {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.career-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.skill-tag {
    padding: 0.7rem 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

/* Homelab Section */
.homelab-section {
    background: linear-gradient(180deg, var(--dark-light) 0%, var(--dark) 100%);
}

/* Homelab Stats */
.homelab-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    backdrop-filter: blur(20px);
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 20px;
    background: rgba(0, 255, 157, 0.03);
    border: 1px solid rgba(0, 255, 157, 0.1);
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(0, 255, 157, 0.05);
    border-color: rgba(0, 255, 157, 0.3);
    box-shadow: 0 20px 40px rgba(0, 255, 157, 0.2);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.lab-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.lab-card:hover::before {
    opacity: 0.05;
}

.lab-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.lab-icon {
    width: 50px;
    height: 50px;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.lab-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.lab-card p {
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Projects Showcase */
.projects-showcase {
    margin-top: 5rem;
}

.projects-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.project-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        var(--primary),
        transparent 30%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: rotate 4s linear infinite;
}

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

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

.project-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 30px 70px rgba(102, 126, 234, 0.3);
}

.project-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(102, 126, 234, 0.2);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    z-index: 0;
}

.project-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.project-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.project-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.project-tags span {
    padding: 0.5rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    color: #667eea;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-tags span:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: scale(1.1);
}

/* Music Section */
.music-section {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 50%, var(--dark) 100%);
}

.music-content {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.music-player {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    padding: 3rem;
}

.player-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vinyl-record {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #2a2a3e 0%, #1a1a2e 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: spin 10s linear infinite;
}

.music-player:hover .vinyl-record {
    animation-play-state: paused;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vinyl-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #ff0062 0%, #ff6b00 100%);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 0, 98, 0.5);
}

.vinyl-groove {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.vinyl-groove:nth-child(2) {
    width: 200px;
    height: 200px;
}

.vinyl-groove:nth-child(3) {
    width: 150px;
    height: 150px;
}

.vinyl-groove:nth-child(4) {
    width: 100px;
    height: 100px;
}

.music-waves {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-top: 2rem;
}

.wave {
    width: 6px;
    height: 30px;
    background: var(--gradient-2);
    border-radius: 3px;
    animation: wave 1s ease-in-out infinite;
}

.wave:nth-child(2) { animation-delay: 0.1s; }
.wave:nth-child(3) { animation-delay: 0.2s; }
.wave:nth-child(4) { animation-delay: 0.3s; }
.wave:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { height: 30px; }
    50% { height: 50px; }
}

.player-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.artist-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.artist-desc {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.favorite-tracks h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.track-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem;
    background: rgba(255, 0, 98, 0.05);
    border: 1px solid rgba(255, 0, 98, 0.2);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.track-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-2);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.track-item:hover::before {
    transform: scaleY(1);
}

.track-item:hover {
    background: rgba(255, 0, 98, 0.15);
    border-color: var(--accent);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 0, 98, 0.3);
}

.track-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 30px;
}

.track-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.track-title {
    font-weight: 600;
    color: var(--text);
    font-size: 1.05rem;
}

.track-mood {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Footer */
.footer {
    background: var(--dark-light);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-1);
    animation: shimmer 3s ease-in-out infinite;
}

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

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

.footer-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-contact {
    margin-top: 1.5rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 255, 157, 0.05);
    border: 1px solid rgba(0, 255, 157, 0.2);
    border-radius: 10px;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(0, 255, 157, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.contact-link svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--primary);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-muted);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    opacity: 0.2;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.3);
}

.social-link svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.footer-subtext {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
    padding: 120px 0;
    position: relative;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 3rem;
    backdrop-filter: blur(20px);
}

.testimonial-stars {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.3rem;
}

.testimonial-stars span {
    animation: starTwinkle 2s ease-in-out infinite;
}

.testimonial-stars span:nth-child(2) { animation-delay: 0.2s; }
.testimonial-stars span:nth-child(3) { animation-delay: 0.4s; }
.testimonial-stars span:nth-child(4) { animation-delay: 0.6s; }
.testimonial-stars span:nth-child(5) { animation-delay: 0.8s; }

@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.9); }
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author-avatar {
    width: 50px;
    height: 50px;
    color: var(--primary);
}

.author-info h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

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

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: rgba(0, 255, 157, 0.1);
    border-color: var(--primary);
    transform: scale(1.1);
}

.testimonial-prev svg,
.testimonial-next svg {
    width: 24px;
    height: 24px;
}

.testimonial-dots {
    display: flex;
    gap: 0.8rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* Skills Constellation */
.skills-constellation {
    background: var(--dark);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.constellation-canvas {
    position: relative;
    height: 600px;
    max-width: 1200px;
    margin: 0 auto;
}

#constellationCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.skill-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.skill-node {
    position: absolute;
    padding: 1rem 1.5rem;
    background: rgba(0, 255, 157, 0.1);
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--text);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.skill-node:hover {
    background: rgba(0, 255, 157, 0.2);
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.5);
    z-index: 10;
}

.node-label {
    display: block;
    white-space: nowrap;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50%;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 255, 157, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.5);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Sound Toggle */
.sound-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.sound-toggle:hover {
    background: rgba(0, 255, 157, 0.1);
    border-color: var(--primary);
    transform: scale(1.1);
}

.sound-toggle svg {
    width: 24px;
    height: 24px;
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    bottom: 90px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.theme-toggle:hover {
    background: rgba(0, 255, 157, 0.1);
    border-color: var(--primary);
    transform: scale(1.1) rotate(180deg);
}

.theme-toggle svg {
    width: 24px;
    height: 24px;
}

/* Light Theme */
body.light-theme {
    --dark: #f5f5f7;
    --dark-light: #ffffff;
    --dark-lighter: #e8e8ed;
    --text: #1d1d1f;
    --text-muted: #6e6e73;
}

body.light-theme .nav {
    background: rgba(255, 255, 255, 0.9);
}

body.light-theme .glass-card,
body.light-theme .bike-card-inner,
body.light-theme .testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Matrix Code Rain */
#matrixCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    pointer-events: none;
}

/* Additional responsive fixes */
@media (max-width: 968px) {
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .theme-toggle {
        bottom: 90px;
        left: 20px;
    }
    
    .sound-toggle {
        left: 20px;
    }
    
    .back-to-top {
        right: 20px;
    }
}

@media (max-width: 640px) {
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .constellation-canvas {
        height: 400px;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

/* Music Vibes Grid */
.music-vibes-grid {
    margin-top: 3rem;
}

.vibes-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vibes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.vibe-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.vibe-card:hover::before {
    opacity: 0.05;
}

.vibe-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 98, 0.4);
    box-shadow: 0 20px 50px rgba(255, 0, 98, 0.3);
}

.vibe-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--accent);
    position: relative;
    z-index: 1;
}

.vibe-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text);
    position: relative;
    z-index: 1;
}

.vibe-card p {
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Music Philosophy */
.music-philosophy {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem;
    text-align: center;
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--accent);
    animation: pulse 3s ease-in-out infinite;
}

.music-philosophy h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.philosophy-text {
    color: var(--text-muted);
    line-height: 2;
    font-size: 1.15rem;
    margin-bottom: 3rem;
}

.music-quote {
    position: relative;
    padding: 2rem;
    background: rgba(255, 0, 98, 0.05);
    border-left: 4px solid var(--accent);
    border-radius: 15px;
    margin-top: 2rem;
}

.quote-icon {
    width: 40px;
    height: 40px;
    color: var(--accent);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.music-quote p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.quote-author {
    display: block;
    text-align: right;
    color: var(--accent);
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .bike-hologram {
        width: 350px;
        height: 260px;
    }
    
    .hero-stats-mini {
        gap: 2rem;
    }
}

@media (max-width: 968px) {
    body, html {
        cursor: auto;
    }
    
    .custom-cursor,
    .custom-cursor-follower {
        display: none;
    }
    
    body * {
        cursor: auto !important;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-stats-mini {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-visual {
        margin-top: 3rem;
        height: 400px;
    }
    
    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .bikes-grid {
        grid-template-columns: 1fr;
    }
    
    .music-player {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .timeline-item {
        padding-left: 20px;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .philosophy-badges {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .hero-stats-mini {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .bikes-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bike-card-inner {
        padding: 1.5rem;
    }
    
    .homelab-grid {
        grid-template-columns: 1fr;
    }
    
    .glass-card {
        padding: 2rem;
    }
    
    .bike-hologram {
        width: 280px;
        height: 200px;
    }
    
    .loading-text {
        font-size: 3rem;
    }
    
    .loading-spinner {
        width: 60px;
        height: 60px;
    }
    
    .timeline-achievements {
        gap: 0.8rem;
    }
    
    .achievement-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* AOS Animation Triggers */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* Additional responsive adjustments */
@media (max-width: 1200px) {
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }
    
    .homelab-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .homelab-stats {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .vibes-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .music-philosophy {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .vibes-container {
        grid-template-columns: 1fr;
    }
    
    .track-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .philosophy-text {
        font-size: 1rem;
    }
    
    .music-quote p {
        font-size: 1.1rem;
    }
    
    .philosophy-quote-large p {
        font-size: 1.4rem;
    }
    
    .highlights-list li {
        font-size: 0.95rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
}
