/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Arial', sans-serif;
}

/* Dark, Glossy Background with Metallic Effect */
.dark-blue-screen {
    position: relative;
    height: 100%;
    background: linear-gradient(135deg, #003366, #011a2c);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Spinning Metallic Dot */
.dot {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #1a3c5d, #293d63);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    position: absolute;
    animation: spin 4s infinite linear;
    z-index: 2;
}

/* Spinning Dot Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Brand Names (Models) - Fired from the Dot */
.brand {
    font-size: 36px;
    color: white;
    position: absolute;
    opacity: 0;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transition: transform 2s ease-out, opacity 1s ease-out;
}

/* Bottom Text - "We work with the Best" */
.bottom-text {
    position: absolute;
    bottom: 50px;
    font-size: 30px;
    color: white;
    text-align: center;
    font-weight: bold;
    opacity: 0;
    animation: fadeIn 4s 6s forwards;
}

/* Fade-In Animation for Bottom Text */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
