@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif !important;
}

body {
    background-color: #fff;
    overflow-x: hidden;
}

header {
    background-color: rgba(100, 100, 100, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease;
}

header:hover {
    background-color: rgba(130, 130, 130, 0.6);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    height: 80px;
    width: 200px;
}

.nav-center {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 50px;
    padding: 0;
    margin-right: 50px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 1.1rem; 
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #358856;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger .bar {
    width: 30px;
    height: 3px;
    background-color: #000;
    transition: 0.3s;
    border-radius: 5px;
}

.hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/herobg.png');
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
}

.hero h1 {
    font-size: 7rem;
    margin-top: 150px;
}

.hero h2 {
    font-size: 3rem;
    font-weight: 300;
}

.inline-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: auto;
    padding: 40px;
    width: 80%;
    border-radius: 20px;
    gap: 20px;
}

.inline-container {
    background: linear-gradient(185deg, #f0f4f8 0%, white 100%);
    margin-top: 0;
}

.middle-content {
    background: #ffffffee; 
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 70%;
    animation: fadeInUp 0.8s ease forwards;
}

.middle-content h2, .middle-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    border-left: 6px solid #3498db;
    padding-left: 15px;
    color: #2c3e50;
    margin-bottom: 25px; 
}

.middle-content p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.advertisement {
    text-align: center;
    padding: 20px 0;
}

.ad-container {
    position: relative;
    display: inline-block;
    width: 300px; 
    height: auto;
}

.ad-container img {
    width: 100%;
    border-radius: 10px; 
    display: block;
}

.ad-label {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: rgba(0, 0, 0, 0.7); 
    color: white;
    padding: 2px 6px;
    font-size: 12px;
    border-radius: 3px;
    font-weight: bold;
    text-transform: uppercase;
}

.event-container {
    background-color: white;
    padding: 40px 20px;
    text-align: center;
}

.event-container h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: black;
    position: relative;
    display: inline-block;
}

.event-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.event-filter select {
    padding: 12px 20px;
    font-size: 16px;
    border: 2px solid #25523B;
    border-radius: 20px;
}

#searchInput {
    padding: 12px 20px;
    font-size: 16px;
    border: 2px solid #25523B;
    border-radius: 20px;
    width: 250px;
    outline: none;
    transition: border-color 0.3s;
}

#searchInput:focus {
    border-color: #333;
}

.event-count {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: start;
    width: 80%;
    margin: 0 auto 20px auto;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    width: 80%;
    margin: 0 auto;
    padding: 20px 0;
    justify-items: center;
}

a {
    text-decoration: none;
    color: inherit;
}

.event-item {
    width: 250px;
    border-radius: 15px;
    position: relative;
    display: none; 
}

.event-item a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.flip-card {
    width: 250px;
    height: 350px;
    perspective: 1000px;
    margin: 0 auto;
    position: relative;
}

.flip-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    top: 0;
    left: 0;
    border-radius: 15px;
}

.flip-card-front {
    z-index: 2;
}

.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.trending-tag {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff5722;
    color: white;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 3px;
    z-index: 10;
    font-size: 14px;
    text-transform: uppercase;
}

.flip-card:hover .trending-tag {
    display: none;
}

.flip-card-back {
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotateY(180deg);
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.flip-card-back::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(10px) brightness(0.5);
    z-index: 1;
}

.flip-card:hover .flip-card-back {
    opacity: 1;
}

