/*
Theme Name: AlphaExploit
Theme URI: https://alphaexploit.com
Author: Justin Embry & Antigravity
Author URI: https://alphaexploit.com
Description: A high-contrast, cocky, and confident theme for AI automation pioneers. Super Bold Poppins typography.
Version: 1.0.0
Text Domain: alpha-exploit
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    /* Fallback */
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1.1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Accents */
.text-accent {
    color: #FFBF00;
    /* Vivid Amber */
}

.bg-accent {
    background-color: #FFBF00;
}

/* Animations */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fade-up 0.8s ease-out forwards;
}