body {
    font-family: 'Georgia', serif;
}



.partners-section {
    padding: 4rem 0;
    background: #fff;
}

.partners-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 3rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 1rem;
}

.partner-logo img {
    max-width: 120px;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 2rem;
    }
    
    .watermark, .watermark-leaves {
        display: none;
    }
    
    .btn-nominate, .btn-search {
        display: block;
        margin: 0.5rem 0;
        text-align: center;
    }
}


/* events */



.event-section {
    background: #fff;
    padding: 0;
}

.image-container {
    position: relative;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%23d4cfc7" width="800" height="600"/><rect fill="%23e8e4de" x="0" y="0" width="400" height="600"/></svg>');
    background-size: cover;
    background-position: center;
}

.content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 3rem;
    text-align: center;
    min-height: 400px;
}

.event-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #333;
    letter-spacing: 0.5px;
}

.btn-learn-more {
    background: #000;
    color: #fff;
    padding: 0.9rem 3rem;
    border: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-learn-more:hover {
    background: #333;
    color: #fff;
}

@media (max-width: 767px) {
    .image-container {
        min-height: 300px;
    }
    
    .content-container {
        padding: 3rem 2rem;
    }
    
    .event-title {
        font-size: 2rem;
    }
    
    .btn-learn-more {
        padding: 0.8rem 2.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .event-title {
        font-size: 1.75rem;
    }
    
    .content-container {
        padding: 2.5rem 1.5rem;
    }
}

body {
    font-family: 'Georgia', serif;
    background: #f8f9fa;
}

.about-section {
    padding: 4rem 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    color: #333;
}

.info-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.info-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin: 0;
}

.verify-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.verify-container {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.verify-content {
    padding: 3rem;
}

.verify-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #333;
}

.verify-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

.form-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.form-control {
    background: #f5f5f7;
    border: 1px solid #e0e0e0;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border-radius: 4px;
}

.form-control:focus {
    background: #fff;
    border-color: #333;
    box-shadow: 0 0 0 0.2rem rgba(0,0,0,0.1);
}

.btn-verify {
    background: #000;
    color: #fff;
    padding: 0.75rem 2.5rem;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.btn-verify:hover {
    background: #333;
    color: #fff;
}

.verify-image {
    height: 100%;
    min-height: 400px;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 400"><rect fill="%23e8f4f8" width="600" height="400"/></svg>');
    background-size: cover;
    background-position: center;
    position: relative;
}

.image-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #999;
}

@media (max-width: 991px) {
    .verify-content {
        padding: 2rem;
    }
    
    .verify-image {
        min-height: 300px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .verify-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .verify-section {
        padding: 3rem 0;
    }
    
    .info-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .verify-content {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .verify-title {
        font-size: 1.5rem;
    }
}

body {
    font-family: 'Georgia', serif;
    background: #f8f9fa;
}

.gallery-section {
    padding: 3rem 0;
    background: #fff;
}

.image-card {
    position: relative;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.image-card-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.image-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 2rem 1.5rem 1.5rem;
}

.image-card-label {
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-align: center;
}

.stats-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.stats-container {
    background: #000;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.stats-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.chart-container {
    position: relative;
    height: 350px;
}

.chart-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 280px;
    padding: 0 1rem;
}

.chart-bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 80px;
}

.chart-bar {
    width: 100%;
    background: #444;
    border-radius: 4px 4px 0 0;
    transition: background 0.3s ease;
    position: relative;
}

.chart-bar:hover {
    background: #666;
}

.chart-label {
    color: #999;
    font-size: 0.7rem;
    text-align: center;
    margin-top: 0.5rem;
    line-height: 1.2;
}

.chart-axis {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    width: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.axis-label {
    color: #999;
    font-size: 0.75rem;
    text-align: right;
    padding-right: 0.5rem;
}

.chart-subtitle {
    color: #999;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
}

/* Placeholder backgrounds */
.bg-about {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect fill="%23b8956a" width="400" height="400"/></svg>');
}

.bg-winners {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect fill="%23c0c0c0" width="400" height="400"/></svg>');
}

.bg-moment {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect fill="%23d4a574" width="400" height="400"/></svg>');
}

@media (max-width: 991px) {
    .image-card {
        height: 300px;
        margin-bottom: 1.5rem;
    }
    
    .stats-container {
        padding: 2rem 1.5rem;
    }
    
    .chart-wrapper {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .gallery-section {
        padding: 2rem 0;
    }
    
    .stats-section {
        padding: 2rem 0;
    }
    
    .image-card {
        height: 280px;
    }
    
    .stats-container {
        padding: 1.5rem 1rem;
    }
    
    .chart-wrapper {
        padding: 0 0.5rem;
    }
    
    .chart-bar-group {
        max-width: 60px;
    }
    
    .chart-label {
        font-size: 0.6rem;
    }
}

body {
    font-family: 'Georgia', serif;
    background: #f8f9fa;
    padding: 2rem 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: normal;
    color: #333;
    margin-bottom: 2rem;
    padding-left: 1rem;
}

.recipients-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0 1rem 1rem;
}

.recipient-card {
    flex: 0 0 auto;
    width: 280px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recipient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom right, #e8f4f8, #c8e6f5);
    position: relative;
}

.placeholder-content {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

.card-footer-btn {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 0.9rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: block;
}

.card-footer-btn:hover {
    background: #34495e;
    color: #fff;
}

/* Scrollbar styling */
.recipients-container::-webkit-scrollbar {
    height: 8px;
}

.recipients-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.recipients-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.recipients-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@media (min-width: 768px) {
    .recipients-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        overflow-x: visible;
    }
    
    .recipient-card {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .recipients-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.25rem;
    }
    
    .recipient-card {
        width: 260px;
    }
}

.vote-section {
    background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d') center/cover no-repeat;
    color: #fff;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 280px;
  }

  .vote-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
  }

  .vote-text h4 {
    font-weight: 600;
  }

  .vote-text p {
    margin-bottom: 1rem;
  }

  .vote-image img {
    max-width: 150px;
    border-radius: 8px;
  }

  @media (max-width: 768px) {
    .vote-overlay {
      flex-direction: column;
      text-align: center;
    }
    .vote-image img {
      max-width: 100px;
      margin-top: 1rem;
    }
  }

      /* Unique namespace to avoid class conflicts */
      .locmon-section {
        background: #000;
        color: #fff;
        padding: 50px 15px;
        text-align: center;
      }
  
      .locmon-section h2 {
        font-weight: 600;
        margin-bottom: 40px;
        letter-spacing: 1px;
      }
  
      .locmon-card {
        background: #111;
        border: 1px solid #333;
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.3s ease;
      }
  
      .locmon-card:hover {
        transform: translateY(-5px);
      }
  
      .locmon-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
      }
  
      .locmon-card-body {
        padding: 15px;
        font-size: 14px;
        color: #ccc;
      }
  
      .locmon-card-body h5 {
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 10px;
      }
  
      .locmon-highlight {
        border: 2px solid #00bfff;
      }
  
      /* Responsive adjustments */
      @media (max-width: 768px) {
        .locmon-card img {
          height: 160px;
        }
        .locmon-card-body {
          font-size: 13px;
        }
      }

         /* Unique prefix: pon- (Pride of Nigeria) */
    .pon-hero {
        background: linear-gradient(rgba(0, 80, 0, 0.85), rgba(0, 80, 0, 0.85)),
                    url('https://images.unsplash.com/photo-1606851090978-74d30b61e619') center/cover no-repeat;
        color: #fff;
        padding: 80px 0;
        position: relative;
      }
  
      .pon-hero h1 {
        font-weight: 700;
        text-transform: uppercase;
        font-size: 2.2rem;
      }
  
      .pon-hero p {
        font-size: 15px;
        max-width: 500px;
      }
  
      .pon-btn {
        background: #fff;
        color: #006400;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        font-weight: 600;
        text-transform: uppercase;
      }
  
      .pon-btn:hover {
        background: #00a000;
        color: #fff;
      }
  
      .pon-recognized {
        background: #eaf2ec;
        padding: 60px 0;
        text-align: center;
      }
  
      .pon-recognized h2 {
        text-transform: uppercase;
        color: #005f2f;
        font-weight: 600;
        margin-bottom: 40px;
      }
  
      .pon-award-card {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        overflow: hidden;
        transition: transform 0.3s ease;
        text-align: left;
      }
  
      .pon-award-card:hover {
        transform: translateY(-5px);
      }
  
      .pon-award-img {
        width: 100%;
        height: 220px;
        object-fit: cover;
      }
  
      .pon-award-body {
        padding: 20px;
      }
  
      .pon-award-body h5 {
        font-weight: 700;
        font-size: 18px;
        color: #003d1d;
      }
  
      .pon-award-body p {
        color: #555;
        font-size: 14px;
      }
  
      .pon-impact {
        background: #fff;
        padding: 60px 0;
        text-align: center;
      }
  
      .pon-impact h3 {
        font-weight: 600;
        margin-bottom: 40px;
        color: #003d1d;
      }
  
      .pon-impact-card {
        border: 1px solid #ddd;
        border-radius: 10px;
        overflow: hidden;
        background: #828282;
        transition: transform 0.3s ease;
      }
  
      .pon-impact-card:hover {
        transform: scale(1.02);
      }
  
      .pon-impact-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
      }
  
      .pon-impact-card .pon-card-body {
        padding: 15px;
        font-size: 13px;
      }
  
      @media (max-width: 768px) {
        .pon-hero {
          padding: 60px 20px;
          text-align: center;
        }
  
        .pon-hero h1 {
          font-size: 1.8rem;
        }
      }

      .vgal__wrapper {
        background: #000;
        min-height: 100vh;
        padding: 20px;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    }

    .vgal__main-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .vgal__video-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        margin-bottom: 40px;
    }

    .vgal__video-card {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        cursor: pointer;
        transition: transform 0.2s;
        aspect-ratio: 9/16;
    }

    .vgal__video-card:hover {
        transform: scale(1.02);
    }

    .vgal__video-card--featured {
        grid-column: span 2;
        grid-row: span 2;
        border: 3px solid #00d4ff;
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    }

    .vgal__video-thumbnail {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .vgal__video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 15px;
    }

    .vgal__video-stats {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .vgal__stat-item {
        display: flex;
        align-items: center;
        gap: 5px;
        color: #fff;
        font-size: 12px;
        font-weight: 600;
    }

    .vgal__stat-item i {
        font-size: 14px;
    }

    .vgal__play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        font-size: 24px;
    }

    .vgal__video-info {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .vgal__creator-avatar {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 2px solid #fff;
    }

    .vgal__creator-details {
        flex: 1;
        color: #fff;
    }

    .vgal__creator-name {
        font-size: 13px;
        font-weight: 600;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .vgal__verified-badge {
        color: #00d4ff;
        font-size: 12px;
    }

    .vgal__video-title {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.8);
        margin: 0;
    }

    .vgal__action-buttons {
        display: flex;
        gap: 10px;
    }

    .vgal__action-btn {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: #fff;
        width: 32px;
        height: 32px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(10px);
    }

    .vgal__thumbnail-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .vgal__small-thumbnail {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        aspect-ratio: 9/16;
        cursor: pointer;
        transition: transform 0.2s;
    }

    .vgal__small-thumbnail:hover {
        transform: scale(1.05);
    }

    .vgal__small-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    @media (max-width: 768px) {
        .vgal__video-card--featured {
            grid-column: span 1;
            grid-row: span 1;
        }

        .vgal__thumbnail-row {
            grid-template-columns: repeat(2, 1fr);
        }
    }

   