@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;400&display=swap');

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    font-family: 'Montserrat', Arial, sans-serif;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background: rgba(34, 34, 34, 0.95);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    padding: 48px 32px 32px 32px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.logo {
    margin-bottom: 16px;
}

/* Car logo SVG animation */
.car-logo-svg {
    display: block;
    margin: 0 auto;
}
.car-logo-body-group {
    transform-origin: 40px 35px;
    animation: car-bounce 1.6s cubic-bezier(.68,-0.55,.27,1.55) infinite;
}
.car-logo-wheel-group-left,
.car-logo-wheel-group-right {
    transform-origin: 30px 55px;
    animation: wheel-spin 1s linear infinite;
}
.car-logo-wheel-group-right {
    transform-origin: 50px 55px;
}

@keyframes wheel-spin {
    100% { transform: rotate(360deg); }
}

@keyframes car-bounce {
    0%, 100% { transform: translateY(0); }
    20% { transform: translateY(-3px); }
    40% { transform: translateY(0); }
    60% { transform: translateY(-2px); }
    80% { transform: translateY(0); }
}

h1 {
    font-size: 2.5rem;
    margin: 0 0 8px 0;
    letter-spacing: 2px;
    color: #00C9A7;
}

h2 {
    font-size: 1.5rem;
    margin: 0 0 16px 0;
    font-weight: 400;
    color: #fff;
}

.subtitle {
    color: #b2fefa;
    margin-bottom: 32px;
    font-size: 1rem;
    letter-spacing: 1px;
}

.car-illustration {
    position: relative;
    width: 120px;
    height: 48px;
    margin: 0 auto 32px auto;
}

.car-body {
    position: absolute;
    left: 10px;
    top: 18px;
    width: 100px;
    height: 20px;
    background: linear-gradient(90deg, #00C9A7 60%, #b2fefa 100%);
    border-radius: 12px 12px 20px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.wheel {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #232526;
    border-radius: 50%;
    bottom: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    border: 3px solid #00C9A7;
}

.wheel-left {
    left: 15px;
}

.wheel-right {
    right: 15px;
}

.shine {
    position: absolute;
    left: 60px;
    top: 10px;
    width: 30px;
    height: 8px;
    background: linear-gradient(90deg, #fff 0%, #b2fefa 100%);
    border-radius: 8px;
    opacity: 0.7;
    transform: rotate(-15deg);
}

.contact {
    margin-top: 24px;
    font-size: 1.1rem;
    color: #fff;
}

.contact a {
    color: #00C9A7;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s, box-shadow 0.2s, background 0.2s;
    padding: 8px 20px;
    border-radius: 20px;
    background: rgba(0,201,167,0.08);
    box-shadow: 0 2px 8px rgba(0,201,167,0.10);
    cursor: pointer;
    display: inline-block;
}

.contact a:hover {
    color: #232526;
    background: #b2fefa;
    box-shadow: 0 4px 16px rgba(178,254,250,0.18);
    text-decoration: none;
}
