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

:root {
    --primary: #E31E24;
    --secondary: #FFFFFF;
    --dark: #1A1A1A;
    --text-light: #FFFFFF;
    --text-gray: #CCCCCC;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D0A0B 100%);
    min-height: 100vh;
    color: var(--text-light);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(227, 30, 36, 0.1) 0%, transparent 70%);
    animation: pulse 10s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeIn 1s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(227, 30, 36, 0.5);
    letter-spacing: 2px;
}

.tagline {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.hero {
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(227, 30, 36, 0.3);
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.6);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(227, 30, 36, 0.3);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.info-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.info-section h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.info-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.faq-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2.5rem;
}

.faq-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(227, 30, 36, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    cursor: pointer;
}

.faq-item summary {
    font-weight: 600;
    font-size: 1.1rem;
    list-style: none;
}

.faq-item summary::after {
    content: '+';
    float: right;
    color: var(--primary);
    font-size: 1.5rem;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-answer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.7;
}

footer {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(227, 30, 36, 0.3);
}

.disclaimer {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .logo { font-size: 2.5rem; }
    .hero h2 { font-size: 2rem; }
    .hero { padding: 2rem 1.5rem; }
    .features { grid-template-columns: 1fr; }
}
