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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #e5e7eb;
    line-height: 1.6;
}

.orbitron {
    font-family: 'Orbitron', monospace;
}

.glow-text {
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.6), 0 0 40px rgba(59, 130, 246, 0.4);
    letter-spacing: 2px;
}

.glow-box {
    box-shadow: 0 0 30px rgba(96, 165, 250, 0.2), 0 0 60px rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.1);
}

.feature-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.01);
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(96, 165, 250, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.tech-pattern {
    background-image:
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 40%),
        url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.8;
}

.icon-glow {
    filter: drop-shadow(0 0 15px rgba(96, 165, 250, 0.6));
}

.section-padding {
    padding: 8rem 2rem;
}

.cta-button {
    font-family: 'Orbitron', monospace;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.6);
    filter: brightness(1.2);
}

.navbar {
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

.navbar-link {
    font-family: 'Orbitron', monospace;
    color: #94a3b8;
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.navbar-link:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #f8fafc;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.widget-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    perspective: 1000px;
}

.widget-image {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    transition: transform 0.5s ease;
}

.widget-container:hover .widget-image {
    transform: rotateX(2deg) rotateY(-2deg);
}

.marker {
    position: absolute;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.8);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.marker:hover {
    transform: scale(1.4);
    box-shadow: 0 0 40px rgba(6, 182, 212, 1);
    filter: brightness(1.2);
}

.info-card-number {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 14px;
    font-weight: 800;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.screenshot {
    max-width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.screenshot:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

/* Active Highlight Styles */
.marker.active-highlight {
    transform: scale(1.5);
    box-shadow: 0 0 50px rgba(6, 182, 212, 1);
    background: linear-gradient(135deg, #06b6d4, #ffffff);
    color: #000;
    z-index: 100;
}

.feature-card.active-highlight {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(96, 165, 250, 0.8);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
    transform: scale(1.03);
}