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

:root {
    --primary: #E50914; 
    --primary-glow: rgba(229, 9, 20, 0.5);
    --bg-dark: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --glass-border: rgba(255, 255, 255, 0.08);
    --accent: #22d3ee;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 10%, rgba(229, 9, 20, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(34, 211, 238, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 0%, #050505 100%);
    z-index: -1;
}

.container {
    max-width: 850px;
    margin: 80px auto;
    padding: 60px;
    background: var(--bg-card);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.logo-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--primary-glow);
    margin-bottom: 15px;
    /* In a real app, this would be logo.png */
    background: linear-gradient(135deg, var(--primary), #800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 800;
}

.logo-text {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -2px;
    background: linear-gradient(to bottom, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -1px;
}

h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 45px 0 20px;
    color: #fff;
    display: flex;
    align-items: center;
}

h2::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 3px;
    margin-right: 15px;
    box-shadow: 0 0 10px var(--primary-glow);
}

p {
    margin-bottom: 24px;
    color: var(--text-muted);
}

ul {
    margin-bottom: 24px;
    padding-left: 20px;
    color: var(--text-muted);
}

li {
    margin-bottom: 12px;
    position: relative;
    list-style: none;
}

li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.contact-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 16px 40px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.contact-button:hover {
    background: #ff0f1a;
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px -10px var(--primary-glow);
}

footer {
    text-align: center;
    margin-top: 80px;
    padding-bottom: 60px;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 40px;
}

.last-updated {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .container {
        margin: 0;
        padding: 40px 20px;
        border-radius: 0;
        border: none;
    }
    .logo-text {
        font-size: 2.2rem;
    }
}
