:root {
    --bg: #0f0f14;
    --bg-light: #181822;
    --primary: #7c5cff;
    --text: #ffffff;
    --text-muted: #b5b5c5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #7c5cff, #5a3dff);
    padding: 90px 20px;
    text-align: center;
}

header h1 {
    font-size: 3rem;
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    background: var(--bg);
    color: var(--text);
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #000;
}

section {
    padding: 70px 20px;
    max-width: 1100px;
    margin: auto;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
}

.card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.rank .price {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 10px 0;
    color: var(--primary);
}

.highlight {
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(124, 92, 255, 0.3);
}

.team p {
    font-size: 1.1rem;
}

.rules p {
    margin-bottom: 8px;
}

.ip-box {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
}

.ip {
    font-size: 1.4rem;
    margin: 15px 0;
    font-weight: bold;
}

.hint {
    margin-top: 10px;
    color: var(--text-muted);
}

button {
    padding: 12px 26px;
    border: none;
    background: var(--primary);
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

footer {
    background: #0b0b10;
    text-align: center;
    padding: 20px;
    color: var(--text-muted);
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: var(--bg-light);
    margin: 8% auto;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: fadeIn 0.3s ease;
}

.modal-content h2 {
    color: var(--primary);
    margin-bottom: 10px;
}

.modal-content .price {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.modal-content p {
    margin: 8px 0;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-muted);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.buy-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 32px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.25s;
}

.buy-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.modal {
    cursor: pointer;
}

.modal-content {
    cursor: default;
}

#socials {
    padding: 70px 20px;
    max-width: 1100px;
    margin: auto;
}

.social-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 10px 20px;
    background: var(--bg-light);
    color: var(--text);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.tab-btn:hover {
    background: var(--primary);
    color: var(--bg);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--bg);
}

.social-slider {
    position: relative;
    overflow: hidden;
    height: auto;
}

.social-card {
    display: none;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: 0.5s;
}

.social-card a {
    color: var(--primary);
    text-decoration: none;
}

.social-card a:hover {
    text-decoration: underline;
}

/* Standardmäßig Server Socials anzeigen */
#server-socials {
    display: block;
}