* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GPU-Acceleration für häufig animierte Elemente */
.project-card,
.social-btn,
.floating-action,
.modal-content {
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

:root {
    --primary: #e91e63;
    --secondary: #9c27b0;
    --accent: #d946ef;
    --dark: #1a0321;
    --darker: #0a0113;
    --card-bg: rgba(58, 12, 78, 0.6);
    --card-border: rgba(233, 30, 99, 0.3);

    /* Theme-specific variables (Dark theme - default) */
    --bg-primary: #0a0113;
    --bg-secondary: #1a0321;
    --bg-gradient-1: rgba(233, 30, 99, 0.15);
    --bg-gradient-2: rgba(156, 39, 176, 0.15);
    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    --glass-bg: rgba(58, 12, 78, 0.6);
    --glass-bg-hover: rgba(78, 22, 98, 0.7);
    --glass-header-bg: rgba(15, 2, 21, 0.9);
    --glass-strong-bg: rgba(26, 3, 33, 0.95);
    --search-bg: rgba(58, 12, 78, 0.6);
    --search-bg-focus: rgba(78, 22, 98, 0.8);
    --grid-line-color: rgba(233, 30, 99, 0.03);
    --grid-line-color-2: rgba(156, 39, 176, 0.03);
    --border-opacity: 0.1;
    --modal-overlay: rgba(0, 0, 0, 0.8);
}

/* Light theme */
.light-theme {
    --bg-primary: #f8f4fc;
    --bg-secondary: #ede7f3;
    --bg-gradient-1: rgba(233, 30, 99, 0.08);
    --bg-gradient-2: rgba(156, 39, 176, 0.08);
    --text-primary: #1a0321;
    --text-secondary: #4a3656;
    --text-muted: #6b5a78;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-bg-hover: rgba(255, 255, 255, 0.85);
    --glass-header-bg: rgba(255, 255, 255, 0.9);
    --glass-strong-bg: rgba(255, 255, 255, 0.95);
    --search-bg: rgba(255, 255, 255, 0.8);
    --search-bg-focus: rgba(255, 255, 255, 0.95);
    --grid-line-color: rgba(233, 30, 99, 0.06);
    --grid-line-color-2: rgba(156, 39, 176, 0.06);
    --border-opacity: 0.15;
    --modal-overlay: rgba(0, 0, 0, 0.5);
    --card-bg: rgba(255, 255, 255, 0.7);
    --card-border: rgba(233, 30, 99, 0.2);
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-left: 1px solid rgba(233, 30, 99, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 6px;
    border: 2px solid var(--bg-secondary);
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
    box-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
}

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

/* Firefox scrollbar support */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-secondary);
}

body {
    background: var(--bg-primary);
    background-image:
        radial-gradient(circle at 20% 50%, var(--bg-gradient-1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--bg-gradient-2) 0%, transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
    scroll-behavior: smooth;
    color: var(--text-primary);
    transition: background 0.4s ease, color 0.3s ease;
}

/* Partikel nur auf Desktop */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Einfachere Partikel-Animation */
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.6), transparent);
    border-radius: 50%;
    animation: float 20s linear infinite;
    will-change: transform;
}

@keyframes float {
    0% {
        transform: translate3d(0, 100vh, 0);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translate3d(0, -20vh, 0);
        opacity: 0;
    }
}

/* Statisches Grid */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--grid-line-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line-color-2) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Reduzierter Blur */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 16px rgba(233, 30, 99, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.glass:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(217, 70, 239, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.25);
}

