* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url('photo_2025-08-19_21-23-15.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    position: relative;
    font-family: 'Dancing Script', cursive;
}

/* X Logo */
.x-logo {
    position: fixed;
    top: 50px;
    right: 50px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    z-index: 1000;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.x-logo:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.x-logo svg {
    color: #FFD700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

/* Responsive */
@media (max-width: 768px) {
    .enter-button {
        font-size: 1.5rem;
        padding: 18px 40px;
        bottom: 8.5%;
        left: 51%;
        border-radius: 63px;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .x-logo {
        width: 60px;
        height: 60px;
        top: 25px;
        right: 25px;
        min-height: 44px;
        min-width: 44px;
    }
}

/* Enter Button */
.enter-button {
    position: fixed;
    bottom: 8.5%;
    left: 51%;
    transform: translateX(-50%);
    display: inline-block;
    padding: 19px 38px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    text-decoration: none;
    font-family: 'Dancing Script', cursive;
    font-size: 1.875rem;
    font-weight: 700;
    border-radius: 63px;
    border: 2px solid #FFD700;
    box-shadow: 
        0 0 25px rgba(255, 215, 0, 0.5),
        0 0 50px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    text-align: center;
    letter-spacing: 1px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.enter-button:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700);
    transform: translateX(-50%) scale(1.05);
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.8),
        0 0 60px rgba(255, 215, 0, 0.5);
    color: #000;
    text-decoration: none;
}

@media (max-width: 480px) {
    .enter-button {
        font-size: 1.25rem;
        padding: 16px 35px;
        bottom: 5.5%;
        left: 51%;
        border-radius: 50px;
        min-height: 56px;
        width: 90%;
        max-width: 300px;
    }
    
    .x-logo {
        width: 50px;
        height: 50px;
        top: 15px;
        right: 15px;
        min-height: 44px;
        min-width: 44px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .enter-button {
        font-size: 1.125rem;
        padding: 14px 30px;
        bottom: 3.5%;
        left: 51%;
        border-radius: 44px;
        min-height: 52px;
        width: 95%;
        max-width: 280px;
    }
    
    .x-logo {
        width: 45px;
        height: 45px;
        top: 10px;
        right: 10px;
        min-height: 44px;
        min-width: 44px;
    }
}
