.main-splash-page {
    position: relative;
    max-width: 1200px;
    width: 100%;
}

.main-splash-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

.main-splash-background {
    width: 100%;
    height: 553px;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.main-splash-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: main-fadeIn 1s ease-in-out forwards;
    opacity: 0;
}

.main-splash-objects {
    position: absolute;
    z-index: 10;
    height: 733px;
    max-width: 100%;
    animation: main-objectsEntry 1s ease-in-out forwards;
    opacity: 0;
}

.main-splash-content {
    position: absolute;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    text-align: center;
    color: white;
}

.main-splash-content img {
    max-height: 80px;
    object-fit: contain;
}

.main-splash-content h1 {
    font-size: 48px;
    font-weight: 900;
    margin-top: 24px;
    margin-bottom: 16px;
    text-align: center;
}

.main-splash-content p {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 40px;
    max-width: 40ch;
    text-align: center;
}

.main-splash-buttons {
    display: flex;
    gap: 16px;
}

.main-splash-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s;
    cursor: pointer;
}

.main-splash-btn-primary {
    background-color: white;
    color: black;
    border: 1px solid white;
}

.main-splash-btn-primary:hover {
    opacity: 0.8;
}

.main-splash-btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.main-splash-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@keyframes main-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes main-objectsEntry {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    .main-splash-objects {
        height: 587px;
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .main-splash-objects {
        display: none;
    }
    
    .main-splash-background {
        border-radius: 0;
    }
    
    .main-splash-content h1 {
        font-size: 31px;
        line-height: 1.2;
    }
    
    .main-splash-content img {
        max-height: 64px;
    }
}