.glass-strong {
    background: var(--glass-strong-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--card-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease;
}

.glass-header {
    background: var(--glass-header-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.1);
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Statischer Gradient */
.gradient-text {
    background: linear-gradient(135deg, #e91e63, #9c27b0, #d946ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradient nur bei Hover animiert */
.gradient-accent {
    background: linear-gradient(135deg, #e91e63, #d946ef, #9c27b0);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
    transition: all 0.2s ease;
}

.gradient-accent:hover {
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.5);
    transform: translateY(-2px);
}

.project-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Entfernt: aufwendiger ::before Effekt */

.project-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 30px rgba(233, 30, 99, 0.25);
}

.project-card img {
    transition: transform 0.3s ease;
}

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

/* Status Badges */
.status-discontinued {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.4);
}

.status-beta {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.status-soon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
}

.status-active {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.status-updated {
    background: linear-gradient(135deg, #e91e63, #d946ef);
    box-shadow: 0 0 10px rgba(233, 30, 99, 0.4);
}

.nav-link {
    position: relative;
    transition: all 0.2s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.2s ease;
}

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

.modal {
    backdrop-filter: blur(10px);
    animation: fadeIn 0.2s ease-out;
    background: var(--modal-overlay);
}

/* Theme Toggle Button */
.theme-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--card-border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.theme-toggle svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.theme-toggle .sun-icon {
    color: #fbbf24;
    position: absolute;
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.theme-toggle .moon-icon {
    color: #a78bfa;
    opacity: 1;
    transform: rotate(0) scale(1);
}

.light-theme .theme-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.light-theme .theme-toggle .moon-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.modal-content {
    animation: slideIn 0.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.social-btn {
    transition: all 0.2s ease;
    position: relative;
}

/* Einfacher Hover ohne ::after */
.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.fade-in {
    animation: fadeInUp 0.4s ease-out forwards;
}

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

.search-bar {
    transition: all 0.2s ease, background 0.3s ease;
    background: var(--search-bg);
    border: 2px solid rgba(233, 30, 99, 0.3);
    color: var(--text-primary);
}

.search-bar:focus {
    background: var(--search-bg-focus);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.2);
    border-color: rgba(217, 70, 239, 0.5);
}

.search-bar::placeholder {
    color: var(--text-muted);
}

.floating-action {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 30;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Nur Hover-Animation */
.floating-action:hover {
    transform: translateY(-5px);
}

.hero-section {
    position: relative;
    overflow: hidden;
}

/* Entfernt: ::before Pulse */

.neon-pink {
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.4);
}

.neon-purple {
    box-shadow: 0 0 20px rgba(156, 39, 176, 0.4);
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

.enhanced-hover {
    transition: transform 0.2s ease;
}

.enhanced-hover:hover {
    transform: translateY(-3px);
}

/* Subtiler Glow */
.glow-on-scroll {
    transition: box-shadow 0.3s ease;
}

.glow-on-scroll.visible {
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.2);
}

.page {
    transition: opacity 0.2s ease;
}

.page.hidden {
    opacity: 0;
}

/* Reduzierter Button-Pulse */
.pulse-btn {
    animation: buttonPulse 4s ease-in-out infinite;
}

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

/* Mobile-Optimierungen */
@media (max-width: 768px) {
    .floating-action {
        bottom: 1rem;
        right: 1rem;
    }

    /* Keine Partikel auf Mobile */
    .particle {
        display: none !important;
    }

    /* Kein Blur auf Mobile */
    .glass,
    .glass-strong,
    .glass-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(58, 12, 78, 0.95);
    }

    /* Light theme mobile glass */
    .light-theme .glass,
    .light-theme .glass-strong,
    .light-theme .glass-header {
        background: rgba(255, 255, 255, 0.95);
    }

    /* Reduzierte Animationen */
    .pulse-btn,
    .glow-on-scroll.visible {
        animation: none !important;
    }

    /* Einfachere Hover */
    .project-card:hover {
        transform: translateY(-2px);
    }

    .social-btn:hover {
        transform: translateY(-1px);
    }

    /* Theme toggle mobile */
    .theme-toggle {
        width: 40px;
        height: 40px;
    }
}

/* Prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .particle {
        display: none !important;
    }
}

/* Loading Skeleton entfernt - wird nicht verwendet */

/* Roadmap specific styles */
.roadmap-filter-btn {
    position: relative;
    cursor: pointer;
}

.roadmap-filter-btn:hover {
    transform: translateY(-2px);
}

/* Progress bar animation */
@keyframes progressGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(233, 30, 99, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(233, 30, 99, 0.5);
    }
}

.progress-bar {
    animation: progressGlow 2s ease-in-out infinite;
}

/* Timeline connector line (optional enhancement) */
.roadmap-timeline-item {
    position: relative;
}

.roadmap-timeline-item::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        rgba(233, 30, 99, 0.5) 0%, 
        rgba(156, 39, 176, 0.5) 100%);
}

@media (max-width: 768px) {
    .roadmap-timeline-item::before {
        display: none;
    }
}

/* Light theme text color overrides */
.light-theme .text-white {
    color: var(--text-primary);
}

.light-theme .text-gray-300 {
    color: var(--text-secondary);
}

.light-theme .text-gray-400 {
    color: var(--text-muted);
}

.light-theme .text-gray-500 {
    color: var(--text-muted);
}

.light-theme .border-white {
    border-color: var(--text-primary);
}

/* Light theme specific overrides */
.light-theme .nav-link {
    color: var(--text-primary);
}

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

.light-theme .search-bar::placeholder {
    color: var(--text-muted);
}

/* Keep gradient text colorful in light mode */
.light-theme .gradient-text {
    background: linear-gradient(135deg, #c2185b, #7b1fa2, #ab47bc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Particle visibility in light mode */
.light-theme .particle {
    background: radial-gradient(circle, rgba(233, 30, 99, 0.4), transparent);
}

/* Blog/News Styles */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(233, 30, 99, 0.25);
}

.news-filter-btn {
    position: relative;
    cursor: pointer;
}

.news-filter-btn:hover {
    transform: translateY(-2px);
}

/* Blog content styling */
.blog-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.blog-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #e91e63, #9c27b0, #d946ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-content p {
    margin-bottom: 1rem;
}

.blog-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.blog-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.blog-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #e91e63;
}

