/* Global Styles */
body {
    background-color: #0B0B0E;
    color: #F7F5F2;
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.5px;
}

/* Diagonal Track Lines Background */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        #0B0B0E 0%,
        #0B0B0E 90%,
        #2D7FF9 90%,
        #2D7FF9 91%,
        #0B0B0E 91%,
        #0B0B0E 100%
    );
    background-size: 100px 100px;
    opacity: 0.05;
    pointer-events: none;
    z-index: -1;
}

/* Button Styles */
.btn-volt {
    background-color: #C6FF00;
    color: #0B0B0E;
    transition: all 0.3s ease;
}

.btn-volt:hover {
    background-color: #b2e600;
}

.btn-outline {
    border: 2px solid #F7F5F2;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: rgba(247, 245, 242, 0.1);
}

/* Section Spacing */
section {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 3.5rem 0;
    }
}

/* Custom Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse-slow {
    animation: pulse 3s infinite;
}