body {
    background-color: #0a0a0a;
    color: #e0e0e0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(10, 10, 10, 1)), url('hero.jpg');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 3px solid #ff5722;
    padding: 20px;
}

.logo-main {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid #ff5722;
    box-shadow: 0 0 30px rgba(255, 87, 34, 0.4);
    margin-bottom: 20px;
    object-fit: cover;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #ff5722;
    text-shadow: 2px 4px 15px rgba(0,0,0,0.9);
}

.hero-sub {
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: #aaa;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 18px 35px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
}

.btn-connect {
    background: linear-gradient(45deg, #d32f2f, #ff5722);
    color: white;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}

.btn-discord {
    background: #5865F2;
    color: white;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

/* Content Layout */
.container {
    max-width: 1100px;
    margin: -60px auto 60px;
    padding: 0 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.card {
    background: #161616;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #222;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: 0.3s;
}

.card:hover {
    border-color: #ff5722;
}

h2 {
    color: #ff5722;
    margin-top: 0;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    font-size: 1.5rem;
}

.status-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #4caf50;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 12px #4caf50;
}

/* Lists */
ul, ol {
    padding-left: 20px;
    color: #bbb;
}

li {
    margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 60px 20px;
    color: #555;
    background: #050505;
}