/* Global Styles */
body {
    background-color: black;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

/* Placeholder Colors */
::-moz-placeholder {
    color: #dcdcdc;
}

:-ms-input-placeholder {
    color: #dcdcdc;
}

::-webkit-input-placeholder {
    color: #dcdcdc;
}

/* Text Highlight Color */
.highlight {
    color: #ff303c;
}

/* Loader Styles */
.preloader.fade {
    opacity: 0; 
    transition: opacity 0.5s ease-in-out;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #312a2b;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loader {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #ff3f22;
    animation: spin 2s linear infinite;
    position: relative;
}

#loader:before, #loader:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
}

#loader:before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-top-color: #ff3b00;
    animation: spin 3s linear infinite;
}

#loader:after {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-top-color: #FF00FF;
    animation: spin 1.5s linear infinite;
}

/* Keyframes for Spinner Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Content Wrapper */
.content-wrap {
    margin: 20px auto 40px auto;
    max-width: 700px;
    padding: 0 15px;
    text-align: center;
}

/* CTA Box */
.cta-box h1 {
    color: rgb(140, 12, 41);
    font-size: 58px;
    text-transform: uppercase;
    font-weight: 800;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.7);
}

.cta-box p {
    color: #fff;
    font-size: 20px;
    margin-top: 20px;
}

/* Large Screen */
@media screen and (min-width:1200px) {
    .content-wrap {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 700px;
    }
}

/* Small Screens */
@media screen and (max-width:767px) {
    .content-wrap {
        margin-top: 100px;
    }

    .cta-box h1 {
        font-size: 40px;
    }

    .logo-box img {
        width: 85%;
    }
}

/* Very Small Screens */
@media screen and (max-width:480px) {
    .cta-box h1 {
        font-size: 32px;
    }

    .cta-box p {
        font-size: 18px;
    }

    .logo-box img {
        width: 70%;
    }
}