.flip-card-back .back-content {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.flip-card:hover .flip-card-back .back-content {
    opacity: 1;
}

.flip-card-back .back-content {
    z-index: 2;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.flip-card-back .back-content p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.flip-card-back .back-content p:first-child {
    font-size: 1.5rem;
    font-weight: bold;
    color: #358856;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 90%;
    margin: 0 auto;
    white-space: normal;
}

.flip-card-back .back-content p:nth-child(2),
.flip-card-back .back-content p:nth-child(3) {
    font-size: 1rem;
    color: #e0e0e0;
}

.pagination-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    width: 100%;
}

.pagination-container button {
    padding: 8px 16px;
    border: 1px solid #ccc;
    background-color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: bold;
}

.pagination-container button:hover {
    background-color: #f0f0f0;
}

.pagination-container button.active {
    background-color: #358856;
    color: white;
    border-color: #25523B;
    cursor: default;
}

.pagination-container button:disabled {
    background-color: #e0e0e0;
    cursor: not-allowed;
    color: #999;
}

.highlight-carousel-section {
    text-align: center;
    margin: 60px 0;
    padding: 40px 20px;
}

.carousel-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: black;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.grid-wrapper {
    width: 80%;
    margin: 0 auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    width: 100%; 
    margin: 0 auto;
    padding: 20px 0;
    justify-items: center;
}

.highlight-item {
    width: 100%;
    max-width: 270px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    background-color: #000;
    display: block; 
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; 
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-item:hover {
    transform: scale(1.05);
}

.highlight-item:hover .video-overlay {
    opacity: 1;
    transform: translateY(0);
}

.video-overlay {
    pointer-events: none;
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 100%;
    padding: 10px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease-in-out;
    font-size: 0.9rem;
    text-align: left;
}
  
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    z-index: 2000;
    transition: all 0.3s ease;
    padding: 20px;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    background: #1a1a1a;
    width: 100%;
    max-width: 1100px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
    from {
        transform: translateY(30px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
    line-height: 1;
    padding-bottom: 4px;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}

.video-container {
    width: 100%;
    background: black;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 16 / 9;
    max-height: 70vh;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.video-details {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    background: #1a1a1a;
    color: #fff;
}

.video-info-left {
    flex: 1;
    min-width: 0;
}

.video-info-left h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #ffffff;
}

.video-info-left p {
    margin: 0;
    font-size: 0.95rem;
    color: #a1a1a1;
    line-height: 1.6;
    font-weight: 400;
    max-height: 100px;
    overflow-y: auto;
}

.video-info-left p::-webkit-scrollbar {
    width: 4px;
}

.video-info-left p::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}

.video-views-right {
    flex-shrink: 0;
}

.view-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-views-right p {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 500;
    color: #e0e0e0;
    white-space: nowrap;
}
  
.players {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 5px;
}

#top-athletes h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: black;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.slider {
    position: absolute;
    inset: 80px 200px 80px 80px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    perspective: 1000px;
    overflow: hidden;
    margin-top: 20px;
    margin-left: 120px;
}

.slider .slides {
    position: absolute;
    top: 210px;
    transform: translateY(-50%);
    width: 180px;
    height: 260px;
    background-image: var(--img);
    background-size: cover;
    background-position: center;
    transition: 0.5s;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.slider .slides:nth-child(1),
.slider .slides:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(0);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0);
    background-size: cover;
}

.slider .slides:nth-child(3) {
    left: calc(50% + 240px);
    background-size: cover;
}
.slider .slides:nth-child(4) {
    left: calc(50% + 500px);
    background-size: cover;
}
.slider .slides:nth-child(5) {
    left: calc(50% + 760px);
    background-size: cover;
}
.slider .slides:nth-child(6) {
    left: calc(50% + 1020px);
    background-size: cover;
    opacity: 0;
}

.buttons {
    position: absolute;
    bottom: 15px;
    display: flex;
    gap: 20px;
    z-index: 10;
}

.buttons span {
    position: relative;
    width: 55px;
    height: 55px;
    background: linear-gradient(145deg, #000000, #1c1c1c);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.buttons span::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-top: 4px solid #fff;
    border-left: 4px solid #fff;
    transform: rotate(315deg) translate(2px, 2px);
    transition: transform 0.3s ease;
}

.buttons span:nth-child(2)::before {
    transform: rotate(135deg) translate(2px, 2px);
}

.buttons span:hover {
    background: linear-gradient(90deg, #25523B, #358856);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 255, 127, 0.4);
}

.buttons span:hover::before {
    transform: scale(1.2) rotate(315deg) translate(3px, 3px);
}

.buttons span:nth-child(2):hover::before {
    transform: scale(1.2) rotate(135deg) translate(3px, 3px);
}

.buttons span:active {
    transform: scale(0.95);
    opacity: 0.7;
}

.content {
    position: relative;
    padding: 40px;
    max-width: 600px;
    transition: 0.25s;
    transition-delay: 0s;
    transform: translateY(40px);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
}
.content h1 {
    font-size: 4em;
    color: white;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.8);
}

.content p {
    color: white;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.8);
}

.slider .slides:nth-child(1) .content,
.slider .slides:nth-child(2) .content {
    opacity: 1;
    transform: translateY(0px);
    transition-delay: 0.5s;
    pointer-events: auto;
}

.explore-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1em;
    cursor: pointer;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.explore-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.explore-btn:hover::before {
    left: 130%;
}

