:root {
    --primary-red: #ff0000;
    --primary-red-dark: #cc0000;
    --primary-red-light: #ff3333;
    --secondary-red: #ff4444;
    --accent-red: #ff6666;
    --text-dark: #ffffff;
    --text-gray: #cccccc;
    --text-light: #999999;
    --bg-gray: #111111;
    --bg-white: #000000;
    --bg-dark: #000000;
    --border-gray: #333333;
    --gradient-primary: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    --gradient-secondary: linear-gradient(135deg, #ff3333 0%, #ff0000 100%);
    --shadow-sm: 0 1px 2px 0 rgb(255 255 255 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(255 255 255 / 0.1), 0 2px 4px -2px rgb(255 255 255 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(255 255 255 / 0.1), 0 4px 6px -4px rgb(255 255 255 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(255 255 255 / 0.1), 0 8px 10px -6px rgb(255 255 255 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background: rgb(39, 39, 39);
    border-bottom: 1px solid var(--border-gray);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 300;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.cta-button {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 400;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
    background: var(--bg-dark);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.cta-button.secondary:hover {
    background: var(--primary-red);
    color: white;
}

.content-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.content-link:hover {
    color: white;
}

footer {
    background: var(--bg-dark);
    color: white;
    padding: 48px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer-section p,
.footer-section li {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
    color: #9ca3af;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .container,
    .container-wide {
        padding: 0 16px;
    }
}