.blog-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Light theme blog content */
.light-theme .blog-content h3 {
    background: linear-gradient(135deg, #c2185b, #7b1fa2, #ab47bc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   Kinetic Hosting Partner Page Styles
   Inspired by kinetichosting.com design
   ========================================== */

/* Kinetic Color Variables */
.kinetic-bg {
    --kinetic-primary: #00d4ff;
    --kinetic-secondary: #0ea5e9;
    --kinetic-accent: #22d3ee;
    --kinetic-dark: #0f172a;
    --kinetic-darker: #020617;
    --kinetic-card: rgba(15, 23, 42, 0.8);
    --kinetic-border: rgba(0, 212, 255, 0.2);

    background: linear-gradient(180deg, #020617 0%, #0f172a 50%, #020617 100%);
    position: relative;
    min-height: 100vh;
}

/* Kinetic background grid effect */
.kinetic-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.08) 0%, transparent 40%),
        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: 100% 100%, 100% 100%, 50px 50px, 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.kinetic-bg > * {
    position: relative;
    z-index: 1;
}

/* Kinetic Gradient Text */
.kinetic-gradient-text {
    background: linear-gradient(135deg, #00d4ff, #0ea5e9, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Kinetic Badge */
.kinetic-badge {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(14, 165, 233, 0.2));
    border: 1px solid rgba(0, 212, 255, 0.4);
    color: #00d4ff;
}

/* Kinetic Primary Button */
.kinetic-btn-primary {
    background: linear-gradient(135deg, #00d4ff, #0ea5e9);
    color: #020617;
    font-weight: 700;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    border: none;
}

.kinetic-btn-primary:hover {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
    transform: translateY(-2px);
}

/* Kinetic Secondary Button */
.kinetic-btn-secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid rgba(0, 212, 255, 0.5);
}

.kinetic-btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
}

/* Kinetic Stats Bar */
.kinetic-stats-bar {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Kinetic Feature Card */
.kinetic-feature-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.15);
    transition: all 0.3s ease;
}

.kinetic-feature-card:hover {
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.15);
}

/* Kinetic Feature Icon */
.kinetic-feature-icon {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(14, 165, 233, 0.1));
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

/* Kinetic Quote Card */
.kinetic-quote-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(14, 165, 233, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.2);
}

/* Kinetic CTA Card */
.kinetic-cta-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(14, 165, 233, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.kinetic-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 60%);
    animation: kinetic-pulse 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.kinetic-cta-card > * {
    position: relative;
    z-index: 1;
}

@keyframes kinetic-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Kinetic Glow Effect */
.kinetic-glow {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

/* Light theme overrides for Kinetic page */
.light-theme .kinetic-bg {
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
}

.light-theme .kinetic-bg::before {
    background-image:
        radial-gradient(circle at 20% 20%, rgba(0, 180, 216, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 40%),
        linear-gradient(rgba(0, 180, 216, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 216, 0.05) 1px, transparent 1px);
}

.light-theme .kinetic-gradient-text {
    background: linear-gradient(135deg, #0284c7, #0369a1, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.light-theme .kinetic-stats-bar,
.light-theme .kinetic-feature-card {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 180, 216, 0.2);
}

.light-theme .kinetic-feature-card h3 {
    color: #0f172a;
}

.light-theme .kinetic-feature-card p {
    color: #475569;
}

.light-theme .kinetic-quote-card,
.light-theme .kinetic-cta-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 180, 216, 0.3);
}

.light-theme .kinetic-quote-card h3,
.light-theme .kinetic-cta-card h2 {
    color: #0f172a;
}

.light-theme .kinetic-quote-card p,
.light-theme .kinetic-cta-card p {
    color: #475569;
}

.light-theme .kinetic-btn-primary {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: #ffffff;
}

.light-theme .kinetic-btn-secondary {
    color: #0284c7;
    border-color: rgba(2, 132, 199, 0.5);
}

.light-theme .kinetic-badge {
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.15), rgba(3, 105, 161, 0.1));
    color: #0284c7;
    border-color: rgba(2, 132, 199, 0.4);
}

