:root {
    --main-color: #8b5300;
    --secondary-color: #DAA520;
}
body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: white;
    background-image: url('img/Background_2.png');
    background-attachment: fixed;
    background-size: cover;
}
.main-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('img/Background_2.png');
    background-size: cover;
    min-height: 80vh;
    background-position: center 30%;
}
.ability-card {
    background: rgba(20, 20, 20, 0.8);
    border-left: 5px solid var(--main-color);
    transition: transform 0.3s;
}
.ability-card:hover {
    transform: scale(1.03);
}
.platform-icon {
    font-size: 2rem;
    margin: 0 10px;
    color: var(--secondary-color);
}
footer {
    background: rgba(0, 0, 0, 0.9);
}
.nav-link {
    color: white !important;
}
.nav-link:hover {
    color: var(--secondary-color) !important;
}
.about-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}
.about-image {
    width: 100%;
    display: block;
}
.about-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    padding: 1rem;
}
.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.about-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
}
.sponsors-section {
    background: rgba(0,0,0,0.7);
    padding: 2rem 0;
    border-top: 1px solid var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
}
.sponsor-logo {
    max-height: 80px;
    margin: 1rem;
    filter: grayscale(100%) brightness(1.5);
    transition: filter 0.3s;
}
.sponsor-logo:hover {
    filter: grayscale(0%) brightness(1);
}
@media (max-width: 768px) {
    .about-text {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        margin-top: 1rem;
        text-shadow: none;
        color: var(--secondary-color);
    }
}