.content {
    position: relative;
    z-index: 1001;
    max-width: 1000px;
    margin: 100px auto;
    padding: 20px;
    color: white;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.social {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    transition: transform 0.2s, background-color 0.3s;
}

.social i {
    font-size: 20px;
}

/* Platform-specific colors */
.social.tiktok {
    background-color: #010101;
}

.social.instagram {
    background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5);
}

.social.patreon {
    background-color: #f96854;
}

.social.discord {
    background-color: #5865f2;
}

.social:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.media-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.media-gallery img {
    width: 280px;
    height: 180px; 
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid white;
    box-shadow: 0 0 8px rgba(0,0,0,0.4);
    transition: transform 0.3s;
}

.media-gallery img:hover {
    transform: scale(1.05);
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}


.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border: 2px solid white;
    border-radius: 10px;
}


.lightbox.active {
    display: flex;
}


.lightbox {
    cursor: zoom-out;
}

