body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background: #0A090D;
    color: #f3f5ff;
}

/* Splash Screen */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0A090D;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#splash-video {
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
}

.wrapper {
    min-height: 100vh;
    width: 100vw;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    background: linear-gradient(180deg, #0A090D 0%, #141217 50%, #1B181F 100%);
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px 40px;
    box-sizing: border-box;
}

#name {
    font-size: 5em;
    text-align: center;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #f3f5ff;
    letter-spacing: -0.02em;
}

#subtitle {
    font-size: 1.2em;
    text-align: center;
    color: #9aa3b2;
    font-style: italic;
    margin-bottom: 30px;
}

#desc {
    font-size: 1.4em;
    font-weight: 400;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    max-width: 1200px;
    line-height: 1.6;
    color: #f3f5ff;
    white-space: nowrap;
}

#tagline {
    font-size: 1.1em;
    text-align: center;
    color: #9aa3b2;
    max-width: 600px;
    padding-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
}

.contact-section {
    margin-top: 40px;
    padding: 50px 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#quote {
    font-size: 1.1em;
    padding-bottom: 20px;
    text-align: center;
    font-weight: 400;
    color: #f3f5ff;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: center;
}

.contact-link {
    font-size: 1.3em;
    color: #6154f3;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 6px;
}

.contact-link:hover {
    color: #f3f5ff;
    background: rgba(97, 84, 243, 0.2);
}

/* Footer Styles */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 20px 20px;
    margin-top: auto;
    backdrop-filter: blur(10px);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #f3f5ff;
}

.footer-section p {
    margin: 5px 0;
    color: #9aa3b2;
    font-size: 0.95em;
}

.footer-section a {
    color: #9aa3b2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #6154f3;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: #9aa3b2;
    font-size: 0.9em;
}

/* Responsive design */
@media (max-width: 768px) {
    #name {
        font-size: 3em;
    }

    #subtitle {
        font-size: 1em;
    }

    #desc {
        font-size: 1.1em;
        white-space: normal;
        max-width: 90%;
        padding: 10px 15px;
    }

    #tagline {
        font-size: 0.9em;
        max-width: 90%;
    }

    .contact-section {
        padding: 40px 30px;
        max-width: 90%;
    }

    #splash-video {
        max-width: 90%;
        max-height: 60%;
    }

    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-section {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 40px 15px 30px;
    }

    #name {
        font-size: 2em;
        margin-bottom: 15px;
    }

    #subtitle {
        font-size: 0.95em;
    }

    #desc {
        font-size: 0.95em;
        white-space: normal;
        max-width: 95%;
    }

    #tagline {
        font-size: 0.8em;
        max-width: 95%;
        line-height: 1.5;
    }

    .contact-section {
        padding: 30px 20px;
        max-width: 95%;
    }

    #quote {
        font-size: 1em;
        padding-bottom: 15px;
    }

    .contact-link {
        font-size: 1em;
        padding: 6px 12px;
    }

    #splash-video {
        max-width: 95%;
        max-height: 50%;
    }
}
