:root {
    --primary: #ffeb3b;
    --primary-dark: #ffc107;
    --bg: #000;
    --card-bg: #1a1a1a;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--bg);
    color: var(--primary);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background-color: var(--primary);
    color: var(--bg);
    padding: 15px 0;
    box-shadow: 0 4px 8px rgba(255, 235, 59, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 2em;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--bg);
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    margin-left: 20px;
}

nav a {
    color: var(--bg);
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: var(--primary-dark);
}

.full-width-banner {
    width: 100%;
    background-color: rgba(26, 26, 26, 0.9);
    text-align: center;
    padding: 50px 0;
    border-top: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
    margin-bottom: 40px;
}

.clan-name {
    font-size: 4em;
    margin: 0;
    color: var(--primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.clan-tagline {
    font-size: 1.8em;
    margin-top: 15px;
    color: #fff;
    font-style: italic;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex: 1;
}

.section-title {
    font-size: 2.5em;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.news-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 900px) {
    .news-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .news-row {
        grid-template-columns: 1fr;
    }
}

.news-card {
    background-color: var(--card-bg);
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 235, 59, 0.2);
}

.news-date {
    color: #aaa;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.news-title {
    font-size: 1.5em;
    color: var(--primary);
    margin-bottom: 20px;
    min-height: 60px;
}

.news-content {
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--bg);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

footer {
    background-color: var(--card-bg);
    text-align: center;
    padding: 30px;
    border-top: 2px solid var(--primary);
    margin-top: 50px;
}

.discord-link {
    color: #7289da;
    text-decoration: none;
    font-weight: bold;
}

.discord-link:hover {
    text-decoration: underline;
}
