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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0d4240;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    position: relative;
    width: 100%;
    max-width: 600px;
    padding: 40px;
}

.loading-section {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.loading-section.active {
    display: flex;
    opacity: 1;
    transform: scale(1);
    animation: fadeInScale 0.6s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Loading Text */
.loading-text {
    color: #c9b288;
    font-size: 32px;
    font-weight: 600;
    margin-top: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Orbit Loader */
.orbit-loader {
    position: relative;
    width: 100px;
    height: 100px;
}

.orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: #c9b288;
    border-radius: 50%;
    animation: orbit 1.5s linear infinite;
}

.orbit:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-top-color: rgba(201, 178, 136, 0.7);
    animation-duration: 1.2s;
    animation-direction: reverse;
}

.orbit:nth-child(3) {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    border-top-color: rgba(201, 178, 136, 0.5);
    animation-duration: 0.9s;
}

@keyframes orbit {
    to {
        transform: rotate(360deg);
    }
}

/* Slide In Animation */
.slide-in {
    animation: slideIn 1.5s ease-in-out infinite;
}

@keyframes slideIn {
    0%, 100% {
        transform: translateY(-10px);
        opacity: 0.5;
    }
    50% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .loading-text {
        font-size: 24px;
    }

    .orbit-loader {
        width: 80px;
        height: 80px;
    }
}

/* Background Animation */
body::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 178, 136, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: backgroundMove 20s linear infinite;
    pointer-events: none;
}

@keyframes backgroundMove {
    to {
        transform: translate(25px, 25px);
    }
}

