/* Base Styles - Futuristic Aesthetic */
:root {
    --primary: #ff6b9d;
    --primary-glow: rgba(255, 107, 157, 0.6);
    --secondary: #00d4ff;
    --secondary-glow: rgba(0, 212, 255, 0.6);
    --tertiary: #c471ed;
    --tertiary-glow: rgba(196, 113, 237, 0.6);
    --accent: #ffd700;
    --accent-glow: rgba(255, 215, 0, 0.6);
    --bg: #0a0e27;
    --bg-alt: #151932;
    --bg-gradient: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1428 100%);
    --text: #e8f4f8;
    --text-glow: rgba(232, 244, 248, 0.8);
    --muted: #a0b4c8;
    --border: rgba(0, 212, 255, 0.2);
    --gradient: linear-gradient(135deg, #ff6b9d 0%, #c471ed 50%, #00d4ff 100%);
    --gradient-reverse: linear-gradient(135deg, #00d4ff 0%, #c471ed 50%, #ff6b9d 100%);
    --neon-pink: #ff2a6d;
    --neon-blue: #00e5ff;
    --neon-purple: #d946ef;
    --glass-bg: rgba(21, 25, 50, 0.4);
    --glass-border: rgba(0, 212, 255, 0.3);
    --glass-blur: blur(20px);
    --card-radius: 24px;
    --card-padding: 2.5rem;
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 212, 255, 0.2);
    --shadow-lg: 0 16px 48px rgba(255, 107, 157, 0.3);
    --shadow-glow: 0 0 40px var(--primary-glow), 0 0 80px var(--secondary-glow);
    --font-main: 'Orbitron', 'Exo 2', 'Rajdhani', 'Inter', sans-serif;
    --font-accent: 'Audiowide', 'Russo One', cursive;
    --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.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fix for mobile viewport height issues */
@supports (-webkit-touch-callout: none) {
    :root {
        --viewport-height: -webkit-fill-available;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

/* Ensure all interactive elements are always clickable */
a, button, input, textarea, select, [role="button"], [onclick] {
    pointer-events: auto !important;
    cursor: pointer;
}

*::selection {
    background: var(--primary-glow);
    color: var(--text);
}

*::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

*::-webkit-scrollbar-track {
    background: var(--bg);
    border-left: 1px solid var(--border);
}

*::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 10px;
    border: 2px solid var(--bg);
}

*::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-reverse);
    box-shadow: 0 0 10px var(--primary-glow);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    min-height: 100%;
    height: 100%;
}

body {
    font-family: var(--font-main);
    background: var(--bg-gradient);
    background-attachment: fixed;
    background-size: 400% 400%;
    color: var(--text);
    min-height: 100%;
    height: 100%;
    letter-spacing: 0.02em;
    font-size: 1.05rem;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    animation: gradientFlow 20s ease-in-out infinite;
    display: flex;
    flex-direction: column;
}

/* Animated gradient background */
@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

/* Futuristic grid overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
    animation: gridMove 30s linear infinite;
}

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

/* Animated particles */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 107, 157, 0.1) 2px, transparent 2px),
        radial-gradient(circle, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 200px 200px, 300px 300px;
    background-position: 0 0, 50px 50px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
    animation: particleFloat 40s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-200px, -200px); }
}body.index-page {
    position: relative;
}

body.index-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.92) 0%, rgba(15, 20, 40, 0.88) 100%);
    backdrop-filter: blur(3px);
    z-index: 0;
    animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% { opacity: 0.92; }
    50% { opacity: 0.88; }
}

.hero {
    background-position: center;
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Holographic glow effect */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        var(--primary-glow) 0%,
        var(--secondary-glow) 25%,
        transparent 50%
    );
    opacity: 0.15;
    z-index: 1;
    animation: holoRotate 20s linear infinite;
}

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

/* Scanning line effect */
.hero::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    box-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-blue);
    z-index: 2;
    animation: scanLine 6s ease-in-out infinite;
}

@keyframes scanLine {
    0%, 100% { top: -100%; opacity: 0; }
    10%, 90% { opacity: 1; }
    50% { top: 100%; }
}

/* Navigation - Futuristic Glass Design */
.nav {
    position: fixed;
    width: 100%;
    z-index: 10000;
    background: transparent;
    padding: 1.2rem 0;
    transition: all var(--transition-normal);
    pointer-events: none;
}

.nav .nav-content,
.nav .logo {
    pointer-events: auto;
}

/* Desktop nav-links are clickable by default */
.nav .nav-links,
.nav .nav-links * {
    pointer-events: auto;
}

.nav.scrolled {
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-accent);
    color: var(--text);
    text-decoration: none;
    letter-spacing: 3px;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    position: relative;
    padding: 0.8rem 1.5rem;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px var(--primary-glow));
    cursor: pointer;
    pointer-events: auto;
    z-index: 10001;
}

.logo::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient);
    border-radius: 8px;
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-normal);
    filter: blur(10px);
}

.logo:hover {
    transform: scale(1.08) translateY(-2px);
    letter-spacing: 4px;
    filter: drop-shadow(0 0 30px var(--primary-glow)) drop-shadow(0 0 60px var(--secondary-glow));
}

.logo:hover::before {
    opacity: 0.6;
    animation: logoPulse 1.5s ease-in-out infinite;
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: all var(--transition-fast);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width var(--transition-normal);
    box-shadow: 0 0 10px var(--primary-glow);
}

.nav-links a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    width: 4px;
    height: 4px;
    background: var(--neon-blue);
    border-radius: 50%;
    opacity: 0;
    transform: translateY(-50%);
    transition: all var(--transition-fast);
    box-shadow: 0 0 10px var(--neon-blue);
}

.nav-links a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 20px var(--secondary-glow);
    transform: translateX(8px);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover::after {
    opacity: 1;
    left: -15px;
}

/* Mobile Navigation Toggle Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: all var(--transition-normal);
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
    transition: all var(--transition-normal);
    box-shadow: 0 0 10px var(--primary-glow);
}

.nav-toggle:hover span {
    box-shadow: 0 0 20px var(--primary-glow), 0 0 40px var(--secondary-glow);
}

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

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

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

/* Futuristic Mobile Menu Button - Floating Circle */
.mobile-menu-btn {
    display: none;
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border: 2px solid var(--neon-blue);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    box-shadow: 0 0 30px var(--primary-glow), 0 0 50px var(--secondary-glow);
    transition: all var(--transition-normal);
    animation: menuPulse 3s ease-in-out infinite;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 107, 157, 0.3);
}

