:root {
    --bg-color: #0b0d12;
    --card-bg: rgba(22, 27, 38, 0.7);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(99, 102, 241, 0.4);
    --primary-color: #5865F2;
    --primary-hover: #4752C4;
    --text-main: #f0f3f8;
    --text-muted: #94a3b8;
    --accent-glow: #6366f1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

.bg-glow {
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(0, 0, 0, 0) 65%);
    z-index: -1;
    pointer-events: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 6%;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

.logo span {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 1.5px;
    color: var(--text-main);
}

.logo strong {
    color: var(--accent-glow);
    font-weight: 800;
}

.status {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #10b981;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
}

.main-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem 6% 6rem 6%;
    flex: 1;
    width: 100%;
}

.banner {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 5rem auto;
}

.title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #8c9bbd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.section-heading {
    font-size: 0.95rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-discord {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 25px rgba(88, 101, 242, 0.35);
}

.btn-discord:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(88, 101, 242, 0.5);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2.2rem;
    border-radius: 20px;
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.card-featured {
    border-color: rgba(99, 102, 241, 0.25);
    background: linear-gradient(135deg, rgba(22, 27, 38, 0.85) 0%, rgba(30, 36, 54, 0.55) 100%);
}

.card-header {
    margin-bottom: 1.2rem;
}

.card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.card-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 600;
}

.tag-purple {
    color: var(--accent-glow);
}

.tags-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tags-list span {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 8px;
    color: var(--text-muted);
    font-weight: 500;
}

.footer {
    text-align: center;
    padding: 2.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--border-color);
}