* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

body {
    background: radial-gradient(circle at top, #0f1c2d, #060b12);
    color: #e4ecf4;
    padding-top: 80px;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(145deg, #0b1624, #09101a);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    border-bottom: 1px solid rgba(100,150,255,0.15);
    z-index: 200;
}

.brand {
    font-size: 20px;
    font-weight: 600;
    color: #cfe3ff;
}

.nav-right a {
    margin-left: 25px;
    text-decoration: none;
    color: #9fb4c7;
    font-size: 14px;
    transition: color 0.2s ease;
}

.nav-right a:hover {
    color: #cfe3ff;
}

/* LOGO */
.top-logo {
    position: fixed;
    top: 85px;
    right: 25px;
    z-index: 150;
}

.top-logo img {
    height: 45px;
    opacity: 0.9;
}

/* CONTENIDO */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

section {
    margin-bottom: 80px;
}

h1 {
    font-size: 30px;
    margin-bottom: 10px;
}

.subtitle {
    color: #9fb4c7;
    margin-bottom: 40px;
}

/* CARDS */
.discord-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.discord-card {
    text-decoration: none;
    background: linear-gradient(145deg, #0b1624, #09101a);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(100,150,255,0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.discord-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(70,130,255,0.35);
}

.discord-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h2 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #cfe3ff;
}

.card-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #a9bfd6;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 25px 10px;
    font-size: 13px;
    color: #7f97ad;
    border-top: 1px solid rgba(100,150,255,0.15);
}