.mobile-menu-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(10px);
    z-index: -1;
    animation: menuGlow 2s ease-in-out infinite;
}

.mobile-menu-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 1),
        0 0 40px var(--neon-blue),
        -15px 0 0 #fff,
        15px 0 0 #fff,
        0 -15px 0 #fff,
        0 15px 0 #fff;
    animation: coreGlow 2s ease-in-out infinite;
}

@keyframes coreGlow {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(255, 255, 255, 1),
            0 0 40px var(--neon-blue),
            -15px 0 0 #fff,
            15px 0 0 #fff,
            0 -15px 0 #fff,
            0 15px 0 #fff;
    }
    50% { 
        box-shadow: 
            0 0 30px rgba(255, 255, 255, 1),
            0 0 60px var(--neon-blue),
            -15px 0 0 2px #fff,
            15px 0 0 2px #fff,
            0 -15px 0 2px #fff,
            0 15px 0 2px #fff;
    }
}

@keyframes menuPulse {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.05); }
}

@keyframes menuGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.mobile-menu-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 40px var(--primary-glow), 0 0 70px var(--secondary-glow), 0 0 100px var(--tertiary-glow);
}

.mobile-menu-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.mobile-menu-btn .menu-icon {
    display: none;
}

.mobile-menu-btn .menu-icon span {
    display: none;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: gridMove 30s linear infinite;
}

.mobile-menu-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.mobile-menu-content .nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.mobile-menu-content .nav-links a {
    font-size: 2rem;
    padding: 1rem 2rem;
    border: 2px solid var(--neon-blue);
    border-radius: 15px;
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px var(--secondary-glow);
    transition: all var(--transition-normal);
    transform: translateY(50px);
    opacity: 0;
}

.mobile-menu-overlay.active .mobile-menu-content .nav-links a {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-overlay.active .mobile-menu-content .nav-links a:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-menu-content .nav-links a:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-menu-content .nav-links a:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-menu-content .nav-links a:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px var(--secondary-glow), 0 0 60px var(--primary-glow);
}

/* Hero Section - Epic Futuristic Design */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.hero h1 {
    font-size: 5.5rem;
    font-weight: 900;
    font-family: var(--font-accent);
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text);
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroGlow 3s ease-in-out infinite, float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 30px var(--primary-glow));
}

@keyframes heroGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 30px var(--primary-glow)) drop-shadow(0 0 60px var(--secondary-glow));
    }
    50% { 
        filter: drop-shadow(0 0 50px var(--primary-glow)) drop-shadow(0 0 100px var(--secondary-glow)) drop-shadow(0 0 120px var(--tertiary-glow));
    }
}

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

.hero h1::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-reverse);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: -1;
    filter: blur(30px);
    opacity: 0.8;
    animation: glowShift 5s ease-in-out infinite;
}

@keyframes glowShift {
    0%, 100% { transform: translate(0, 0); opacity: 0.8; }
    25% { transform: translate(10px, 10px); opacity: 0.6; }
    50% { transform: translate(-10px, -10px); opacity: 0.9; }
    75% { transform: translate(10px, -10px); opacity: 0.7; }
}

.hero p {
    font-size: 1.6rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 700px;
    line-height: 1.8;
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease-out 0.5s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Hero Subtitle with Rotating Text */
.hero-subtitle {
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.rotating-text {
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    min-width: 320px;
    text-align: left;
}

.cursor-blink {
    color: var(--neon-blue);
    animation: blink 1s infinite;
    font-weight: 300;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.hero-tagline {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 3;
    position: relative;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

.cta-primary {
    background: linear-gradient(135deg, var(--neon-blue), #00ffff);
    color: var(--bg);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

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

.cta-primary:hover {
    box-shadow: 0 6px 30px rgba(0, 212, 255, 0.5);
    transform: translateY(-3px);
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 2px solid var(--neon-blue);
    box-shadow: 0 4px 20px rgba(255, 77, 109, 0.2);
}

.cta-secondary:hover {
    background: rgba(255, 77, 109, 0.1);
    border-color: #ff4d6d;
    box-shadow: 0 6px 30px rgba(255, 77, 109, 0.4);
    transform: translateY(-3px);
}

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

/* Sections - Futuristic Layout */
section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
    position: relative;
    z-index: 2;
    flex: 1 0 auto;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: var(--font-accent);
    margin: 0 auto 1.5rem;
    text-align: center;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: block;
    width: fit-content;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px var(--primary-glow));
    animation: titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px var(--primary-glow)); }
    50% { filter: drop-shadow(0 0 40px var(--primary-glow)) drop-shadow(0 0 60px var(--secondary-glow)); }
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
    box-shadow: 0 0 20px var(--primary-glow), 0 0 40px var(--secondary-glow);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-reverse);
    border-radius: 2px;
    filter: blur(10px);
    opacity: 0.6;
}

/* Futuristic Glass Cards */
.skill-card, .service-card, .hikari-card {
    background: var(--glass-bg);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    text-align: center;
    transition: all var(--transition-slow);
    backdrop-filter: var(--glass-blur);
    border: 2px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.skill-card::before, .service-card::before, .hikari-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.15) 0%, rgba(0, 212, 255, 0.15) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    border-radius: inherit;
}

.skill-card::after, .service-card::after, .hikari-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        var(--neon-blue) 90deg,
        transparent 180deg,
        var(--neon-pink) 270deg,
        transparent 360deg
    );
    opacity: 0;
    transition: opacity var(--transition-slow);
    animation: cardRotate 10s linear infinite;
}

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

.skill-card:hover, .service-card:hover, .hikari-card:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4), 0 0 40px var(--secondary-glow), inset 0 0 40px rgba(0, 212, 255, 0.1);
    transform: translateY(-15px) scale(1.03);
}

.skill-card:hover::before, .service-card:hover::before, .hikari-card:hover::before {
    opacity: 1;
}

.skill-card:hover::after, .service-card:hover::after, .hikari-card:hover::after {
    opacity: 0.3;
}

/* Futuristic Cyber Buttons */
.button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    font-family: var(--font-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3), 0 0 30px var(--primary-glow);
    position: relative;
    overflow: hidden;
    z-index: 1;
    pointer-events: auto;
    touch-action: manipulation;
}

.button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-reverse);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
    border-radius: inherit;
}

.button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: width var(--transition-slow), height var(--transition-slow);
    z-index: -1;
}

