/* Custom styles for KrackenCode */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0f14;
    color: #ffffff;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
}

.glow-orange {
    text-shadow: 0 0 15px rgba(255, 77, 0, 0.4);
}

.glow-teal {
    text-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
}

.gradient-card-teal {
    background: linear-gradient(180deg, rgba(0, 210, 255, 0.05) 0%, rgba(0, 210, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.gradient-card-orange {
    background: linear-gradient(180deg, rgba(255, 77, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.abyssal-gradient {
    background: radial-gradient(circle at top, #1a2228 0%, #0a0f14 100%);
}
