/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    color: white;
}

/* HEADER */
header {
    background: #ff7b00;
    padding: 15px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

header .container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 26px;
    font-weight: bold;
}

nav a {
    background: white;
    color: #ff7b00;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: .3s ease;
}

nav a:hover {
    transform: scale(1.05);
    background: #ffe7d1;
}

/* CONTENT */
.content {
    width: 90%;
    margin: 40px auto;
}

h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ff9b35;
}

.section {
    margin-bottom: 40px;
}

.section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffb05f;
}

/* ITEMS */
.item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: #1f1f1f;
    padding: 15px;
    border-radius: 12px;
    transition: 0.3s;
    border-left: 4px solid #ff7b00;
}

.item:hover {
    transform: translateX(6px);
    background: #262626;
}

.icon {
    font-size: 28px;
    margin-right: 15px;
}

/* FOOTER */
footer {
    background: #111;
    padding: 25px 0;
    margin-top: 40px;
    text-align: center;
}

.footer-links p {
    margin-top: 10px;
    opacity: .7;
}

/* DISCORD BUTTON */
.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #5865F2;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 17px;
    text-decoration: none;
    font-weight: bold;
    transition: .3s;
}

.discord-btn:hover {
    background: #4854d1;
    transform: scale(1.08);
}

.discord-icon {
    width: 22px;
    height: 22px;
}
