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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
}

.container {
    min-height: 100vh;
    background: linear-gradient(180deg, #0a1628 0%, #1a2740 50%, #0a1628 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow-y: auto;
}

.container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('temp/openart-image_YfxirO_z_1761924705486_raw.jpg') center center/cover no-repeat;
    opacity: 0.2;
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    width: 100%;
    padding-top: 20px;
}

.logo-section {
    margin-bottom: 20px;
}

.logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.logo svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.brand-name {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #D4AF37;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    letter-spacing: 0.4em;
    color: #D4AF37;
    font-weight: 300;
}

.car-section {
    margin: 20px 0;
    position: relative;
}

.car-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.8));
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.car-image:hover {
    transform: scale(1.02);
}

.button-section {
    margin: 25px 0 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.whatsapp-btn {
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn i {
    font-size: 1.3rem;
}

.contact-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #D4AF37;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.email:hover {
    color: #f0d167;
    transform: translateY(-2px);
}

.email i {
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .brand-name {
        font-size: 3rem;
        letter-spacing: 0.25em;
    }

    .tagline {
        font-size: 1rem;
        letter-spacing: 0.35em;
    }

    .car-section {
        margin: 20px 0;
    }

    .logo {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
        padding-bottom: 40px;
    }

    .brand-name {
        font-size: 2.2rem;
        letter-spacing: 0.2em;
    }

    .tagline {
        font-size: 0.85rem;
        letter-spacing: 0.3em;
    }

    .logo {
        width: 60px;
        height: 60px;
    }

    .logo-section {
        margin-bottom: 20px;
    }

    .car-section {
        margin: 20px 0;
    }

    .button-section {
        margin: 25px 0 15px;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .whatsapp-btn {
        padding: 14px 35px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }

    .contact-info {
        margin-top: 20px;
        padding-top: 20px;
    }

    .email {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
        padding-bottom: 30px;
    }

    .content {
        padding-top: 10px;
    }

    .brand-name {
        font-size: 1.6rem;
        letter-spacing: 0.15em;
    }

    .tagline {
        font-size: 0.65rem;
        letter-spacing: 0.25em;
    }

    .logo {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .logo-section {
        margin-bottom: 15px;
    }

    .car-section {
        margin: 15px 0;
    }

    .button-section {
        margin: 20px 0 10px;
    }

    .whatsapp-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }

    .contact-info {
        margin-top: 15px;
        padding-top: 15px;
    }

    .email {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .brand-name {
        font-size: 1.4rem;
        letter-spacing: 0.1em;
    }

    .tagline {
        font-size: 0.6rem;
        letter-spacing: 0.2em;
    }

    .whatsapp-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .email {
        font-size: 0.8rem;
    }
}