.button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.5), 0 0 60px var(--primary-glow), 0 0 80px var(--secondary-glow);
    border-color: var(--neon-blue);
}

.button:hover::before {
    opacity: 1;
}

.button:hover::after {
    width: 300px;
    height: 300px;
}

.button:active {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3) !important;
}

/* Glitch effect on buttons */
.button:hover {
    animation: glitch 0.3s ease-in-out;
}

@keyframes glitch {
    0%, 100% { transform: translateY(-5px) scale(1.05); }
    25% { transform: translateY(-5px) scale(1.05) translateX(-2px); }
    50% { transform: translateY(-5px) scale(1.05) translateX(2px); }
    75% { transform: translateY(-5px) scale(1.05) translateX(-2px); }
}

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

.button:hover::before {
    left: 100%;
}

/* Grid Layouts */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 100%;
}

/* ==============================================
   CONTACT SECTION - REVAMPED
   ============================================== */

.contact {
    padding: 8rem 2rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(196, 113, 237, 0.2));
    border: 1px solid var(--neon-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2rem;
    animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge i {
    color: var(--neon-blue);
    animation: spin 4s linear infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.6); }
}

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

.contact-main-title {
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-accent);
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.contact-tagline {
    font-size: 1.3rem;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: rgba(21, 25, 50, 0.6);
    border: 2px solid var(--border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--neon-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.stat-item i {
    font-size: 2rem;
    color: var(--neon-blue);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 500;
}

.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-section {
    background: rgba(21, 25, 50, 0.6);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
}

.contact-section h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-section h3 i {
    color: var(--neon-blue);
}

.section-desc {
    color: var(--muted);
    margin-bottom: 2rem;
    font-size: 1rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(10, 14, 39, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: rgba(255, 107, 157, 0.2);
    touch-action: manipulation;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, var(--neon-blue), transparent);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.6s ease;
}

.social-link:hover::before {
    width: 400px;
    height: 400px;
    opacity: 0.2;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.social-link.email:hover { border-color: #ea4335; }
.social-link.instagram:hover { border-color: #e1306c; }
.social-link.discord:hover { border-color: #5865f2; }
.social-link.whatsapp:hover { border-color: #25d366; }

.social-link:active {
    transform: scale(0.98);
}

.social-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

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

.social-icon {
    font-size: 1.8rem;
    color: white;
}

.social-link-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.social-link-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

.social-link-desc {
    font-size: 0.95rem;
    color: var(--neon-blue);
    font-weight: 500;
}

.social-link-tag {
    font-size: 0.8rem;
    color: var(--muted);
}

.link-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover .link-arrow {
    background: var(--neon-blue);
    transform: translateX(5px);
}

.link-arrow i {
    color: var(--text);
    font-size: 1rem;
}

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

.service-item {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--neon-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(360deg);
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.service-item p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
}

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

.info-card {
    background: rgba(21, 25, 50, 0.6);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--neon-blue);
    transform: translateY(-5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.info-card p {
    color: var(--muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.info-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 600;
}

.info-badge.online {
    background: rgba(37, 211, 102, 0.2);
    color: #25d366;
    border: 1px solid #25d366;
    animation: onlinePulse 2s ease-in-out infinite;
}

@keyframes onlinePulse {
    0%, 100% { box-shadow: 0 0 10px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 0 20px rgba(37, 211, 102, 0.6); }
}

.cta-card {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.15), rgba(0, 212, 255, 0.15));
    border: 2px solid var(--neon-blue);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    text-align: center;
}

.cta-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.cta-card p {
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.5);
}

.cta-button i {
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 5rem 1rem 3rem;
    }
    
    .contact-main-title {
        font-size: 2.5rem;
    }
    
    .contact-tagline {
        font-size: 1.1rem;
    }
    
    .contact-stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem 1.5rem;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-section {
        padding: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Fix mobile viewport white space issue */
    html {
        min-height: 100%;
        height: 100%;
        background: var(--bg) !important;
    }
    
    body {
        min-height: 100%;
        height: auto;
        background: var(--bg-gradient) !important;
        background-attachment: fixed;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    section {
        padding: 4rem 1rem;
    }

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

.challenge-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    animation: fadeIn 0.6s ease forwards;
}

.challenge-intro h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    background-clip: text; /* standard */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.challenge-intro p {
    color: var(--muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.design-day {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    color: var(--muted);
    transition: all 0.3s ease;
    overflow: hidden;
}

.design-day img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 183, 197, 0.2);
}

.design-day img + p {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
    margin-top: 10px;
    font-weight: 500;
}

.design-day:hover img {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--primary-glow);
}

.design-day:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary);
}

/* Animations and Micro-interactions */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.hikari-card {
    animation: scaleIn 0.6s ease forwards;
    opacity: 0;
}

.hikari-card:nth-child(1) { animation-delay: 0.1s; }
.hikari-card:nth-child(2) { animation-delay: 0.2s; }
.hikari-card:nth-child(3) { animation-delay: 0.3s; }

.plan-card {
    animation: slideInRight 0.6s ease forwards;
    opacity: 0;
}

.plan-card:nth-child(1) { animation-delay: 0.2s; }
.plan-card:nth-child(2) { animation-delay: 0.3s; }
.plan-card:nth-child(3) { animation-delay: 0.4s; }

h2 {
    animation: slideInLeft 0.6s ease forwards;
    opacity: 0;
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
    opacity: 1 !important;
    transform: translateY(0);
}

/* Button hover effect */
.plan-button, .cta-button, .github-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.plan-button:hover, .cta-button:hover, .github-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.2);
}

.plan-button:active, .cta-button:active, .github-link:active {
    transform: translateY(1px);
}

/* Card hover animations */
.plan-card, .service-card, .hikari-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-card:hover, .service-card:hover, .hikari-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Input field focus animation */
input:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-glow);
    transform: scale(1.01);
}

/* Nav link hover effect */
.nav-links a {
    position: relative;
}

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

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



/* Ensure sections and their children are visible */
section > * {
    opacity: 1 !important;
}

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


/* Custom Cursor */
.cursor-glow {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    position: fixed;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
    transition: transform 0.1s ease;
}

.custom-cursor {
    width: 32px;
    height: 32px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.2s ease;
    display: none;
}

@media (pointer: fine) {
    .custom-cursor {
        display: block;
    }
}

/* Watchers Component */
.watchers {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    z-index: 100;
    animation: fadeInUp 0.5s ease;
}

