/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 22px 29px;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
}

.logo-icon {
    width: 24px;
    height: 24px;
}

.logo-text {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.02em;
}

/* Main Content */
.main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 120px;
}

.lottie-container {
    width: 100%;
    max-width: 660px;
    height: auto;
    aspect-ratio: 510 / 372;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer Styles */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 60px 20px;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.button {
    width: 85px;
    height: 42px;
    border-radius: 10px;
    background-color: #1d1d1d;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.button:hover {
    background-color: #2d2d2d;
    transform: translateY(-2px);
}

.button:active {
    transform: translateY(0);
}

.button img {
    width: 18px;
    height: 18px;
}

/* Responsive Styles */

/* Tablet */
@media screen and (max-width: 1024px) {
    .lottie-container {
        max-width: 400px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .header {
        padding: 16px 20px;
    }

    .main {
        padding: 60px 16px 100px;
    }

    .lottie-container {
        max-width: 320px;
    }

    .footer {
        padding: 24px 16px;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .lottie-container {
        max-width: 280px;
    }
}
