* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #ffffff; 
    font-family: 'Montserrat', sans-serif;
    color: #fff; 
    display: block; 
    overflow-x: hidden;  
}
 
.container {
    width: 100%;
    max-width: 1200px;  
    margin: 0 auto;  
    padding: 0 20px;  
}
 
header {
    background-color: #000;
    padding: 20px 0;
    width: 100%;
}

.header-pill {
    background: #fff;
    border-radius: 50px;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;  
    margin: 0 auto;  
}

.logo-area { display: flex; align-items: center; gap: 15px; }
.logo { height: 50px; }  
.brand-name {
    font-family: 'Great Vibes', cursive;
    font-size: 36px;
    color: #000;
}

.lang-switcher {
    background: #000;
    border-radius: 20px;
    padding: 5px 15px;
}
.lang-btn {
    background: none;
    border: none;
    color: #FFC107;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    opacity: 0.5;
    padding: 0 5px;
}
.lang-btn.active { opacity: 1; color: #fff; }


.sponsors-bar {
    background: #FFC107;
    width: 100%;
    padding: 10px 0;
    border-bottom: 2px solid #000;  
}

.sponsors-list {
    display: flex;  
    justify-content: space-between;  
    align-items: center;  
    flex-wrap: wrap;  
    gap: 5px;  
}

.sponsor-item {
    display: block;
    transition: transform 0.2s;  
}

.sponsor-item:hover {
    transform: scale(1.1); 
}

.sponsor-item img {
    max-height: 40px;  
    width: auto;  
    display: block;
}
 
@media (max-width: 768px) {
    .sponsors-list {
        justify-content: center;
    }
    .sponsor-item img {
        max-height: 30px;  
    }
}
 
.hero {
    background: #000;
    position: relative;
    width: 100%;
    height: auto;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    padding-bottom: 40px;
}

.hero-bg {
    width: 100%;
    max-height: 500px;  
    overflow: hidden;
    position: relative;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9; 
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.hashtag {
    position: absolute;
    bottom: 20px;
    left: 10%;  
    color: #FFC107;
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
}

.since-block {
    position: absolute;
    bottom: 20px;
    right: 10%;  
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.vertical-text {
    writing-mode: vertical-rl;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}
.year {
    color: #FFC107;
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    line-height: 1;
}

.hero-decorations .yellow-star {
    position: absolute;
    color: #FFC107;
}
.s1 { top: 40px; left: 5%; font-size: 30px; }
.s2 { top: 100px; left: 8%; font-size: 20px; }
 
.team-section {
    width: 100%; 
    background: radial-gradient(circle at center, #b0b0b0 0%, #888888 100%);
    position: relative;
     
    margin-top: 30px; 
    
    padding-top: 100px; 
    padding-bottom: 150px; 
    text-align: center;
    overflow: hidden; 
}
 
.team-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;  
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #ffffff 100%);
    z-index: 3;  
    pointer-events: none;  
}
.team-section::before {
    content: "";
    position: absolute;
    top: 0;           
    left: 0;
    width: 100%;
    height: 200px;    
    background: linear-gradient(to bottom, #ffffff 0%, rgba(255,255,255,0) 100%);
    
    z-index: 2;       
    pointer-events: none;
}

.team-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; 
    height: 800px;
    background: radial-gradient(circle, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: 1; 
    pointer-events: none;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 50px;
    position: relative;
    z-index: 5;
}

.white-shadow {
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.white { color: #fff; }

.highlight-text {
    background: #FFC107;
    color: #000;
    padding: 0 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.team-grid {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    align-items: center; 
    gap: 30px;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.member-card {
    position: relative;
    width: 180px; 
    transition: transform 0.3s ease;
}

.member-card:hover {
    transform: scale(1.05) translateY(-10px);
    z-index: 10;
}

.blob-shape {
    width: 220px; 
    height: 220px;
    background: none;     
    border: none;         
    border-radius: 0;     
    box-shadow: none;     
    overflow: visible;    
    display: flex;
    align-items: flex-end; 
    justify-content: center;
}

.member-card:hover img {
    transform: scale(1.1);
}

/*.shape1 { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
.shape2 { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
.shape3 { border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%; }*/

.blob-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name-tag {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg); 
    background: #FFC107;
    width: 160px;
    padding: 6px 10px;
    text-align: center;
    border-radius: 5px; 
    box-shadow: 3px 3px 5px rgba(0,0,0,0.5);
    clip-path: none; 
}

.name-tag .name {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #000;
    line-height: 1.1;
    text-transform: uppercase;
}
.name-tag .role {
    font-family: 'Great Vibes', cursive;
    font-size: 18px;
    color: #000;
    display: block;
    margin-top: 2px;
}

.about-section, .awards-section, .resources-section {
    background: #fff;
    color: #000;
    width: 100%;
    padding: 60px 0;
}
.about-section { border-bottom: 1px solid #ddd; }

.bubble-title {
    background: #FFC107;
    display: inline-block;
    padding: 10px 40px;
    border-radius: 40px;
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.text-content {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
    max-width: 900px;
}

.gallery-section {
    background: #fff;
    padding-bottom: 60px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.gallery-grid img {
    width: 100%;
    object-fit: cover;
}

.awards-section {
    border-top: 4px solid #000;
}
.awards-header { text-align: center; margin-bottom: 40px; }
.long-pill-title {
    background: #FFC107;
    padding: 15px 50px;
    border-radius: 30px;
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    display: inline-block;
}

.awards-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.award-card {
    background: #000;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 550px;
}
.award-thumb {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border: 2px solid #fff;
    border-radius: 8px;
}
.award-info .gold-text { color: #FFC107; font-family: 'Oswald', sans-serif; font-size: 22px; margin-bottom: 5px; }
.award-info .white-text { color: #fff; font-size: 14px; font-weight: 700; text-transform: uppercase; }

.resources-section { border-top: 4px solid #000; }
.resources-grid {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}
.res-card {
    flex: 1;
    border: 3px solid #000;
    background: #000;
    max-width: 500px;
}
.res-card img { width: 100%; display: block; border-bottom: 3px solid #000; }
.res-card a { text-decoration: none; color: inherit; }
.res-footer {
    background: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: #000;
}
.arrow-btn { color: #FFC107; background: #000; border-radius: 50%; padding: 5px; font-size: 20px; }

footer {
    background: #000;
    width: 100%;
    padding: 50px 0;
    color: #fff;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}
.footer-brand { display: flex; align-items: center; gap: 15px; }
.footer-brand img { height: 60px; }
.footer-name { font-family: 'Great Vibes', cursive; font-size: 32px; color: #FFC107; }
.footer-hash { font-family: 'Oswald', sans-serif; font-size: 28px; }

.footer-contacts {
    display: flex;
    gap: 60px;
    margin-bottom: 30px;
}
.contact-item .label { color: #888; margin-bottom: 5px; font-size: 14px; }
.contact-item .value { font-size: 18px; font-weight: 700; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    font-size: 14px;
}
.social-icons a { color: #fff; font-size: 24px; margin-left: 20px; transition: 0.3s; }
.social-icons a:hover { color: #FFC107; }

@media (max-width: 768px) {
    .header-pill { padding: 10px 15px; }
    .brand-name { font-size: 24px; }
    .logo { height: 35px; }
    
    .section-title { font-size: 32px; }
    .hero-bg { height: 300px; }
    
    .gallery-grid { grid-template-columns: 1fr; }
    
    .footer-top { flex-direction: column; gap: 20px; text-align: center; }
    .footer-contacts { flex-direction: column; gap: 20px; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 15px; }
}