@media (max-width: 768px) {
    .watchers {
        top: 20px;
        right: 20px;
        left: auto;
        bottom: auto;
    }
}

.watchers-count {
    color: var(--primary);
    font-weight: bold;
}

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

.oni-mask {
    width: 150px;
    height: 150px;
    margin-bottom: 2rem;
    position: relative;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 20px var(--primary-glow));
    transform: perspective(600px) rotateX(var(--tiltY, 0deg)) rotateY(var(--tiltX, 0deg)) scale(var(--maskScale, 1));
    animation: maskBreathe 6s ease-in-out infinite;
}

.oni-mask:hover {
    --maskScale: 1.04;
}

.oni-mask::before,
.oni-mask::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(
        circle at center,
        var(--primary) 0%,
        transparent 70%
    );
    opacity: 0.1;
    animation: smokeEffect 8s infinite alternate;
    pointer-events: none;
    z-index: -1;
}

.oni-mask::after {
    animation-delay: -4s;
    animation-direction: alternate-reverse;
}

.mask-svg {
    fill: var(--primary);
    animation: pulse 2s infinite;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.mask-horns {
    fill: var(--primary);
    filter: brightness(0.7);
}

.mask-markings {
    fill: none;
    stroke: var(--primary);
    stroke-width: 2;
    opacity: 0.7;
}

.mask-eyes {
    fill: var(--secondary);
    /* Dim the glow via brightness during blink using --eyeBrightness */
    filter: drop-shadow(0 0 15px var(--secondary-glow)) brightness(var(--eyeBrightness, 1));
    animation: glowingEyes 2s infinite;
    transform: translate(var(--eyeX, 0px), var(--eyeY, 0px)) scaleY(var(--eyeBlink, 1));
    transform-origin: 50% 50%;
    transition: transform 0.08s ease-out, filter 0.12s ease-out;
}

.mask-particle {
    position: fixed;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 0 10px var(--primary-glow);
    will-change: transform, opacity;
    animation: particleFloat 1.2s ease-out forwards;
}

.mask-pulse {
    animation: maskPulse 0.5s ease-out;
}

@keyframes maskPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Floating particle drift used on mask hover */
@keyframes particleFloat {
    0% { transform: translate(0, 0) scale(1); opacity: 0.9; }
    100% { transform: translate(var(--dx, 0px), var(--dy, -60px)) scale(0.8); opacity: 0; }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.5rem;
    color: var(--muted);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.cta-button {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background: var(--gradient);
    color: var(--text);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease 0.4s backwards;
    box-shadow: 0 4px 15px var(--primary-glow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    box-shadow: 0 8px 25px var(--secondary-glow);
    transform: translateY(-2px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-button:active {
    transform: translateY(0) scale(0.98);
}

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

.cta-button:hover::before {
    left: 100%;
}

/* About Section */
section {
    position: relative;
    z-index: 1;
    background: transparent; 
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, var(--primary-glow) 0%, transparent 70%),
        linear-gradient(45deg, rgba(255, 224, 102, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 78, 80, 0.05) 25%, transparent 25%);
    opacity: 0.1;
    z-index: -1;
    transition: opacity 0.3s ease;
    animation: backgroundShimmer 15s infinite linear;
}

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

section:hover::before {
    opacity: 0.08;
}

/* Breathing animation for mask container */
@keyframes maskBreathe {
    0%, 100% { --maskScale: 1; }
    50% { --maskScale: 1.02; }
}

/* Reduced motion: disable non-essential animations */
@media (prefers-reduced-motion: reduce) {
    .oni-mask { animation: none; }
    .mask-svg { animation: none; }
    .mask-eyes { transition: none; }
    .oni-mask::before, .oni-mask::after { animation: none; }
}

.about {
    padding: 4rem 2rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    background: transparent; 
    position: relative;
    z-index: 1;
    text-align: center;
}

.about h2 {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-accent);
    margin: 0 auto 2rem;
    text-align: center;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    width: fit-content;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    white-space: normal;
    overflow: visible;
    color: var(--text);
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .about p {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0;
    }
    .typewriter {
        white-space: normal;
        border-right: none;
    }
}

.typewriter {
    overflow: hidden;
    border-right: 2px solid var(--primary);
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--primary) }
}

/* Stats Section */
.stats-section {
    padding: 6rem 2rem;
    background: transparent;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    box-shadow: 0 0 20px var(--neon-blue);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--neon-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 77, 109, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--neon-blue);
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.stat-icon i {
    z-index: 1;
}

.stat-card:hover .stat-icon {
    animation: iconPulse 0.6s ease-in-out;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-accent);
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.stat-number::after {
    content: '+';
    opacity: 0.6;
}

.stat-card[data-target="99"] .stat-number::after {
    content: '.9%';
    font-size: 1.5rem;
}

.stat-card[data-target="24"] .stat-number::after {
    content: '/7';
    font-size: 1.5rem;
}

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

.stat-card:hover .stat-label {
    color: var(--text);
}

/* Skills/Tech Stack Section */
.skills-section {
    padding: 6rem 2rem;
    background: transparent;
    position: relative;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 3rem;
    font-weight: 300;
}

.tech-categories {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.tech-category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.tech-category:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 212, 255, 0.3);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 212, 255, 0.2);
}

