@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Outfit:wght@400;700;800;900&display=swap');

:root {
    --primary: hsl(348, 83%, 47%);
    --primary-glow: hsla(348, 83%, 47%, 0.4);
    --bg: #0a0a0c;
    --surface: rgba(18, 18, 22, 0.75);
    --text-main: #f8f9fa;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
    --card-bg: rgba(255, 255, 255, 0.03);
}

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

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('crimson_fusion_hero.png') no-repeat center center;
    background-size: cover;
    z-index: -2;
    opacity: 0.5;
    filter: saturate(0.8) brightness(0.7);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent, rgba(10, 10, 12, 0.95));
    z-index: -1;
}

.container {
    max-width: 1000px;
    width: 90%;
    margin: 60px auto;
    padding: 80px 60px;
    background: var(--surface);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border);
    border-radius: 40px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.7);
    animation: slideUp 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    text-align: center;
    margin-bottom: 60px;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.logo-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), #800000);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: white;
    box-shadow: 0 20px 40px var(--primary-glow);
    transform: rotate(-5deg);
}

h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, #fff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.badge {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--primary);
    background: rgba(255, 68, 68, 0.1);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 24px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.content {
    font-size: 1.15rem;
    color: var(--text-main);
}

.letter-intro {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #fff;
}

p {
    margin-bottom: 24px;
    opacity: 0.9;
}

strong {
    color: var(--primary);
    font-weight: 600;
}

.status-box {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
}

.status-indicator {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 15px #10b981;
}

.signature-block {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.signature-text .name {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 4px;
}

.signature-text .title {
    color: var(--primary);
    font-weight: 600;
}

.date {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-links {
    margin: 40px 0 80px;
    display: flex;
    gap: 20px;
    color: var(--text-muted);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.divider {
    opacity: 0.3;
}

@media (max-width: 768px) {
    .container {
        padding: 50px 30px;
        margin: 30px auto;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .signature-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    h1 {
        font-size: 3rem;
    }
}