:root {
    --bg-color: #0A0A0A;
    --text-primary: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.6);
    --accent-yellow: #F2CA50;
    --accent-red: #D32F2F;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-label: 'Space Grotesk', sans-serif;
    --font-italic: 'Playfair Display', serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header */
header {
    margin-bottom: 30px;
}

.logo {
    font-family: var(--font-label);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.2em;
    color: var(--text-primary);
}

/* Divider */
.divider {
    width: 60px;
    height: 1px;
    background-color: var(--text-muted);
    margin-bottom: 60px;
}

/* Main Content */
main {
    margin-bottom: 60px;
}

h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

h1 .italic-accent {
    font-family: var(--font-italic);
    font-style: italic;
    font-weight: 600;
    color: var(--accent-yellow);
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-weight: 300;
}

/* Socials */
.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.icon-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--text-muted);
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.icon-link:hover {
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
    transform: translateY(-3px);
}

/* Footer */
footer {
    width: 100%;
}

.contact-info {
    font-family: var(--font-label);
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.bullet {
    margin: 0 10px;
    color: var(--accent-red); /* Using red here for the separator */
}

/* Responsive */
@media (max-width: 640px) {
    h1 {
        font-size: 32px;
    }
    p {
        font-size: 14px;
    }
}
