/* 🔥 Background */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-image: url("Condom/retrunsh.gif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Purple glowing text */
h1, h2, h3, p {
    color: #c084fc;
    text-shadow:
        0 0 5px #c084fc,
        0 0 10px #a855f7,
        0 0 20px #9333ea,
        0 0 40px #7e22ce;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        text-shadow:
            0 0 5px #c084fc,
            0 0 10px #a855f7;
    }
    to {
        text-shadow:
            0 0 20px #e9d5ff,
            0 0 40px #c084fc;
    }
}

/* Hero Section */
.hero {
    height: auto;
    padding-top: 60px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-description {
    font-size: 18px;
    max-width: 700px;
    line-height: 1.6;
    margin-top: 20px;
    text-align: center;
}

/* Hero buttons */
.hero-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.hero-buttons button {
    padding: 8px 18px;
    font-size: 14px;
    border-radius: 6px;
    border: none;
    background: #7e22ce;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hero-buttons button:hover {
    background: #a855f7;
}

/* Buttons inside cards */
button {
    margin-top: 20px;
    padding: 12px 25px;
    background: #7e22ce;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

button:hover {
    background: #a855f7;
}

/* Sections */
.section {
    padding: 60px 20px;
    text-align: center;
}

/* Download section spacing */
.download-section {
    margin-top: 10px;
}

/* Download window */
.download-window {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(0,0,0,0.85);
    border: 3px solid #c084fc;
    border-radius: 12px;
    box-shadow:
        0 0 15px #9333ea,
        0 0 25px #a855f7;
}

/* Game/Mod card */
.game-card {
    width: 220px;
    background: rgba(0,0,0,0.75);
    border: 2px solid #c084fc;
    border-radius: 10px;
    padding: 15px;
    color: #c084fc;
    text-align: center;
    box-shadow:
        0 0 10px #7e22ce,
        0 0 20px #a855f7;
}

.game-card img {
    max-width: 100%;
    border-radius: 6px;
    box-shadow: 0 0 12px #a855f7;
}

.game-card h3 {
    margin: 10px 0 8px 0;
    font-size: 18px;
}

.game-card p {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.game-card button {
    background: #7e22ce;
    border: none;
    color: white;
    padding: 8px 18px;
    font-size: 13px;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.game-card button:hover {
    background: #a855f7;
}

/* Splash Screen */
#splash-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;

    opacity: 1;
    transition: opacity 1s ease;
}

#splash-screen.fade-out {
    opacity: 0;
}

/* Hide main content initially */
.hidden {
    opacity: 0;
    pointer-events: none;
    user-select: none;
}

/* Show main content */
#main-content:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
    user-select: auto;
    transition: opacity 0.5s ease;
}

#splash-screen h1 {
    color: #c084fc;
    font-size: 40px;
    text-shadow:
        0 0 5px #c084fc,
        0 0 10px #a855f7,
        0 0 20px #9333ea,
        0 0 40px #7e22ce;
    animation: glow 2s infinite alternate;
}

/* 🔥 Top Right Floating Buttons */
.top-buttons {
    position: fixed;
    top: 15px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 9999;
}

.top-buttons button {
    padding: 6px 14px;
    font-size: 12px;
    background: rgba(0,0,0,0.7);
    border: 2px solid #c084fc;
    color: #c084fc;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 0 10px #9333ea;
    transition: 0.3s;
}

.top-buttons button:hover {
    background: #7e22ce;
    color: white;
    box-shadow: 0 0 20px #c084fc;
}

/* 🔥 Donate Popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.popup-box {
    background: black;
    border: 3px solid #c084fc;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow:
        0 0 15px #9333ea,
        0 0 30px #c084fc;
}

.popup-box h2 {
    margin-bottom: 15px;
}

.popup-box p {
    font-size: 14px;
    word-break: break-all;
}

.popup-box button {
    margin-top: 15px;
    padding: 8px 20px;
    background: #7e22ce;
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

.popup-box button:hover {
    background: #a855f7;
}