/* Custom Styles for SteamTools */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #0e1621;
    color: #e5e7eb;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
}

.btn-primary {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, #66c0f4, #417a9b);
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    border-radius: 0.5rem;
    box-shadow: 0 0 20px rgba(102, 192, 244, 0.5);
    transition: all 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 0 40px rgba(102, 192, 244, 0.7);
    transform: scale(1.05);
}

.btn-secondary {
    padding: 0.75rem 1.5rem;
    background-color: #2a475e;
    color: #66c0f4;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    border-radius: 0.5rem;
    border: 2px solid #66c0f4;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #66c0f4;
    color: #1b2838;
}

.card-gaming {
    background: linear-gradient(to bottom right, #1b2838, #2a475e);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(102, 192, 244, 0.2);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.card-gaming:hover {
    box-shadow: 0 0 20px rgba(102, 192, 244, 0.5);
    transform: scale(1.05);
    border-color: rgba(102, 192, 244, 0.5);
}

.text-gradient {
    background: linear-gradient(to right, #66c0f4, #8cd4ff, #66c0f4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-text {
    text-shadow: 0 0 10px rgba(102, 192, 244, 0.8), 0 0 20px rgba(102, 192, 244, 0.5);
}

.section-padding {
    padding: 5rem 1rem;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 5rem 2rem;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 5rem 4rem;
    }
}

.container-custom {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.backdrop-blur-steam {
    backdrop-filter: blur(10px);
    background-color: rgba(27, 40, 56, 0.8);
}

.bg-gradient-steam {
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 50%, #1b2838 100%);
}

.bg-gradient-glow {
    background: radial-gradient(circle, rgba(102,192,244,0.3) 0%, transparent 70%);
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(102, 192, 244, 0.5);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 40px rgba(102, 192, 244, 0.8);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fade-in 0.8s ease-out;
}

.scroll-smooth {
    scroll-behavior: smooth;
}

