/* style.css */
body {
    background-color: #060B19;
    background-image: 
        radial-gradient(ellipse at top, rgba(0, 102, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at center, rgba(0, 194, 255, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
}

.glass-nav {
    background: rgba(6, 11, 25, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-glow {
    position: relative;
    background: #0D152C;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.card-glow::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 194, 255, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-glow:hover::before {
    opacity: 1;
}

.card-glow:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(0, 102, 255, 0.3);
    border-color: rgba(0, 194, 255, 0.2);
}

.icon-wrapper {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 194, 255, 0.1) 100%);
    border: 1px solid rgba(0, 194, 255, 0.2);
    box-shadow: inset 0 0 20px rgba(0, 102, 255, 0.05);
}

.btn-primary {
    background: linear-gradient(135deg, #0066FF 0%, #00C2FF 100%);
    box-shadow: 0 8px 16px -4px rgba(0, 102, 255, 0.4);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -6px rgba(0, 194, 255, 0.5);
    background: linear-gradient(135deg, #0052CC 0%, #00A3FF 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.text-gradient {
    background: linear-gradient(135deg, #FFFFFF 0%, #94A3B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-primary {
    background: linear-gradient(135deg, #00C2FF 0%, #0066FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-section {
    background: radial-gradient(ellipse at center, #0D152C 0%, #060B19 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at center, rgba(0, 102, 255, 0.05) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
    z-index: 0;
}

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

.hero-dashboard-img {
    box-shadow: 0 25px 50px -12px rgba(0, 102, 255, 0.25);
    border: 1px solid rgba(255,255,255, 0.1);
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.5s ease;
}

.hero-dashboard-img:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
}
