body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    position: relative;
    background: black;
}

.container {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.coming-soon {
    width: 100%;
    height: auto;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.socials {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.icon {
    font-size: 36px;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.icon:hover {
    color: #f5f5f5;
}

/* Overlay to disable background clicks */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 10;
}

/* Popup styles */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 20;
    max-width: 320px;
}

.popup a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popup-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
}

.close:hover {
    color: #d32f2f;
}

.members {
    color: white;
}
