* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    background-color: #000000;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.container {
    position: relative;
    height: 100vh;
    width: 100vw;
}

.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-image {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: none;
}



.footer {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.x-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    pointer-events: auto;
}

.x-logo-link:hover {
    transform: scale(1.1);
}

.x-logo {
    width: 28px;
    height: 28px;
    fill: #ffffff;
    transition: fill 0.3s ease;
}

.x-logo-link:hover .x-logo {
    fill: #1da1f2;
}

/* Responsive design */
@media (max-width: 768px) {
    .footer {
        bottom: 20px;
    }
    
    .x-logo {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .x-logo {
        width: 20px;
        height: 20px;
    }
}
