/* Reset and Base Styles */
/* Performance optimizations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Optimize animations for performance */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Optimize for high DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .tap-box {
        transform: translateZ(0);
        backface-visibility: hidden;
    }
}

:root {
    /* Modern Color Palette */
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --secondary-color: #10b981;
    --secondary-dark: #059669;
    --accent-color: #f59e0b;
    --accent-dark: #d97706;
    
    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-dark: #0f172a;
    --bg-dark-secondary: #1e293b;
    
    /* Border Colors */
    --border-color: #e2e8f0;
    --border-dark: #334155;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    --gradient-secondary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);

    --gradient-hero: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    

    
    /* Hacker Mode Colors */
    --hacker-bg: #000000;
    --hacker-text: #00ff00;
    --hacker-accent: #00ff00;
    --hacker-border: #00ff00;
    --hacker-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

html, body {
    width: 100%;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    font-weight: 400;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
    min-height: 44px;
    touch-action: manipulation;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
    font-weight: 500;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-primary:disabled:hover {
    transform: none;
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    font-weight: 500;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.5s ease;
}

.navbar.header-light {
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--text-primary) !important;
    border-bottom-color: var(--border-color) !important;
}

.navbar.header-dark {
    background: rgba(15, 23, 42, 0.95) !important;
    color: white !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

.navbar.header-light .nav-logo,
.navbar.header-light .nav-menu a,
.navbar.header-light .nav-toggle span {
    color: var(--text-primary) !important;
}

.navbar.header-dark .nav-logo,
.navbar.header-dark .nav-menu a,
.navbar.header-dark .nav-toggle span {
    color: white !important;
}

.navbar.header-light .color-toggle {
    color: var(--text-primary) !important;
    background: rgba(0, 0, 0, 0.05) !important;
}

.navbar.header-dark .color-toggle {
    color: white !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.navbar.header-light .nav-menu a:hover {
    color: var(--primary-color) !important;
}

.navbar.header-dark .nav-menu a:hover {
    color: #60a5fa !important;
}

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

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Space Grotesk', sans-serif;
}

.nav-logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}



.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-theme-controls {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}

.color-toggle {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    padding: 0.4rem;
    border-radius: 0.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    touch-action: manipulation;
    min-height: 40px;
    min-width: 40px;
    position: relative;
    overflow: hidden;
}

.color-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.color-toggle:hover::before {
    opacity: 1;
}

.color-toggle:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.color-toggle:active {
    transform: scale(0.95);
    background: var(--primary-color);
    color: white;
}



.color-toggle.active {
    color: var(--accent-color);
    background: var(--bg-secondary);
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.color-toggle i {
    transition: all 0.3s ease;
}

.color-toggle:hover i {
    transform: rotate(15deg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.nav-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: scale(1.05);
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
    position: absolute;
    transform-origin: center;
}

.nav-toggle span:nth-child(1) {
    transform: translateY(-6px);
}

.nav-toggle span:nth-child(2) {
    transform: translateY(0);
}

.nav-toggle span:nth-child(3) {
    transform: translateY(6px);
}

/* Hamburger menu lines color based on header state */
.navbar.header-dark .nav-toggle span {
    background: white !important;
}

.navbar.header-light .nav-toggle span {
    background: var(--text-primary) !important;
}

/* Active state animations - Modern hamburger to X */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

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

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

/* Backdrop blur when sidebar is active */
.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: var(--gradient-hero);
    color: white;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    max-width: 100vw;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    margin-bottom: 1.5rem;
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

.hero-content-wrapper {
    font-family: 'Orbitron', sans-serif;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
}

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

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Code Editor Visual */
.hero-visual {
    position: relative;
}

.code-editor {
    background: var(--bg-dark);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.code-editor:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
}

.editor-header {
    background: #2d3748;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.editor-dots {
    display: flex;
    gap: 0.5rem;
}

.editor-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e53e3e;
}

.editor-dots span:nth-child(2) {
    background: #d69e2e;
}

.editor-dots span:nth-child(3) {
    background: #38a169;
}

.editor-tabs {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #a0aec0;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tab:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #f8f8f2;
}

.tab.active {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.3);
}

.tab i {
    font-size: 1rem;
}

.hacker-icon {
    fill: currentColor;
    transition: all 0.3s ease;
    display: block;
    width: 16px;
    height: 16px;
    filter: drop-shadow(0 0 2px currentColor);
}

.hacker-icon path {
    fill: inherit;
    transition: fill 0.3s ease;
}

.color-toggle:hover .hacker-icon {
    filter: drop-shadow(0 0 4px currentColor);
    transform: scale(1.1);
}

.color-toggle.active .hacker-icon {
    filter: drop-shadow(0 0 6px currentColor);
    animation: hackerPulse 2s infinite;
}

@keyframes hackerPulse {
    0%, 100% { 
        filter: drop-shadow(0 0 6px currentColor);
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 10px currentColor);
        transform: scale(1.05);
    }
}