.category-header i {
    font-size: 1.8rem;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.tech-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

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

.tech-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--neon-blue);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(255, 77, 109, 0.15));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.tech-card[data-skill="python"] .tech-icon { color: #3776ab; }
.tech-card[data-skill="javascript"] .tech-icon { color: #f7df1e; }
.tech-card[data-skill="typescript"] .tech-icon { color: #3178c6; }
.tech-card[data-skill="html-css"] .tech-icon { color: #e34c26; }
.tech-card[data-skill="react"] .tech-icon { color: #61dafb; }
.tech-card[data-skill="node"] .tech-icon { color: #339933; }
.tech-card[data-skill="django"] .tech-icon { color: #092e20; }
.tech-card[data-skill="fastapi"] .tech-icon { color: #009688; }
.tech-card[data-skill="docker"] .tech-icon { color: #2496ed; }
.tech-card[data-skill="git"] .tech-icon { color: #f05032; }
.tech-card[data-skill="linux"] .tech-icon { color: #fcc624; }
.tech-card[data-skill="aws"] .tech-icon { color: #ff9900; }
.tech-card[data-skill="pentest"] .tech-icon { color: #ff4d6d; }
.tech-card[data-skill="owasp"] .tech-icon { color: #00d4ff; }
.tech-card[data-skill="burp"] .tech-icon { color: #ff6633; }
.tech-card[data-skill="nmap"] .tech-icon { color: #0099cc; }

.tech-card:hover .tech-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px currentColor;
}

.tech-info {
    flex: 1;
}

.tech-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.skill-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    position: relative;
}

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-blue), #00ffff);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 0 10px var(--neon-blue);
}

.skill-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    filter: blur(5px);
}

.tech-card.animated .skill-fill {
    width: var(--skill-width);
}

.skill-percent {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 600;
}


/* Services Section */
.services-section {
    padding: 6rem 2rem;
    background: transparent;
    position: relative;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-blue), #00ffff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--neon-blue);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.25);
}

.service-card.featured {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.05);
}

.service-card.featured:hover {
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: var(--bg);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.featured-badge i {
    font-size: 0.9rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 77, 109, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--neon-blue);
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

.service-card.featured .service-icon {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 237, 78, 0.2));
    color: #ffd700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: var(--neon-blue);
    font-size: 0.9rem;
}

.service-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--neon-blue), #00ffff);
    color: var(--bg);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

.service-btn:hover::before {
    left: 100%;
}

.service-card.featured .service-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.service-card.featured .service-btn:hover {
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

/* Journey/Timeline Section */
.journey-section {
    padding: 6rem 2rem;
    background: transparent;
    position: relative;
    text-align: center;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--neon-blue), rgba(0, 212, 255, 0.3), var(--neon-blue));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: timelineFadeIn 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes timelineFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 77, 109, 0.2));
    border: 3px solid var(--neon-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--neon-blue);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.7);
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
    text-align: left;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    transform: translateY(-50%) rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -11px;
    border-left: none;
    border-bottom: none;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -11px;
    border-right: none;
    border-top: none;
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--neon-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.timeline-date {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--neon-blue), #00ffff);
    color: var(--bg);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

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

.timeline-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 2rem;
    background: transparent;
    position: relative;
    text-align: center;
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    min-height: 400px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    opacity: 0;
    transform: scale(0.9) translateX(50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    pointer-events: auto;
    z-index: 2;
    border-color: var(--neon-blue);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.client-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 77, 109, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--neon-blue);
    flex-shrink: 0;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.client-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.client-info p {
    font-size: 0.95rem;
    color: var(--muted);
    margin: 0;
}

.rating {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.rating i {
    color: #ffd700;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 5px rgba(255, 215, 0, 0.4));
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--neon-blue);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.project-outcome {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.project-outcome span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 600;
}

.project-outcome i {
    color: #00ff88;
    font-size: 1rem;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 400px;
    margin: 0 auto;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--neon-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--neon-blue);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--neon-blue);
    color: var(--bg);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.carousel-dots {
    display: flex;
    gap: 1rem;
}

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

.carousel-dot.active {
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
    transform: scale(1.3);
}

/* Activity/Blog Feed Section */
.activity-section {
    padding: 6rem 2rem;
    background: transparent;
    position: relative;
    text-align: center;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.activity-card {
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--neon-blue);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.activity-card:hover::before {
    transform: scaleY(1);
}

.activity-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--neon-blue);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.activity-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.activity-icon.github {
    background: rgba(36, 41, 46, 0.3);
    color: #fff;
    border: 2px solid #fff;
}

.activity-icon.cert {
    background: rgba(0, 212, 255, 0.2);
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
}

.activity-icon.learn {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border: 2px solid #ffd700;
}

.activity-icon.blog {
    background: rgba(255, 77, 109, 0.2);
    color: #ff4d6d;
    border: 2px solid #ff4d6d;
}

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

.activity-content {
    flex: 1;
    text-align: left;
}

.activity-date {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.activity-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.activity-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 1rem;
}

.activity-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.activity-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 600;
}

.activity-meta i {
    color: var(--neon-blue);
    font-size: 0.9rem;
}

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

.skill-card {
    background-color: var(--background);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.skill-card {
    position: relative;
    overflow: hidden;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.skill-card:hover {
    transform: translateY(-5px);
}

.skill-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 0;
}

.skill-card:hover::before {
    opacity: 0.1;
    animation: rotateGlow 4s linear infinite;
}

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

.skill-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    border-radius: 8px;
    object-fit: cover;
}


/* Hikari Labs Section */
.hikari {
    padding: 6rem 2rem;
    background: transparent;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.hikari-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.hikari-header::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.company-tagline {
    max-width: 900px;
    margin: 0 auto;
}

.company-tagline p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text);
    font-weight: 400;
}

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

.badge {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--text);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 183, 197, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 183, 197, 0.4);
}

@media (max-width: 768px) {
    .company-tagline p {
        font-size: 1.1rem;
    }
    
    .expertise-badges {
        gap: 0.8rem;
    }
    
    .badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}

.hikari-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 100%;
}

.hikari-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: none;
}

.hikari-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px var(--primary-glow);
}

.hikari-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    object-fit: cover;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.client-link {
    text-decoration: none;
    color: var(--text);
}

.client-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.pricing-plans {
    margin-top: 4rem;
    text-align: center;
}

.pricing-plans h3 {
    color: #ff4d6d;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
    max-width: 100%;
    box-sizing: border-box;
}

.plan-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-card.featured {
    border-color: #ff4d6d;
    box-shadow: 0 0 30px rgba(255, 77, 109, 0.3);
}

.most-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ff4d6d;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: white;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    opacity: 0.7;
}

.yearly {
    color: #ff4d6d;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.plan-card li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.plan-card li.included::before {
    content: "\2713";
    color: #4CAF50;
    position: absolute;
    left: 0;
}

.plan-card li.not-included {
    opacity: 0.7;
}

.plan-card li.not-included::before {
    content: "\2715";
    color: #ff4d6d;
    position: absolute;
    left: 0;
}

.plan-button {
    background: linear-gradient(45deg, #ff4d6d, #ff8fa3);
    color: white;
    border: none;
    padding: 0.9rem 1.8rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    margin-top: 1rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 77, 109, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 77, 109, 0.4);
    background: linear-gradient(45deg, #ff6b7d, #ffa8b5);
}

.plan-button:active {
    transform: translateY(0) scale(0.98);
}

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

.plan-button:hover::before {
    left: 100%;
}

.support-note {
    font-size: 0.9rem;
    color: #ff4d6d;
    margin-top: 1rem;
}

.plan-card .support-detail {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* New Website Plans Structure */
.website-plans {
    margin-top: 4rem;
    text-align: center;
}

.website-plans h3 {
    color: #ff4d6d;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-card.featured {
    border-color: #ff4d6d;
    box-shadow: 0 0 30px rgba(255, 77, 109, 0.3);
}

.step-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff4d6d;
    margin-bottom: 1rem;
}

.step-card h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.step-price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 1rem 0;
    color: #ff4d6d;
}

