@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cinzel', serif;
}

body {
    background: url('bg-pirate.jpg') center/cover fixed no-repeat;
    min-height: 100vh;
    color: #fff;
    position: relative;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 0;
}

/* HEADER */
.header {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 20px;
}

.logo {
    width: 260px;
    margin-bottom: 15px;
}

.header h1 {
    font-size: 3.5rem;
    color: #ffd700;
    text-shadow: 0 0 15px #ffb300;
}

.header p {
    font-size: 1.2rem;
    color: #ccc;
}

/* SERVERS */
.servers {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 20px;
}

.server-card {
    width: 340px;
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    background: linear-gradient(145deg, rgba(0,0,0,0.7), rgba(30,30,30,0.8));
    box-shadow: 0 0 25px rgba(255,215,0,0.2);
    text-align: center;
}

.server-card h2 {
    margin-bottom: 20px;
    color: #ffd700;
}

.server-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.server-card li {
    margin: 10px 0;
    font-size: 1.05rem;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    color: #000;
    transition: 0.3s;
}

.fast-btn {
    background: linear-gradient(90deg, #ff0000, #ff9900);
}

.slow-btn {
    background: linear-gradient(90deg, #00bfff, #00ffcc);
}

.btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 15px #fff;
}

/* FOOTER */
.footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 30px 10px;
}

.social {
    display: inline-block;
    margin: 0 12px;
    font-size: 22px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.facebook { background: #1877f2; }
.whatsapp { background: #25d366; }
.discord { background: #5865f2; }

.social:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px #fff;
}

.footer p {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #aaa;
}