/* Hacker Mode Color Toggle Styling */
.hacker-mode .color-toggle {
    color: var(--hacker-text);
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid var(--hacker-text);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.hacker-mode .color-toggle:hover {
    background: rgba(0, 255, 0, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

.hacker-mode .color-toggle.active {
    background: rgba(0, 255, 0, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.7);
    animation: hackerGlow 2s infinite;
}

.editor-content {
    position: relative;
    padding: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    font-weight: 400;
}

.code-tab {
    display: none;
}

.code-tab.active {
    display: flex;
}

.line-numbers {
    color: #4a5568;
    margin-right: 1rem;
    text-align: right;
    user-select: none;
}

.line-numbers span {
    display: block;
    padding: 0 0.5rem;
}

.code-lines {
    flex: 1;
}

.code-line {
    padding: 0.125rem 0;
}

.keyword {
    color: #3b82f6;
}

.function {
    color: #50fa7b;
}

.variable {
    color: #f8f8f2;
}

.string {
    color: #f1fa8c;
}

.comment {
    color: #6272a4;
}

.method {
    color: #8be9fd;
}

.number {
    color: #f59e0b;
}

.terminal {
    background: #1a202c;
    border-top: 1px solid #2d3748;
}

.terminal-header {
    background: #2d3748;
    padding: 0.5rem 1rem;
    color: #a0aec0;
    font-size: 0.8rem;
}

.terminal-content {
    position: relative;
    padding: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    font-weight: 400;
}

.terminal-tab {
    display: none;
}

.terminal-tab.active {
    display: block;
}

.terminal-line {
    margin-bottom: 0.5rem;
}

.prompt {
    color: #50fa7b;
}

.command {
    color: #f8f8f2;
}

.output {
    color: #8be9fd;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-tertiary);
}

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

.section-header h2 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

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

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-image {
    margin: 1rem 0;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.feature-image img:not([src]), 
.feature-image img[src=""] {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.875rem;
    font-weight: 500;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
}

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

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--bg-tertiary);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.pro {
    border-color: var(--primary-color);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.pricing-features i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--bg-tertiary);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.contact-details h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.contact-details p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-dark);
    color: white;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0 0.5rem;
    overflow: hidden;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #1d4ed8;
}

.social-links a i {
    font-size: 1.2rem;
}

.social-icon {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    opacity: 0.8;
    object-fit: contain;
}

.social-links a:hover .social-icon {
    transform: scale(1.1);
    opacity: 1;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
}

/* Social links responsive */
@media (max-width: 768px) {
    .social-links {
        justify-content: center;
        margin-top: 1rem;
        gap: 0.5rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        margin: 0 0.15rem;
    }
    
    .social-links a i {
        font-size: 0.9rem;
    }
    
    .social-icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 0.3rem;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        margin: 0 0.1rem;
    }
    
    .social-icon {
        width: 14px;
        height: 14px;
    }
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        height: 60px;
        padding: 0 0.75rem;
    }
    
    .nav-left {
        gap: 0.3rem;
        flex-shrink: 0;
    }
    
    .nav-logo {
        font-size: 1.2rem;
        gap: 0.4rem;
        white-space: nowrap;
    }
    
    .nav-logo i {
        font-size: 1.4rem;
    }
    
    .nav-theme-controls {
        gap: 0.02rem;
        flex-shrink: 0;
    }
    
    .color-toggle {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        padding: 0.3rem;
    }
    
    .nav-toggle {
        gap: 2px;
        padding: 5px;
    }
    
    .nav-toggle span {
        width: 18px;
        height: 2px;
    }
    
    .hacker-icon {
        width: 14px;
        height: 14px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        color: #333;
        padding: 2rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(20px);
        min-height: 200px;
    }
    
    /* Mobile nav when header is dark (white text) */
    .navbar.header-dark .nav-menu {
        background: rgba(0, 0, 0, 0.95);
        color: white;
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }
    
    .navbar.header-dark .nav-menu a {
        color: white !important;
        border-bottom-color: rgba(255, 255, 255, 0.1) !important;
    }
    
    .navbar.header-dark .nav-menu a:hover {
        color: #60a5fa !important;
        background: rgba(96, 165, 250, 0.1) !important;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        font-size: 1.1rem;
        font-weight: 500;
        color: #333 !important;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        color: #3b82f6 !important;
        padding-left: 1rem;
        background: rgba(59, 130, 246, 0.1);
        border-radius: 8px;
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(0) rotate(45deg);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(0) rotate(-45deg);
    }
    
    /* Hacker Mode Mobile Navigation */
    .hacker-mode .nav-menu {
        background: rgba(0, 0, 0, 0.95) !important;
        color: #00ff00 !important;
        border-bottom-color: rgba(0, 255, 0, 0.2) !important;
    }
    
    .hacker-mode .nav-menu a {
        color: #00ff00 !important;
        border-bottom-color: rgba(0, 255, 0, 0.2) !important;
    }
    
    .hacker-mode .nav-menu a:hover {
        color: #00ffff !important;
        background: rgba(0, 255, 0, 0.1) !important;
    }
    
    /* Hacker mode with dark header */
    .hacker-mode .navbar.header-dark .nav-menu {
        background: rgba(0, 0, 0, 0.98) !important;
        color: #00ff00 !important;
        border-bottom-color: rgba(0, 255, 0, 0.3) !important;
    }
    
    .hacker-mode .navbar.header-dark .nav-menu a {
        color: #00ff00 !important;
        border-bottom-color: rgba(0, 255, 0, 0.3) !important;
    }
    
    .hacker-mode .navbar.header-dark .nav-menu a:hover {
        color: #00ffff !important;
        background: rgba(0, 255, 0, 0.15) !important;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
        display: block;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 0 1rem;
        max-width: 100%;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-bottom: 1rem;
        max-width: 100%;
        overflow: hidden;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-bottom: 1.5rem;
        max-width: 100%;
        overflow: hidden;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .stat {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .code-editor {
        transform: none !important;
        margin: 0 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .editor-header {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .editor-tabs {
        margin-left: 0.5rem;
        gap: 0.25rem;
    }
    
    .tab {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .editor-content {
        padding: 1rem;
    }
    
    .code-line {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .terminal {
        margin: 0 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .terminal-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 55px;
        padding: 0 0.5rem;
    }
    
    .nav-left {
        gap: 0.2rem;
        flex-shrink: 0;
    }
    
    .nav-logo {
        font-size: 1.1rem;
        gap: 0.3rem;
        white-space: nowrap;
    }
    
    .nav-logo i {
        font-size: 1.3rem;
    }
    
    .nav-theme-controls {
        gap: 0.01rem;
        flex-shrink: 0;
    }
    
    .color-toggle {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
        padding: 0.25rem;
    }
    
    .hero {
        padding: 80px 0 50px;
        min-height: auto;
    }
    
    .hero-container {
        gap: 1rem;
        padding: 0 0.8rem;
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
        overflow: hidden;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        max-width: 100%;
        overflow: hidden;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.4;
        max-width: 100%;
        overflow: hidden;
    }
    
    .hero-cta {
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat {
        min-width: 70px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .nav-toggle {
        width: 26px;
        height: 26px;
        padding: 5px;
    }
    
    .nav-toggle span {
        width: 15px;
        height: 2px;
    }
    
    .nav-toggle span:nth-child(1) {
        transform: translateY(-4px);
    }
    
    .nav-toggle span:nth-child(3) {
        transform: translateY(4px);
    }
    
    .hacker-icon {
        width: 12px;
        height: 12px;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .hero {
        padding: 80px 0 60px;
        width: 100vw;
        min-height: 100vh;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .feature-card,
    .step,
    .pricing-card {
        padding: 1.5rem;
    }
    
    .code-editor {
        transform: none !important;
        margin: 0 0.5rem;
        max-width: calc(100% - 1rem);
    }
    
    .editor-header {
        padding: 0.5rem;
        gap: 0.25rem;
    }
    
    .editor-tabs {
        margin-left: 0.25rem;
        gap: 0.15rem;
    }
    
    .tab {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .editor-content {
        padding: 0.75rem;
    }
    
    .code-line {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .terminal {
        margin: 0 0.5rem;
        max-width: calc(100% - 1rem);
    }
    
    .terminal-content {
        padding: 0.75rem;
    }
}

@media (max-width: 360px) {
    .nav-container {
        height: 50px;
        padding: 0 0.4rem;
    }
    
    .nav-left {
        gap: 0.15rem;
        flex-shrink: 0;
    }
    
    .nav-logo {
        font-size: 1rem;
        gap: 0.25rem;
        white-space: nowrap;
    }
    
    .nav-logo i {
        font-size: 1.2rem;
    }
    
    .nav-theme-controls {
        gap: 0rem;
        flex-shrink: 0;
    }
    
    .color-toggle {
        width: 24px;
        height: 24px;
        font-size: 0.6rem;
        padding: 0.2rem;
    }
    
    .nav-toggle {
        width: 24px;
        height: 24px;
        padding: 4px;
    }
    
    .nav-toggle span {
        width: 14px;
        height: 2px;
    }
    
    .nav-toggle span:nth-child(1) {
        transform: translateY(-3px);
    }
    
    .nav-toggle span:nth-child(3) {
        transform: translateY(3px);
    }
    
    .hacker-icon {
        width: 10px;
        height: 10px;
    }
    
    .hero {
        padding: 60px 0 40px;
        width: 100vw;
        min-height: auto;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
    
    .hero-container {
        gap: 0.8rem;
        padding: 0 0.6rem;
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
        overflow: hidden;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.7rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
        line-height: 1.1;
        max-width: 100%;
        overflow: hidden;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.3;
        max-width: 100%;
        overflow: hidden;
    }
    
    .hero-cta {
        gap: 0.5rem;
        margin-bottom: 1.2rem;
    }
    
    .btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero-stats {
        gap: 0.8rem;
    }
    
    .stat {
        min-width: 60px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .code-editor {
        transform: none !important;
        margin: 0 0.25rem;
        max-width: calc(100% - 0.5rem);
    }
    
    .editor-header {
        padding: 0.4rem;
        gap: 0.2rem;
    }
    
    .editor-tabs {
        margin-left: 0.2rem;
        gap: 0.1rem;
    }
    
    .tab {
        padding: 0.25rem 0.5rem;
        font-size: 0.7rem;
    }
    
    .editor-content {
        padding: 0.5rem;
    }
    
    .code-line {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .terminal {
        margin: 0 0.25rem;
        max-width: calc(100% - 0.5rem);
    }
    
    .terminal-content {
        padding: 0.5rem;
    }
}

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

.feature-card,
.step,
.pricing-card {
    animation: fadeInUp 0.6s ease forwards;
}

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

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



/* Hacker Mode Styles */
.hacker-mode {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #0f0f0f;
    --text-primary: #00ff00;
    --text-secondary: #00cc00;
    --text-light: #00aa00;
    --border-color: #00ff00;
    --primary-color: #00ff00;
    --secondary-color: #00cc00;
    --accent-color: #3b82f6;
    --shadow-sm: 0 1px 3px rgba(0, 255, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 255, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 255, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 255, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    --gradient-secondary: linear-gradient(135deg, #00cc00 0%, #009900 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --gradient-hero: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hacker-mode .navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    border-bottom-color: #00ff00 !important;
    box-shadow: 0 2px 10px rgba(0, 255, 0, 0.1) !important;
}

.hacker-mode .nav-logo {
    color: #00ff00 !important;
}

.hacker-mode .nav-menu a {
    color: #00ff00 !important;
}

.hacker-mode .nav-menu a:hover {
    color: #3b82f6 !important;
}

.hacker-mode .hero {
    background: var(--hacker-bg) !important;
}

.hacker-mode .features {
    background: var(--hacker-bg) !important;
}

.hacker-mode .pricing {
    background: var(--hacker-bg) !important;
}

.hacker-mode .feature-card,
.hacker-mode .step,
.hacker-mode .pricing-card {
    background: var(--hacker-bg) !important;
    border-color: var(--hacker-border) !important;
    box-shadow: var(--hacker-shadow) !important;
}

.hacker-mode .feature-image {
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
}

.hacker-mode .footer {
    background: var(--hacker-bg) !important;
}

.hacker-mode .social-icon {
    opacity: 0.9;
    filter: hue-rotate(90deg);
}

.hacker-mode .social-links a:hover .social-icon {
    opacity: 1;
    filter: hue-rotate(90deg) drop-shadow(0 0 6px rgba(0, 255, 0, 0.5));
}

/* Hacker Mode Contact Section */
.hacker-mode .contact-section {
    background: #0a0a0a !important;
    color: #00ff00 !important;
}

.hacker-mode .contact-content {
    color: #00ff00 !important;
}

.hacker-mode .contact-item {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(0, 255, 0, 0.2) !important;
    box-shadow: 0 4px 20px rgba(0, 255, 0, 0.1) !important;
    position: relative !important;
    z-index: 1 !important;
}

.hacker-mode .contact-item:hover {
    box-shadow: 0 8px 30px rgba(0, 255, 0, 0.2) !important;
    border-color: rgba(0, 255, 0, 0.4) !important;
}

.hacker-mode .contact-icon {
    background: #3b82f6 !important;
}

.hacker-mode .contact-details h4 {
    color: #00ff00 !important;
}

.hacker-mode .contact-details p {
    color: #e91e63 !important;
}

.hacker-mode .contact-form {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(0, 255, 0, 0.2) !important;
    box-shadow: 0 4px 20px rgba(0, 255, 0, 0.1) !important;
    position: relative !important;
    z-index: 1 !important;
}

.hacker-mode .form-group label {
    color: #00ff00 !important;
    font-weight: 600 !important;
}

.hacker-mode .contact-form-inner {
    color: #333 !important;
}

.hacker-mode .form-group input,
.hacker-mode .form-group select,
.hacker-mode .form-group textarea {
    border: 2px solid #00ff00 !important;
    background: rgba(255, 255, 255, 0.9) !important;
    color: #333 !important;
    transition: all 0.3s ease !important;
}

.hacker-mode .form-group input:focus,
.hacker-mode .form-group select:focus,
.hacker-mode .form-group textarea:focus {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2) !important;
    background: white !important;
    outline: none !important;
}

.hacker-mode .form-group input::placeholder,
.hacker-mode .form-group textarea::placeholder {
    color: #666 !important;
}

.hacker-mode .form-group select option {
    background: white !important;
    color: #333 !important;
}

.hacker-mode .btn-primary {
    background: #3b82f6 !important;
    color: white !important;
    border: none !important;
}

.hacker-mode .btn-primary:hover {
    background: #2563eb !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3) !important;
}

.hacker-mode .section-header h2 {
    color: #00ff00 !important;
}

.hacker-mode .section-header p {
    color: #00cc00 !important;
}

/* Hacker Mode Glowing Effects */
.hacker-mode .contact-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ff00, #3b82f6, #00ff00);
    border-radius: 1rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hacker-mode .contact-item:hover::before {
    opacity: 0.3;
}

.hacker-mode .contact-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ff00, #3b82f6, #00ff00);
    border-radius: 1rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hacker-mode .contact-form:hover::before {
    opacity: 0.2;
}

/* Hacker Mode Animations */
@keyframes hackerGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(0, 255, 0, 0.3); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 0, 0.6); }
}

.hacker-mode .contact-item {
    animation: hackerGlow 3s ease-in-out infinite;
}

.hacker-mode .contact-form {
    animation: hackerGlow 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

.hacker-mode .code-editor {
    background: var(--hacker-bg) !important;
    border-color: var(--hacker-border) !important;
}

.hacker-mode .editor-header {
    background: var(--hacker-bg) !important;
    border-bottom-color: var(--hacker-border) !important;
}

.hacker-mode .terminal {
    background: var(--hacker-bg) !important;
    border-top-color: var(--hacker-border) !important;
}

.hacker-mode .terminal-header {
    background: var(--hacker-bg) !important;
    border-bottom-color: var(--hacker-border) !important;
}

.hacker-mode .keyword { color: #00ff00 !important; }
.hacker-mode .function { color: var(--hacker-text) !important; }
.hacker-mode .variable { color: var(--hacker-text) !important; }
.hacker-mode .string { color: #ffff00 !important; }
.hacker-mode .comment { color: #00ffff !important; }
.hacker-mode .method { color: #00ffff !important; }
.hacker-mode .number { color: #ff6b6b !important; }
.hacker-mode .prompt { color: var(--hacker-text) !important; }
.hacker-mode .command { color: var(--hacker-text) !important; }
.hacker-mode .output { color: #00ffff !important; }

.hacker-mode .navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    border-bottom-color: #00ff00 !important;
}

.hacker-mode .navbar.header-light {
    background: rgba(0, 0, 0, 0.95) !important;
    color: var(--hacker-text);
    border-bottom-color: var(--hacker-border);
}

.hacker-mode .navbar.header-dark {
    background: rgba(0, 0, 0, 0.98) !important;
    color: var(--hacker-text);
    border-bottom-color: var(--hacker-border);
}

.hacker-mode .nav-menu {
    background: var(--hacker-bg);
    border-bottom-color: var(--hacker-border);
}

.hacker-mode .nav-menu a {
    border-bottom-color: var(--hacker-border);
    color: var(--hacker-text) !important;
}

.hacker-mode .nav-menu a:hover {
    color: #00ffff !important;
}

/* Hacker mode hamburger menu */
.hacker-mode .nav-toggle span {
    background: #00ff00 !important;
}

.hacker-mode .nav-toggle:hover span {
    background: #00ffff !important;
}

.hacker-mode .nav-menu a {
    color: #00ff00 !important;
}

.hacker-mode .hero {
    background: linear-gradient(135deg, #000 0%, #001a00 100%) !important;
}

.hacker-mode .code-editor {
    background: #000 !important;
    border: 1px solid #00ff00 !important;
}

.hacker-mode .editor-header {
    background: #001a00 !important;
}

.hacker-mode .terminal {
    background: #000 !important;
    border-top-color: #00ff00 !important;
}

.hacker-mode .terminal-header {
    background: #001a00 !important;
}

.hacker-mode .keyword { color: #00ff00 !important; }
.hacker-mode .function { color: #00ff00 !important; }
.hacker-mode .variable { color: #ffffff !important; }
.hacker-mode .string { color: #ffff00 !important; }
.hacker-mode .comment { color: #00ffff !important; }
.hacker-mode .method { color: #00ffff !important; }
.hacker-mode .number { color: #ff6b6b !important; }
.hacker-mode .prompt { color: #00ff00 !important; }
.hacker-mode .command { color: #ffffff !important; }
.hacker-mode .output { color: #00ffff !important; } 

/* Tap Effect Styles */
.tap-box {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 8px;
    opacity: 0.9;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
    transition: all 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tap-box.draggable {
    pointer-events: auto;
    cursor: grab;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.tap-box.dragging {
    cursor: grabbing;
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
}



.hacker-mode .tap-box {
    background: linear-gradient(135deg, var(--hacker-accent), #00ffff);
    box-shadow: 0 8px 32px rgba(0, 255, 0, 0.4);
    border: 1px solid var(--hacker-border);
}