.step-price span {
    font-size: 1rem;
    opacity: 0.7;
    color: var(--muted);
}

.original-price {
    text-decoration: line-through;
    color: #888 !important;
    font-size: 1.5rem !important;
    opacity: 0.6 !important;
    margin-right: 0.5rem;
}

.step-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--muted);
    line-height: 1.6;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.step-features li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.step-features li::before {
    content: "\2713";
    color: #4CAF50;
    position: absolute;
    left: 0;
}

.step-note {
    font-style: italic;
    color: #ff4d6d;
    margin-top: 1.5rem;
    font-size: 1rem;
}

/* Plans Comparison */
.plans-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.plan-column {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.plan-column.highlighted {
    border-color: #ff4d6d;
    box-shadow: 0 0 20px rgba(255, 77, 109, 0.2);
}

.plan-column h5 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.plan-column .plan-price {
    font-size: 1.8rem;
    margin: 0.5rem 0 1rem;
    color: #ff4d6d;
}

.plan-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.plan-features li {
    margin: 0.6rem 0;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.9rem;
}

.plan-features li.included::before {
    content: "\2713";
    color: #4CAF50;
    position: absolute;
    left: 0;
}

.plan-features li.not-included::before {
    content: "\2715";
    color: #ff4d6d;
    position: absolute;
    left: 0;
}

/* Add-ons Container */
.addons-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Category Sections */
.addon-category {
    position: relative;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(0, 212, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--text), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-title i {
    font-size: 1.3rem;
    background: linear-gradient(135deg, #ff4d6d, var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Add-ons Grid */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin: 0;
}

.addon-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

.addon-item:hover::before {
    left: 100%;
}

.addon-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ff4d6d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 77, 109, 0.2);
}

.addon-item.expandable:hover {
    transform: translateY(-2px) scale(1.01);
}

.addon-item.trending {
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.08);
}

.addon-item.trending:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* Addon Header */
.addon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    position: relative;
}

.addon-item.expandable .addon-header::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--muted);
    font-size: 0.9rem;
    transition: transform 0.3s ease, color 0.3s ease;
    margin-left: 0.5rem;
}

.addon-item.expandable[data-expanded="true"] .addon-header::after {
    transform: rotate(180deg);
    color: var(--neon-blue);
}

.addon-name {
    font-weight: 500;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.addon-name i {
    color: var(--neon-blue);
    font-size: 1.1rem;
}

/* Addon Description */
.addon-description {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}

.addon-item[data-expanded="true"] .addon-description {
    max-height: 500px;
    opacity: 1;
    margin-top: 0.75rem;
}

.addon-description p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-left: 3px solid var(--neon-blue);
    border-radius: 4px;
}

.addon-item.trending .addon-description p {
    border-left-color: var(--neon-blue);
    background: rgba(0, 212, 255, 0.05);
}

.addon-description strong {
    color: var(--text);
    font-weight: 600;
}

.addon-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.addon-badge.hot {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(0, 212, 255, 0.2));
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    animation: badgePulse 2s ease-in-out infinite;
}

.addon-price {
    display: none !important;
}

.plans-cta {
    margin-top: 3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .plans-comparison {
        grid-template-columns: 1fr;
    }
    
    .addons-grid {
        grid-template-columns: 1fr;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .step-price {
        font-size: 2rem;
    }
    
    /* Fix hikari page mobile overflow */
    .hikari {
        padding: 4rem 1rem;
        overflow-x: hidden;
    }
    
    .hikari-header h2 {
        font-size: 2rem;
        word-wrap: break-word;
    }
    
    .plans-container {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
        gap: 1.5rem;
    }
    
    .pricing-plans h3 {
        font-size: 1.8rem;
    }
    
    .hikari-services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-card {
        padding: 1.5rem;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .step-options {
        gap: 1rem;
    }
}

.recent-purchase {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    white-space: nowrap;
    animation: fadeInUp 0.5s ease;
}

.client-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 0 15px var(--primary-glow);
}

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

/* Affiliate Section */
.affiliate {
    padding: 6rem 2rem;
    background: transparent; 
}

.affiliate-intro {
    max-width: 800px;
    margin: 2rem auto;
    text-align: left;
}

.how-it-works {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    margin: 3rem auto;
    max-width: 800px;
    border: 1px solid var(--border);
}

.how-it-works ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.how-it-works li {
    margin: 1rem 0;
    color: var(--text);
}

.highlight {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    text-align: center;
}

.commission-grid {
    margin: 4rem 0;
}

.commission-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 3rem;
}

.commission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 100%;
}

.commission-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 0;
    border-radius: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
}

.commission-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px rgba(255, 183, 197, 0.3);
    transform: scale(1.05);
}

.commission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 183, 197, 0.4);
}

