.main-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.input-group input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--accent-dark);
    border-radius: 0.5rem;
    background-color: var(--secondary-dark);
    color: var(--text-light);
}

.cf-turnstile {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.error-message {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.loader,
.loader:before,
.loader:after {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    animation-fill-mode: both;
    animation: bblFadInOut 1.8s infinite ease-in-out;
}

.loader {
    color: #FFF;
    font-size: 7px;
    position: relative;
    text-indent: -9999em;
    transform: translateZ(0);
    animation-delay: -0.16s;
    margin-left: 15px;
}

.loader:before,
.loader:after {
    content: '';
    position: absolute;
    top: 0;
}

.loader:before {
    left: -3.5em;
    animation-delay: -0.32s;
}

.loader:after {
    left: 3.5em;
}

@keyframes bblFadInOut {

    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em
    }

    40% {
        box-shadow: 0 2.5em 0 0
    }
}

.content-card {
    background: #2d2d35;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.media-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
}

.media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.media-item img:hover {
    transform: scale(1.05);
}

.video-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 2rem;
    aspect-ratio: 9/16;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    border-radius: 8px;
}

.music-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 20px;
}

.music-container {
    width: 100%;
    max-width: 600px;
    margin-bottom: 10px;
}

audio {
    width: 100%;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.download-section {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 20px 0;
}

.download-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: #833ab4;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.download-button:hover {
    background-color: #9d4edd;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(131, 58, 180, 0.2);
}

.download-icon {
    margin-right: 8px;
    font-size: 16px;
}

.back-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #e1306c;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.back-button:hover {
    background-color: #f56991;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.2);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.overlay-content {
    max-width: 90%;
    max-height: 90vh;
}

.overlay-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

@media (max-width: 480px) {
    .captcha-container {
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        width: 100%;
    }

    .captcha-container img {
        width: 100%;
        max-width: 100%;
    }

    .captcha-container input {
        width: 100%;
        min-width: 0;
    }

    .captcha-container button {
        width: 100%;
        text-align: right;
        padding: 8px 0;
    }
}