:root {
    --bg-color: #000000;
    /* Pure black background */
    --card-bg: transparent;
    /* Remove card background */
    --text-color: #ffffff;
    --accent-color: #ffffff;
    --font-main: 'Oswald', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: var(--text-color);
    padding: 20px;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 600px;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.card {
    background-color: var(--card-bg);
    padding: 20px 20px;
    text-align: center;
    position: relative;
}

.main-logo {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.brand-name {
    font-size: 2rem;
    /* Restored to 2rem */
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1;
    letter-spacing: 1px;
}

.phone-number {
    display: block;
    font-size: 1.5rem;
    /* Restored to 1.5rem */
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 15px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: #cccccc;
    text-decoration: underline;
}

.tagline {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.5rem;
    }

    .phone-number {
        font-size: 1.2rem;
    }

    .tagline {
        font-size: 0.9rem;
    }
}