.commission-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.card-header {
    background: linear-gradient(135deg, rgba(255, 183, 197, 0.1), rgba(255, 183, 197, 0.05));
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.card-header i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.commission-card h4 {
    font-size: 1.4rem;
    margin: 0.5rem 0;
    color: var(--text);
}

.popularity-badge, .featured-badge, .value-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: var(--bg);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

.featured-badge {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
}

.value-badge {
    background: var(--secondary);
}

.plan-details {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.plan-price span {
    font-size: 1rem;
    color: var(--muted);
}

.plan-price-alt {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.commission-highlight {
    background: rgba(255, 183, 197, 0.1);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.commission-label {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.commission-amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0.2rem 0;
}

.commission-type {
    font-size: 0.9rem;
    color: var(--secondary);
}

.plan-features {
    padding: 1.5rem;
}

.plan-features p {
    display: flex;
    align-items: center;
    margin: 0.8rem 0;
    font-size: 0.9rem;
}

.plan-features i {
    color: var(--primary);
    margin-right: 0.8rem;
    font-size: 0.8rem;
}

.earnings-potential {
    padding: 1rem 1.5rem;
    background: rgba(255, 183, 197, 0.05);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.earnings-potential small {
    color: var(--muted);
}

.commission-summary {
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.stat-item h4 {
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.stat-item p {
    color: var(--muted);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .commission-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .commission-card.featured {
        transform: none;
    }
    
    .commission-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ==============================================
   FUTURISTIC VISUAL ENHANCEMENTS
   ============================================== */

/* Holographic Text Effect */
.holographic-text {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue), var(--neon-purple), var(--neon-pink));
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: holoShift 5s ease-in-out infinite;
}

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

/* Neon Glow Borders */
.neon-border {
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue), inset 0 0 10px rgba(0, 212, 255, 0.2);
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% { box-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue), inset 0 0 10px rgba(0, 212, 255, 0.2); }
    50% { box-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-blue), inset 0 0 20px rgba(0, 212, 255, 0.4); }
}

/* Cyber Grid Lines */
.cyber-grid {
    position: relative;
    overflow: hidden;
}

.cyber-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, var(--border) 2px, var(--border) 3px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, var(--border) 2px, var(--border) 3px);
    background-size: 30px 30px;
    opacity: 0.15;
    pointer-events: none;
    animation: gridSlide 20s linear infinite;
}

@keyframes gridSlide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

/* Data Stream Effect */
.data-stream {
    position: relative;
    overflow: hidden;
}

.data-stream::after {
    content: '01001000 01100101 01101100 01101100 01101111';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: var(--neon-blue);
    opacity: 0.2;
    white-space: nowrap;
    animation: dataFall 15s linear infinite;
}

@keyframes dataFall {
    0% { top: -100%; opacity: 0; }
    10% { opacity: 0.2; }
    90% { opacity: 0.2; }
    100% { top: 100%; opacity: 0; }
}

/* Glitch Text Effect */
.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch-text::before {
    color: var(--neon-pink);
    animation: glitchTop 3s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch-text::after {
    color: var(--neon-blue);
    animation: glitchBottom 4s infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitchTop {
    0%, 90%, 100% { transform: translate(0); }
    91% { transform: translate(-3px, 2px); }
    92% { transform: translate(3px, -2px); }
    93% { transform: translate(-3px, 2px); }
}

@keyframes glitchBottom {
    0%, 85%, 100% { transform: translate(0); }
    86% { transform: translate(3px, -2px); }
    87% { transform: translate(-3px, 2px); }
    88% { transform: translate(3px, -2px); }
}

/* Floating Particles */
.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--neon-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-blue);
    animation: particleRise 15s linear infinite;
}

@keyframes particleRise {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Scanline Effect */
.scanlines {
    position: relative;
    overflow: hidden;
}

.scanlines::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 212, 255, 0.03) 2px,
        rgba(0, 212, 255, 0.03) 4px
    );
    pointer-events: none;
    z-index: 10;
    animation: scanlineMove 10s linear infinite;
}

@keyframes scanlineMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}

/* Energy Pulse */
.energy-pulse {
    position: relative;
}

.energy-pulse::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: var(--gradient);
    border-radius: inherit;
    opacity: 0;
    filter: blur(20px);
    animation: energyPulse 3s ease-in-out infinite;
}

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

/* Cyberpunk Corner Accents */
.cyber-corners {
    position: relative;
}

.cyber-corners::before,
.cyber-corners::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

.cyber-corners::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.cyber-corners::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

/* Matrix Rain Effect (lightweight) */
.matrix-bg {
    position: relative;
    overflow: hidden;
}

.matrix-bg::after {
    content: '1 0 1 0 1';
    position: absolute;
    top: -50%;
    left: 10%;
    font-family: 'Courier New', monospace;
    color: var(--neon-blue);
    font-size: 1.5rem;
    opacity: 0.1;
    animation: matrixDrop 10s linear infinite;
}

@keyframes matrixDrop {
    0% { top: -50%; opacity: 0; }
    10% { opacity: 0.1; }
    90% { opacity: 0.1; }
    100% { top: 150%; opacity: 0; }
}

/* Respect reduced motion preferences to improve accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  
  body.index-page,
  .hero {
    background-image: none !important;
  }
}

/* Futuristic Footer */
.site-footer {
  padding: 3rem 2rem;
  text-align: center;
  color: var(--muted);
  border-top: 2px solid var(--border);
  max-width: 1200px;
  margin: 3rem auto 0;
  font-family: var(--font-main);
  font-size: 1.05rem;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  border-radius: 24px 24px 0 0;
  margin-top: auto;
  box-shadow: 0 -4px 30px rgba(0, 212, 255, 0.2), inset 0 1px 0 rgba(0, 212, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-pink), transparent);
  animation: footerScan 3s linear infinite;
}

@keyframes footerScan {
  0% { left: -100%; }
  100% { left: 100%; }
}

.site-footer a { 
  color: var(--neon-blue); 
  text-decoration: none; 
  font-weight: 700; 
  transition: all var(--transition-fast);
  position: relative;
  padding: 0 5px;
}

.site-footer a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.site-footer a:hover { 
  color: var(--neon-pink); 
  text-shadow: 0 0 20px var(--primary-glow), 0 0 40px var(--secondary-glow);
  transform: translateY(-2px);
}

.site-footer a:hover::before {
  transform: scaleX(1);
}

/* ==============================================
   FUTURISTIC NOTIFICATION POPUP
   ============================================== */

.notification-container {
  position: fixed;
  top: 100px;
  right: 30px;
  z-index: 10000;
  pointer-events: none;
}

.notification {
  position: relative;
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(196, 113, 237, 0.15) 100%);
  backdrop-filter: blur(20px);
  border: 2px solid transparent;
  border-radius: 16px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 212, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateX(400px) scale(0.8);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: auto;
  overflow: hidden;
  min-width: 300px;
  max-width: 400px;
}

.notification::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(0, 212, 255, 0.3), 
    rgba(196, 113, 237, 0.3),
    transparent);
  animation: notificationShine 2s ease-in-out infinite;
}

.notification::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--neon-pink));
  border-radius: 16px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* ==============================================
   IMPACT & NUMBERS SECTION
   ============================================== */

.impact {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.impact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-pink), transparent);
  animation: borderScan 3s linear infinite;
}

.impact::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-pink), var(--neon-blue), transparent);
  animation: borderScan 3s linear infinite reverse;
}

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

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

.impact-header h2 {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  font-family: var(--font-accent);
  letter-spacing: 0.05em;
}

