body {
    background: #111;
    color: #F4F1DE;
    font-family: 'Press Start 2P', cursive;
    margin: 0;
    padding: 2rem;
    line-height: 1.4;
}

header,
section {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

header h1:hover {
    color: #C7181A;
}

.intro p {
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.language-switch {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end;
    gap: 0.5rem;
    width: auto;
}

.language-switch button {
    background: #C7181A;
    color: #F4F1DE;
    border: none;
    padding: 0.5rem 1rem;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s, transform 0.2s;
    margin: 0;
}

.language-switch button:hover {
    background: #A01518;
    transform: translateX(-8px) scale(1.05);
}

.language-switch button.active {
    background: #7A1012;
    color: #fff;
    cursor: default;
    pointer-events: none;
    transition: background 0.3s, color 0.3s;
}

.language-switch button.active:hover {
    background: #7A1012;
    color: #fff;
    transform: scale(1.08);
}

#badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
}

.badge {
    background: #444;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    min-width: 180px;
    max-width: 200px;
    box-sizing: border-box;
}

.badge img {
    max-width: 150px;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.badge:hover img,
.badge a:hover img {
    transform: scale(1.05);
}

.badge-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #C7181A;
}

.badge-desc {
    font-size: 0.8rem;
    color: #F4F1DE;
    text-align: center;
}

section ul {
    list-style: none;
    padding: 0;
}

section li {
    margin: 0.5rem 0;
}

a {
    color: #C7181A;
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
}

a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #C7181A;
    transform: scaleX(0);
    transition: transform 0.2s ease;
    transform-origin: left;
}

a:hover {
    color: #fff;
}

a:hover::after {
    transform: scaleX(1);
}

#events {
    text-align: left;
}
#future-projects {
    text-align: left;
}

#events h2 {
    text-align: center;
}

.section-separator {
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C7181A, transparent);
    margin: 3rem auto;
    border: none;
}

.section-separator::before {
    content: '◊';
    display: block;
    text-align: center;
    color: #C7181A;
    font-size: 1.2rem;
    background: #111;
    width: 30px;
    margin: -10px auto 0;
    padding: 0 5px;
}

/* Footer Styles */
footer {
    max-width: 800px;
    margin: 4rem auto 2rem;
    padding: 2rem 0;
    border-top: 2px solid #C7181A;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-links a {
    color: #F4F1DE;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(199, 24, 26, 0.1);
}

.social-links a::after {
    display: none;
}

.social-links a:hover {
    color: #C7181A;
    transform: translateY(-2px);
    background: rgba(199, 24, 26, 0.2);
}

.social-links svg {
    width: 24px;
    height: 24px;
}

.footer-info p {
    font-size: 0.7rem;
    margin: 0.5rem 0;
    color: #F4F1DE;
    opacity: 0.8;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-info {
        text-align: right;
    }
}
