* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(180deg, #0f0f0f, #151515);
    color: white;
}

header {
    position: fixed;
    width: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    z-index: 1000;
}

header h1 {
    color: #00ff99;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    transition: 0.3s;
}

nav a:hover {
    color: #00ff99;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)),
    url('https://images.alphacoders.com/661/661688.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
}

.btn {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    margin: 10px;
    display: inline-block;
    transition: 0.3s;
}

.discord { background: #5865F2; }
.discord:hover { background: #4752C4; }

.copy { background: #00ff99; color: black; }
.copy:hover { background: #00cc77; }

section {
    padding: 120px 20px;
    text-align: center;
}

.grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.card {
    background: #1c1c1c;
    padding: 30px;
    border-radius: 15px;
    width: 280px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px #00ff99;
}

.clickable {
    cursor: pointer;
}

.status-box {
    background: #1c1c1c;
    padding: 30px;
    border-radius: 15px;
    display: inline-block;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #1c1c1c;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: left;
}

.close {
    float: right;
    font-size: 28px;
    cursor: pointer;
}

.download {
    background: #00ff99;
    color: black;
}
.download:hover {
    background: #00cc77;
}

footer {
    background: black;
    padding: 30px;
    text-align: center;
}

.rules-content {
    max-height: 70vh;
    overflow-y: auto;
}

.rules-content h3 {
    margin-top: 20px;
    color: #00ff99;
}

.rules-content p {
    margin: 8px 0;
    line-height: 1.5;
}