.explore-btn:hover {
    background: linear-gradient(90deg, #25523B, #358856);
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(0, 255, 127, 0.5);
}

.explore-btn:active {
    transform: scale(0.96);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.community-leaders-section {
  width: 100%;
  text-align: center;
  margin: 40px 0;
}
  
.section-heading {
  font-size: 2rem; 
  font-weight: bold;
  margin-bottom: 20px;
  color: black; 
}
  
.leaders-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; 
  flex-wrap: wrap; 
}
  
.leader {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px; 
}
  
.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%; 
  overflow: hidden; 
  border: 3px solid #333; 
  margin-bottom: 10px;
}
  
.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
  
.leader-info {
  text-align: center;
}
  
.leader-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}
  
.leader-role {
  font-size: 1rem;
  color: #777;
}

.partnership-section {
    text-align: center;
    padding: 40px 0;
    background-color: white; 
}

.partnership-section h2 {
    font-size: 24px; 
    font-weight: bold;
    margin-bottom: 20px;
    color: black; 
}

.partner-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
    gap: 20px; 
}

.partner-logo-container {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.1); 
}

.footer {
    display: flex;
    justify-content: space-around;
    padding: 40px 20px 20px;
    background-color: #333;
    color: #fff;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.footer-section {
    flex: 1;
    margin: 10px;
    text-align: center;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #f2f2f2;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin: 5px 0;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.footer-logo {
    width: 200px;
    margin-top: 40px;
}

.social-icons img {
    width: 40px;
    height: 40px;
    margin: 0 5px;
}

.sponsor-logo {
    width: 100px;
    margin-top: 10px;
}

.footer-ramp-icons {
    position: relative;
    height: 60px;
    width: 100%;
    background: transparent;
    z-index: 2;
}

.ramp-icon {
    position: absolute;
    bottom: 0;
    width: auto;
    height: 200px;
    z-index: 3;
}

.ramp-icon.left {
    left: 0;
}

.ramp-icon.right {
    right: 0;
}

.ramp-icon.center {
    left: 50%;
    transform: translateX(-50%);
    height: 50px;
    width: 200px;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    visibility: hidden;
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}


@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
        margin-right: 20px;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .hero h1 {
        font-size: 5rem;
    }

    .content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 900px) {
    .slider {
        position: absolute;
        inset: 40px 40px 200px 40px;
        margin-left: 0;
        margin-top: 50px;
    }
    
    .slider .slides {
        width: 100px;
        height: 100px;
        top: initial;
        bottom: -170px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    }
    
    .slider .slides:nth-child(1),
    .slider .slides:nth-child(2) {
        top: initial;
        bottom: 0px;
    }
    
    .slider .slides:nth-child(3) {
        left: 0;
    }
    
    .slider .slides:nth-child(4) {
        left: 120px;
    }
    
    .slider .slides:nth-child(5) {
        left: 240px;
    }
    
    .slider .slides:nth-child(6) {
        left: 360px;
    }
}

@media (max-width: 850px) {
    .hamburger {
        display: flex;
    }

    .nav-center {
        position: static;
    }

    .nav-links {
        display: flex;
        position: absolute;
        top: 100px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 30px 0;
        gap: 30px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s ease-in-out;
        z-index: -1;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        z-index: 999;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
        margin-top: 100px;
    }

    .buttons {
        margin-bottom: 100px;
    }

    .content h1 {
        font-size: 1.8rem;
    }
    
    .inline-content {
        flex-direction: column;
        width: 100%;
        padding: 20px;
    }

    .middle-content {
        width: 100%;
        margin-right: 0;
    }

    .event-container h2 {
        font-size: 2.5rem;
    }

    .event-filter {
        flex-direction: column;
        align-items: center;
    }

    #searchInput, .event-filter select {
        width: 100%;
        max-width: 300px;
    }

    .carousel-heading {
        font-size: 2.5rem;
    }

    .leaders-container {
      gap: 20px; 
    }
  
    .leader {
      width: 120px;
    }
  
    .profile-pic {
      width: 100px;
      height: 100px;
    }
  
    .leader-name {
      font-size: 1rem;
    }
  
    .leader-role {
      font-size: 0.9rem;
    }

    .footer {
        flex-direction: column;
        text-align: center;
    }

    .ramp-icon {
        width: 60px;
    }

    .ramp-icon.center {
        width: 70px; 
    }
}