/* Mobile optimizations for Kinetic page */
@media (max-width: 768px) {
    .kinetic-bg::before {
        display: none;
    }

    .kinetic-cta-card::before {
        display: none;
    }

    .kinetic-feature-card:hover {
        transform: translateY(-2px);
    }
}

/* ==========================================
   Kinetic Theme - Global Override
   Applied when viewing the Hosting page
   ========================================== */

/* Body background */
.kinetic-theme {
    background: linear-gradient(180deg, #020617 0%, #0f172a 50%, #020617 100%);
    background-attachment: fixed;
}

.kinetic-theme .grid-bg {
    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);
}

.kinetic-theme .particles .particle {
    background: radial-gradient(circle, rgba(0, 212, 255, 0.6), transparent);
}

/* Header */
.kinetic-theme .glass-header {
    background: rgba(2, 6, 23, 0.95);
    border-bottom-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.1);
}

.kinetic-theme .glass-header .gradient-text {
    background: linear-gradient(135deg, #00d4ff, #0ea5e9, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation links */
.kinetic-theme .nav-link {
    color: #e2e8f0;
}

.kinetic-theme .nav-link:hover {
    color: #00d4ff;
}

.kinetic-theme .nav-link::before {
    background: linear-gradient(90deg, #00d4ff, #0ea5e9);
}

/* Logo glow */
.kinetic-theme header img.neon-pink {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

/* Theme toggle */
.kinetic-theme .theme-toggle {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(0, 212, 255, 0.3);
}

.kinetic-theme .theme-toggle:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.kinetic-theme .theme-toggle .moon-icon {
    color: #00d4ff;
}

/* Mobile menu */
.kinetic-theme #mobile-menu button {
    color: #e2e8f0;
}

.kinetic-theme #mobile-menu button:hover {
    color: #00d4ff;
}

/* Floating action button */
.kinetic-theme .floating-action button {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.kinetic-theme .floating-action button:hover {
    background: linear-gradient(135deg, #00d4ff, #0ea5e9);
    color: #020617;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

/* Footer */
.kinetic-theme footer.glass-header {
    background: rgba(2, 6, 23, 0.95);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    border-bottom: none;
}

.kinetic-theme footer .gradient-text {
    background: linear-gradient(135deg, #00d4ff, #0ea5e9, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kinetic-theme footer .text-gray-400,
.kinetic-theme footer .text-gray-500 {
    color: #94a3b8;
}

.kinetic-theme footer .border-white {
    border-color: rgba(0, 212, 255, 0.2);
}

/* Footer social buttons */
.kinetic-theme footer .social-btn {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.kinetic-theme footer .social-btn:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

/* Kinetic Theme + Light Mode */
.kinetic-theme.light-theme {
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
}

.kinetic-theme.light-theme .grid-bg {
    background-image:
        linear-gradient(rgba(0, 180, 216, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 216, 0.05) 1px, transparent 1px);
}

.kinetic-theme.light-theme .glass-header {
    background: rgba(240, 249, 255, 0.95);
    border-bottom-color: rgba(0, 180, 216, 0.2);
}

.kinetic-theme.light-theme .glass-header .gradient-text {
    background: linear-gradient(135deg, #0284c7, #0369a1, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kinetic-theme.light-theme .nav-link {
    color: #0f172a;
}

.kinetic-theme.light-theme .nav-link:hover {
    color: #0284c7;
}

.kinetic-theme.light-theme header img.neon-pink {
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.3);
}

.kinetic-theme.light-theme .theme-toggle {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 180, 216, 0.3);
}

.kinetic-theme.light-theme .floating-action button {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 180, 216, 0.3);
}

.kinetic-theme.light-theme .floating-action button:hover {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: #ffffff;
}

.kinetic-theme.light-theme footer.glass-header {
    background: rgba(240, 249, 255, 0.95);
    border-top-color: rgba(0, 180, 216, 0.2);
}

.kinetic-theme.light-theme footer .gradient-text {
    background: linear-gradient(135deg, #0284c7, #0369a1, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kinetic-theme.light-theme footer .social-btn {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 180, 216, 0.2);
}

/* Mobile optimizations for Kinetic theme */
@media (max-width: 768px) {
    .kinetic-theme .glass-header,
    .kinetic-theme footer.glass-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}