.impact-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  font-weight: 300;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.counter-item {
  position: relative;
  padding: 2.5rem 2rem;
  background: rgba(21, 25, 50, 0.6);
  border: 2px solid var(--border);
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.counter-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent,
    var(--neon-blue),
    transparent 30%
  );
  animation: counterRotate 6s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.counter-item:hover::before {
  opacity: 0.5;
}

.counter-item::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: rgba(10, 14, 39, 0.95);
  border-radius: 18px;
  z-index: 0;
}

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

.counter-item:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--neon-blue);
  box-shadow: 
    0 0 30px rgba(0, 212, 255, 0.4),
    0 20px 40px rgba(0, 0, 0, 0.3);
}

.counter-icon {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
}

.counter-item:hover .counter-icon {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 8px 30px rgba(255, 107, 157, 0.5);
}

.counter-icon i {
  font-size: 2rem;
  color: white;
}

.counter {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  font-family: var(--font-accent);
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px var(--primary-glow);
}

.counter-suffix {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.counter-label {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.counter-description {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
}

/* Mobile adjustments for impact section */
@media (max-width: 768px) {
  .impact {
    padding: 4rem 0 4rem 0;
  }
  
  .impact-header {
    padding: 0 1.5rem;
  }
  
  .impact-header h2 {
    font-size: 2rem;
  }
  
  .impact-subtitle {
    font-size: 1rem;
  }
  
  /* Horizontal Scrollable Cards */
  .counter-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    margin: 0 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }
  
  /* Hide scrollbar for Chrome, Safari and Opera */
  .counter-grid::-webkit-scrollbar {
    display: none;
  }
  
  .counter-item {
    min-width: 280px;
    max-width: 280px;
    padding: 2rem 1.5rem;
    scroll-snap-align: center;
    flex-shrink: 0;
  }
  
  /* Show hint that more cards exist */
  .counter-item:last-child {
    margin-right: 1.5rem;
  }
  
  .counter {
    font-size: 2.5rem;
  }
  
  .counter-icon {
    width: 60px;
    height: 60px;
  }
  
  .counter-icon i {
    font-size: 1.5rem;
  }
  
  /* Add scroll indicator */
  .impact::after {
    content: '← Swipe →';
    display: block;
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
    margin-top: 1rem;
    padding: 0.5rem;
    animation: fadeInOut 2s ease-in-out infinite;
  }
  
  @keyframes fadeInOut {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
  }
}

.notification:hover::after {
  opacity: 0.6;
  animation: borderGlow 1.5s ease-in-out infinite;
}

.notification.active {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.notification-icon {
  display: inline-block;
  margin-right: 0.75rem;
  font-size: 1.2rem;
  vertical-align: middle;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes notificationShine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

@keyframes iconPulse {
  0%, 100% { 
    transform: scale(1);
    filter: drop-shadow(0 0 5px var(--neon-blue));
  }
  50% { 
    transform: scale(1.2);
    filter: drop-shadow(0 0 15px var(--neon-blue));
  }
}

@keyframes borderGlow {
  0%, 100% { 
    filter: blur(0px) brightness(1);
  }
  50% { 
    filter: blur(2px) brightness(1.5);
  }
}

/* Mobile notification adjustments */
@media (max-width: 768px) {
  .notification-container {
    top: 80px;
    right: 15px;
    left: 15px;
  }
  
  .notification {
    min-width: auto;
    max-width: none;
    padding: 1.2rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* ==============================================
   RESPONSIVE DESIGN - FUTURISTIC MOBILE
   ============================================== */

@media (max-width: 1024px) {
    :root {
        --card-padding: 2rem;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 1rem;
    }
    
    /* Hide desktop navigation and nav-toggle button - make completely non-interactive */
    .nav .nav-links {
        display: none !important;
        pointer-events: none !important;
        visibility: hidden !important;
        position: absolute !important;
        left: -9999px !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    .nav .nav-links *,
    .nav .nav-links a,
    .nav .nav-links li,
    .nav .nav-links a::before,
    .nav .nav-links a::after {
        pointer-events: none !important;
        display: none !important;
    }
    
    .nav-toggle {
        display: none !important;
        pointer-events: none !important;
    }
    
    /* Show floating circle mobile menu button */
    .mobile-menu-btn {
        display: block;
    }
    
    /* Mobile menu overlay - ensure it starts invisible and non-interactive */
    .mobile-menu-overlay {
        display: block !important;
        opacity: 0 !important;
        pointer-events: none !important;
        visibility: hidden !important;
    }
    
    /* Only make interactive when active */
    .mobile-menu-overlay.active {
        opacity: 1 !important;
        pointer-events: auto !important;
        visibility: visible !important;
    }
    
    /* Ensure cloned links in overlay are also non-interactive when overlay is inactive */
    .mobile-menu-overlay:not(.active) * {
        pointer-events: none !important;
    }
    
    .hero h1 {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    section {
        padding: 4rem 1.5rem;
    }
    
    .logo {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .skill-card, .service-card, .hikari-card {
        padding: 1.5rem;
    }
    
    /* Fix social links on mobile - ensure they're clickable */
    .social-link {
        position: relative;
        z-index: 10;
        pointer-events: auto !important;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(255, 107, 157, 0.3);
    }
    
    .social-link * {
        pointer-events: none;
    }
    
    .social-link:active {
        transform: scale(0.95);
    }
    
    /* Ensure contact section is fully interactive */
    .contact,
    .contact * {
        pointer-events: auto;
    }
    
    .contact .social-link-content,
    .contact .social-icon-wrapper,
    .contact .social-icon {
        pointer-events: none;
    }
    
    /* Reduce animation complexity on mobile for performance */
    body::before,
    body::after,
    .hero::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .nav-links a {
        font-size: 0.85rem;
    }
    
    .button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    /* Hero section mobile */
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .rotating-text {
        min-width: 240px;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Stats section mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Tech stack mobile */
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-category {
        padding: 1.5rem;
    }
    
    /* Projects mobile - removed */
    
    /* Services mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Timeline mobile */
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row !important;
        margin-bottom: 3rem;
    }
    
    .timeline-marker {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    /* Testimonials mobile */
    .testimonials-carousel {
        min-height: 500px;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .client-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .project-outcome {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .carousel-controls {
        gap: 1rem;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
    }
    
    /* Activity feed mobile */
    .activity-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-card {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .activity-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    /* Addon categories mobile spacing */
    .addons-container {
        gap: 2rem;
    }
    
    .category-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .addons-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .addon-description p {
        font-size: 0.85rem;
        padding: 0.6rem;
    }
}