
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background-color: #0d0d0d;
    color: #f0f0f0;
}
.background-overlay {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), 
                url('fshatibesi.jpg') no-repeat center center/cover;
    height: 100vh;
}
.hero {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-content {
    text-align: center;
    color: white;
}
.main-logo {
    max-width: 200px;
    margin-bottom: 20px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(255,255,255,0.3);
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}
.listen-button {
    padding: 15px 30px;
    background-color: #e50914;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    transition: 0.3s;
}
.listen-button:hover {
    background-color: #ff2c35;
}
section {
    padding: 60px 20px;
    text-align: center;
}
h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}
.tagline {
    color: #ccc;
    margin-bottom: 20px;
}
.player-container iframe {
    width: 100%;
    max-width: 600px;
    border: none;
    border-radius: 10px;
}
.about-section, .donate-section {
    background-color: #1a1a1a;
}
.logos-section {
    background-color: #0d0d0d;
}
.logo-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 20px;
}
.logo-grid img {
    width: 200px;
    max-width: 90%;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(255,255,255,0.2);
}
footer {
    background-color: #000;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}
a {
    color: #f04d4d;
}
a:hover {
    text-decoration: underline;
}


.about-box {
    background-color: #1c1c1c;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 30px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    color: #f0f0f0;
    line-height: 1.6;
}
.about-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.lang-toggle {
    margin-top: 10px;
    margin-bottom: 15px;
    background: #444;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}
.lang-toggle:hover {
    background: #666;
}
