:root {
    --primary-color: #ef4444;
    --secondary-color: #dc2626;
    --text-color: #0f172a;
    --bg-color: #ffffff;
    --yellow: #fbbf24;
    --orange: #fb923c;
    --gray-light: #f9fafb;
    --gray-medium: #6b7280;
    --border-color: #e5e7eb;
}

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

body {
    font-family: 'Arial Black', 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.4;
    text-transform: uppercase;
}

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

/* Header */
header {
    background: var(--text-color);
    border-bottom: 4px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav {
    padding: 1rem 0;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
}

.nav-links a:hover {
    color: var(--yellow);
    border-color: var(--yellow);
}

/* Hero Section */
.hero {
    background: linear-gradient(45deg, var(--primary-color), var(--orange));
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '!!!';
    position: absolute;
    font-size: 20rem;
    opacity: 0.1;
    font-weight: 900;
}

.hero::before {
    top: -5rem;
    left: -5rem;
}

.hero::after {
    bottom: -5rem;
    right: -5rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: -2px;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
    position: relative;
}

.lead {
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: var(--gray-light);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: repeating-linear-gradient(
        90deg,
        var(--primary-color),
        var(--primary-color) 10px,
        var(--yellow) 10px,
        var(--yellow) 20px
    );
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 900;
    color: var(--text-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border: 4px solid var(--text-color);
    position: relative;
    transition: all 0.2s;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    right: -0.5rem;
    bottom: -0.5rem;
    background: var(--yellow);
    z-index: -1;
}

.feature-card:hover {
    transform: translate(-4px, -4px);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 900;
}

.feature-card p {
    color: var(--text-color);
    text-transform: none;
    font-family: Arial, sans-serif;
}

/* Page Header */
.page-header {
    background: var(--yellow);
    padding: 3rem 0;
    border-bottom: 4px solid var(--text-color);
}

.page-header h1 {
    font-size: 3rem;
    color: var(--text-color);
    font-weight: 900;
}

/* Content Sections */
.content-section, .contact-section {
    padding: 4rem 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    margin: 2rem 0 1rem;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 2rem;
}

.content-wrapper h3 {
    margin: 1.5rem 0 0.75rem;
    color: var(--orange);
    font-weight: 900;
}

.content-wrapper p {
    margin-bottom: 1rem;
    text-transform: none;
    font-family: Arial, sans-serif;
}

.content-wrapper ul {
    margin: 1rem 0 1rem 2rem;
    text-transform: none;
    font-family: Arial, sans-serif;
}

.last-updated {
    color: var(--gray-medium);
    font-style: italic;
    margin-bottom: 2rem;
    text-transform: none;
}

/* Contact Page */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    margin: 1.5rem 0;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.contact-item p {
    text-transform: none;
    font-family: Arial, sans-serif;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 3px solid var(--text-color);
    font-size: 1rem;
    font-family: Arial, sans-serif;
    text-transform: none;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 4px 4px 0 var(--yellow);
}

.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 3px solid var(--text-color);
    font-size: 1rem;
    background-color: var(--background);
    font-family: inherit;
    box-shadow: 2px 2px 0 var(--gray);
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 4px 4px 0 var(--yellow);
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.radio-group label,
.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
}

.radio-group input,
.checkbox-group input {
    margin-right: 0.5rem;
    width: auto;
}

.form-text {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.25rem;
}

.form-note {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f0f0f0;
    border-left: 4px solid var(--primary-color);
    font-style: italic;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: 3px solid var(--text-color);
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    text-transform: uppercase;
    position: relative;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--text-color);
}

.btn-secondary {
    background: white;
    color: var(--text-color);
}

.btn-secondary:hover {
    background: var(--yellow);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--text-color);
}

/* Footer */
footer {
    background: var(--text-color);
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 10px solid var(--primary-color);
}

footer p {
    text-align: center;
    font-weight: 700;
}

/* Error Pages */
.error-page {
    padding: 6rem 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-content h1 {
    font-size: 12rem;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
    font-weight: 900;
    text-shadow: 6px 6px 0 var(--yellow);
}

.error-content h2 {
    font-size: 3rem;
    margin: 1rem 0;
    font-weight: 900;
}

.error-content p {
    color: var(--gray-medium);
    margin-bottom: 2rem;
    text-transform: none;
    font-family: Arial, sans-serif;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        text-transform: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
    
    .error-content h1 {
        font-size: 6rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
}