/* Font Face Definition */
@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/InterVariable.woff2') format('woff2-variations'),
        url('../assets/fonts/InterVariable.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/InterVariable-Italic.woff2') format('woff2-variations'),
        url('../assets/fonts/InterVariable-Italic.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap;
    font-style: italic;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    width: 100%;
    margin: 0;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #000000;
}

/* Background & Layout */
body {
    background: linear-gradient(135deg, #2d1b4e 0%, #1a1a1a 100%);
    background-attachment: fixed;
    /* Parallax-like effect */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    overflow-y: auto;
    /* Allow vertical scrolling */
}

/* Card Component */
.container {
    padding: 2rem;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    padding: 4rem;
    max-width: 680px;
    width: 100%;
    text-align: center;
    border-radius: 4px;
    /* Minimalist, clean corners */
    opacity: 0;
    animation: fadeIn 1.2s ease-out forwards;
    transform: translateY(20px);
}

/* Typography */
h1 {
    font-weight: 600;
    font-size: 3rem;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
    line-height: 1.1;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content p {
    font-weight: 300;
    /* Light weight for elegance */
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.content strong {
    font-weight: 600;
    color: #ffffff;
}

.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 2.5rem auto;
    width: 60%;
}

.footer-note {
    font-size: 0.95rem;
    /* Slightly smaller */
    color: rgba(255, 255, 255, 0.6) !important;
    margin-bottom: 1.5rem !important;
}

/* Contact Button */
.contact-button {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    margin-top: 0.5rem;
}

.contact-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

/* Legal Footer */
.legal-footer {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.legal-footer a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-footer a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.legal-footer .separator {
    margin: 0 0.5rem;
    opacity: 0.5;
}

/* Animations */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .card {
        padding: 2.5rem 1.5rem;
        margin: 2rem 0;
    }

    h1 {
        font-size: 2.25rem;
        margin-bottom: 2rem;
    }

    .content p {
        font-size: 1rem;
    }
}