/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&family=Russo+One&display=swap');

:root {
    /* Color Palette */
    --color-primary: #FF5F00;
    /* Electric Orange */
    --color-bg: #000000;
    /* OLED Black */
    --color-surface: #121212;
    /* Anthracite */
    --color-text-main: #FFFFFF;
    /* White */
    --color-text-sub: #EBEBF5;
    /* Light Gray */
    --color-gold: #FFA500;
    /* Top Rank Gold */

    /* Spacing */
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;

    /* Global Radius */
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Russo One', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* --- Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    background-color: var(--color-primary);
    color: white;
    font-family: 'Russo One', sans-serif;
    border-radius: var(--radius);
    text-transform: uppercase;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 95, 0, 0.4);
    background-color: #ff7524;
}

.text-gradient {
    background: linear-gradient(45deg, var(--color-primary), var(--color-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-box {
    background-color: rgba(255, 95, 0, 0.1);
    border-left: 4px solid var(--color-primary);
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
    border-radius: 4px;
}

/* --- Header --- */
header {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-links a {
    color: var(--color-text-sub);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--color-primary);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 95, 0, 0.15) 0%, rgba(0, 0, 0, 0) 70%),
        var(--color-bg);
    padding-top: 70px;
    /* Offset fixed header */
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--color-text-sub);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Features Section --- */
.features {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-size: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    background-color: var(--color-surface);
    padding: var(--spacing-lg);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.feature-card h3 {
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--color-text-sub);
}

/* --- Footer --- */
footer {
    background-color: var(--color-surface);
    padding: var(--spacing-xl) 0;
    color: var(--color-text-sub);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    text-align: center;
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.contact-email {
    color: var(--color-primary);
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        /* Simple hiding for mobile for now */
    }
}

/* --- Compact Legal Section --- */
.compact-legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    color: #666;
    /* Low contrast text */
}

.compact-legal h2 {
    font-size: 1rem;
    color: #888;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
    text-transform: none;
    /* remove invasive uppercase if needed, or keep consistent */
}

.compact-legal p,
.compact-legal li {
    font-size: 0.8rem;
    line-height: 1.4;
    text-align: justify;
    margin-bottom: 0.5rem;
}

.compact-legal strong {
    font-weight: 500;
    color: #777;
}

.compact-legal a {
    color: inherit;
    text-decoration: underline;
}

.compact-legal-title {
    font-size: 1.5rem;
    color: #888;
    margin-bottom: 2rem;
    text-align: center;
}