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

:root {
    --bg-color: #121212;
    --text-color: #ffffff;
    --accent-color: #e6ff00; /* Matching the yellow in the logo */
    --card-bg: #1e1e1e;
    --secondary-text: #b0b0b0;
    --spacing: 2rem;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: var(--spacing);
    overflow-x: hidden;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    animation: fadeIn 1.2s ease-out;
}

.logo-container {
    margin-bottom: var(--spacing);
}

.logo {
    width: 120px;
    height: auto;
    border-radius: 20%;
    box-shadow: 0 10px 30px rgba(230, 255, 0, 0.1);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.card {
    background-color: var(--card-bg);
    padding: calc(var(--spacing) * 1.5);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.1rem;
    color: var(--secondary-text);
    margin-bottom: 1.5rem;
}

.secure-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(230, 255, 0, 0.1);
    color: var(--accent-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(230, 255, 0, 0.2);
}

.contact-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: #000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 255, 0, 0.3);
    background-color: #f0ff4d;
}

footer {
    margin-top: calc(var(--spacing) * 2);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

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

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    .card {
        padding: var(--spacing);
    }
}
