
/* ====== MODERN CINEMATIC THEME ====== */
:root {
     /*Brand Colors */
    --gold-primary: #FFD700;
    --gold-secondary: #FFC107;
    --bg-dark: rgba(0, 0, 0, 0.5);
    
     /*UI Colors */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --border-light: rgba(255, 215, 0, 0.2);
    
     /*Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

    --gold: #D4AF37;
    --light-gold: #FFEC00;
    --cream: #FAC971;
    --dark-gold: #A19B47;
    --white: #FFFFFF;
    --black: #000000;
    
}

/* ====== BASE STYLES ====== */
body, html{
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
    color: var(--text-primary);
    background-color: black !important;
    background-size: cover !important;
    background-attachment: fixed !important;
    overflow-x: hidden !important;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ====== MODERN HERO SECTION ====== */
.project-header {
    text-align: center;
    margin: 20px auto;
    position: relative;
    /*overflow: hidden;*/
}

.project-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, 
                rgba(255, 215, 0, 0.05) 0%, 
                transparent 70%);
    z-index: -1;
}

.project-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.project-status {
    display: inline-block;
    padding: 10px 50px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--gold-primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 20px 0;
    backdrop-filter: blur(5px);
    animation: pulse 2s infinite;
}

/* ====== OLD VIDEO PLAYER ====== */
/*.video-container {*/
/*    position: relative;*/
/*    width: 100%;*/
    /*margin: 40px 0;*/
/*    text-align: center;*/
/*}*/

/*.video-top-border,*/
/*.video-bottom-border {*/
/*    margin: 0 auto;*/
/*    max-width: 970px;*/
/*}*/

/*.video-embed {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    max-width: 970px;*/
/*    margin: 0 auto;*/
/*    background: #000;*/
/*}*/

/*.video-embed iframe {*/
/*    width: 100%;*/
/*    height: 545px;*/
/*    border: none;*/
/*    display: block;*/
/*}*/

/* Responsive adjustments */
/*@media (max-width: 992px) {*/
/*    .video-embed iframe {*/
/*        height: 500px;*/
/*    }*/
/*}*/

/*@media (max-width: 768px) {*/
/*    .video-embed iframe {*/
/*        height: 400px;*/
/*    }*/
/*}*/

/*@media (max-width: 576px) {*/
/*    .video-embed iframe {*/
/*        height: 300px;*/
/*    }*/

/*    .video-top-border img,*/
/*    .video-bottom-border img {*/
/*        height: auto;*/
/*    }*/
/*}*/
/* ====== MODERN VIDEO PLAYER ====== */

/*.video-container-wrapper {*/
/*    margin: 50px auto;*/
/*    border-radius: 12px;*/
/*    overflow: hidden;*/
    /*box-shadow: var(--shadow-lg);*/
/*    max-width: 900px;*/
/*    position: relative;*/
/*}*/

/*.video-container-wrapper::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    background: linear-gradient(45deg, */
/*                rgba(255, 193, 7, 0.05) 0%, */
/*                transparent 50%);*/
/*    pointer-events: none;*/
/*}*/

/* ====== MODERN COUNTDOWN ====== */
.countdown-container {
    background: var(--bg-dark);
    border-radius: 12px;
    padding: 20px;
    margin: 20px auto;
    max-width: 700px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(8px);
}

.countdown-title {
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 1px;
}

.countdown-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.countdown-item {
    width: 80px;
    height: 80px;
    perspective: 1000px;
}

.countdown-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: var(--transition);
}

.countdown-face {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-light);
    backface-visibility: hidden;
}

.countdown-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-top: 5px;
}
.countdown-separator{
    display: flex;
    align-items:center;
}
/* Hide short labels by default */
.short-label {
    display: none;
}

/* On mobile screens, show short labels and hide full labels */
@media (max-width: 768px) {
    .full-label {
        display: none;
    }
    .short-label {
        display: inline;
    }
}


/* ====== MODERN CARD GRID ====== */
.combined-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto)); /* Replace 1fr with auto */
    gap: 25px;
    margin: 25px auto;
    max-width: 960px;
}
.combined-sections .card-item {
    max-width: 100%; /* Prevent overflow */
}

.card-item {
    transition: var(--transition);
}

.card-item:hover {
    transform: translateY(-5px);
}

.card-item-div {
    /*height: 100%;*/
    background: var(--bg-dark);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(8px);
}

.card-item-top-head {
    padding: 10px;
    background: linear-gradient(135deg, 
                rgba(255, 215, 0, 0.15), 
                rgba(255, 193, 7, 0.1));
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}

.card-item-heading {
    font-size: 1.3rem;
    color: var(--gold-primary);
    margin: 0;
    font-weight: 600;
}

.card-item-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.card-item-body img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card-item:hover .card-item-body img {
    transform: scale(1.05);
}

.card-item-body-heading {
    font-size: 1.2rem;
    color: var(--gold-primary);
    margin: 10px 0;
    font-weight: 600;
    position: relative;
}

.card-item-body-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gold-primary);
}

.card-item-body-para {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ====== MODERN BUTTONS ====== */
.vote-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, 
                var(--gold-primary), 
                var(--gold-secondary));
    color: #000;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    margin-top: 10px;
}

.vote-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.card-item-green-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #146d2b, #077924);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(22, 109, 45, 0.4);
    margin-top: 10px;
}

.card-item-green-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(22, 109, 45, 0.6);
}

/* ====== MODERN CONTENT SECTIONS ====== */
.project-info {
    margin: 50px auto;
    padding: 40px;
    background: var(--bg-dark);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(8px);
    max-width: 960px;
}

.info-title {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gold-primary);
}

.info-content {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* ====== MODERN COLLECTION SECTION ====== */
.collection-section {
    padding: 40px;
    margin: 50px auto;
    background: var(--bg-dark);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(8px);
    max-width: 960px;
    text-align: center;
}

.collection-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.3));
    transition: var(--transition);
}

.collection-image:hover {
    transform: scale(1.1) rotate(5deg);
}

.collection-title {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.collection-button {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    margin-top: 15px;
}

.collection-button:hover {
    background: var(--gold-primary);
    color: #000;
    transform: translateY(-3px);
}

/* ====== MODERN SHARE SECTION ====== */
.share-section {
    margin: 50px auto;
    text-align: center;
    max-width: 960px;
}

.copyURLBtn {
    padding: 12px 30px;
    background: linear-gradient(135deg, 
                var(--gold-primary), 
                var(--gold-secondary));
    color: #000;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    display: inline-block;
    max-width: 100%;
}

.copyURLBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* ====== ANIMATIONS ====== */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 768px) {
    .project-title {
        font-size: 2.2rem;
    }
    
    .project-subtitle {
        font-size: 1.2rem;
    }
    
    .combined-sections {
        display: block; /* Default, no grid needed */
    }
    .combined-sections .card-item {
        width: 100%; /* Forces full width */
    }
    
    .countdown-item {
        width: 70px;
        height: 70px;
    }
    
    .countdown-value {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .project-title {
        font-size: 1.8rem;
    }
    
    .countdown-grid {
        gap: 10px;
    }
    
    .countdown-item {
        width: 60px;
        height: 60px;
    }
    
    .countdown-value {
        font-size: 1.5rem;
    }
    
    .copyURLBtn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

/* Navigation Tabs - Keep original animation */
.nav-tabs-container.animate__animated.animate__fadeIn {
    margin: 1px auto;
    text-align: center;
    max-width: 960px;
    padding: 0 20px;
    overflow: hidden;
    animation-duration: 1s;
}

.nav-tabs-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 -5px;
}

.nav-tab {
    width: 125px;
    text-align: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin: 5px;
}

.nav-tab-link {
    display: block;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
}

.nav-tab-icon {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: contain;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-tab-label {
    display: block;
    margin-top: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
}

.nav-tab:hover {
    transform: translateY(-5px);
}

.nav-tab:hover .nav-tab-icon {
    border-color: var(--gold);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

.nav-tab:hover .nav-tab-label {
    color: var(--gold);
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}
/* Add this to your CSS */
.project-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin: 10px auto;
    max-width: 800px;
    line-height: 1.7;
    position: relative;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    border-left: 3px solid var(--gold-primary);
    box-shadow: var(--shadow-sm);
}

.project-subtitle::before,
.project-subtitle::after {
    content: '✦';
    color: var(--gold-primary);
    position: absolute;
    font-size: 1.2rem;
}

.project-subtitle::before {
    left: 10px;
    top: 10px;
}

.project-subtitle::after {
    right: 10px;
    bottom: 10px;
}

.project-subtitle strong {
    color: var(--gold-primary);
    font-weight: 600;
}

.project-subtitle .gold-text {
    color: var(--gold-primary);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
    display: inline-block;
    margin: 0 5px;
}

/* For the date text */
.project-subtitle .date-highlight {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    border: 1px solid var(--border-light);
    margin-top: 10px;
    font-weight: 600;
}






/*  /Sponsors/index.php page styles - START */

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 20px 0;
  max-width: 1200px;
  width: 100%;
}

/* Center single sponsor card */
.sponsor-grid.single-card {
  grid-template-columns: minmax(300px, 500px);
  justify-content: center;
}

.sponsor-card {
  background: linear-gradient(145deg, rgba(0,0,0,0.8), rgba(20,20,20,0));
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
}

.sponsor-card a{
    text-decoration:none;
}
.sponsor-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 70%);
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.sponsor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.5);
}

.sponsor-card:hover::before {
  opacity: 1;
  animation: shine 1.8s infinite;
}

@keyframes shine {
  0% { transform: rotate(45deg) translate(-10%, -10%); }
  100% { transform: rotate(45deg) translate(10%, 10%); }
}

.sponsor-logo {
  max-width: 100%;
  height: 90px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4));
  transition: all 0.4s ease;
}

.sponsor-card:hover .sponsor-logo {
  transform: scale(1.08);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5)) brightness(1.1);
}

.sponsor-name {
  font-size: 1.6rem;
  color: #FFFFFF;
  margin: 15px 0;
  font-weight: 700;
  text-decoration: none;
  display:block;
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.3s ease;
}

.sponsor-name::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, var(--blue), var(--light-blue));
  opacity: 0;
  transition: opacity 0.3s ease, width 0.3s ease;
}

.sponsor-card:hover .sponsor-name {
  color: var(--gold-primary);
}

.sponsor-card:hover .sponsor-name::after {
  opacity: 1;
  width: 80px;
}

.sponsor-country {
  color: var(--orange);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 10px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  width: fit-content;
  padding: 0 15px;
  transition: all 0.3s ease;
}

.sponsor-card:hover .sponsor-country {
  color: var(--gold);
  transform: scale(1.05);
}


@media (max-width: 939px) {
  .sponsor-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
  .sponsor-logo {
    height: 80px;
  }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(145deg, rgb(255, 193, 7), rgb(255, 215, 0));
    font-family: "Arial Black", sans-serif;
    font-size: 18px;
    font-weight: bold;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: rgb(212, 175, 55) 0px 5px 0px, rgba(255, 215, 0, 0.4) 0px 8px 20px;
    transition: 0.2s;
    color: rgb(0, 0, 0) !important;
    transform: translateY(0px);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: rgb(212, 175, 55) 0px 7px 0px, rgba(255, 215, 0, 0.6) 0px 12px 25px;
}


.round-cover-art {
    padding: 15px;
    border-radius: 100%;
    border: 2px solid transparent;
    /*box-shadow: 0 4px 10px rgba(0,0,0,0.5);*/
    transition: all 0.3s ease;
}
.round-cover-art:hover {
    border-radius: 100%;
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--orange-light);
    border-color: var(--gold);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cta-button {
    font-size: 18px;
    padding: 14px 35px;
  }
  
  .sponsor-card {
    padding: 20px;
  }
  
  .sponsor-logo {
    height: 70px;
  }
}

@media (max-width: 576px) {
  .sponsor-grid {
    grid-template-columns: 1fr;
  }
  .sponsor-card {
    padding: 15px;
  }
}

/*  /Sponsors/index.php page styles - END */


/*  /Credits.php page styles - START */
.divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
    margin: 25px 25px 25px 80px;
    width: 80%;
    opacity: 0.7;
}
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section-container {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
}


.credit-section {
    margin-bottom: 30px;
}

.credit-heading {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.credit-subheading {
    font-size: 1.4rem;
    color: var(--light-gold);
    margin-bottom: 5px;
}

.credit-content {
    font-size: 1.2rem;
    color: var(--cream);
    /*margin-bottom: 15px;*/
    margin-bottom: 3px;
    
}

@media (max-width: 768px) {
    .content-container {
        padding: 15px;
    }
    
    .section-container {
        padding: 15px;
        margin-bottom: 20px;
    }
}

/*  /Credits.php page styles - END */



/*  Video Player styles - START */

/* Video Container Styles */
.video-container-wrapper {
    max-width: 970px;
    margin: 0 auto;
    position: relative;
}

.video-frame-container {
    position: relative;
    width: 100%;
}

.video-decoration {
    width: 100%;
    text-align: center;
}
    
.video-frame-decoration {
    width: 100%;
    max-width: 970px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.video-content {
    width: 100%;
    overflow: hidden;
}

.video-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-frame iframe,
.video-frame video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 970px) {
    .video-container-wrapper {
        padding: 0 15px;
    }
    
    .video-frame-decoration {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .video-frame {
        padding-bottom: 56.25%;
    }
}

@media (max-width: 480px) {
    .video-decoration.top img {
        /*height: 60px; */
    }
    
    .video-decoration.bottom img {
        /*height: 70px;*/
    }
}
/*  Video Player styles - END */



/*  Award Page styles - START */
.award-golden-bar-style {
    color: black;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.3px;
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(90deg, #d7b508 0%, #d7b508 100%);
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(25,118,210,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.award-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.45);
    padding: 15px;
    border: solid #d7b508 1px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    margin: 0 auto 20px;
    height: 100%;
}
.text-info{
    color: #D2F6F0 !important;
}
/*  Award Page styles - END */

/*  Interviews Page styles - START */
.interview-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border: 2px solid #D4AF37;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.interview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.interview-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 3px solid #FFD700;
    transition: all 0.3s ease;
}

.interview-image:hover {
    transform: scale(1.02);
    border-color: #FFEA00;
}
.gold-text {
    color: #EDC903;
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.white-text {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.3rem;
}

.btn-custom {
    background: linear-gradient(135deg, #FFD700, #FFEA00);
    color: #000000;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-custom:hover {
    background: linear-gradient(135deg, #FFEA00, #FFFF00);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    color: #000000;
}

.btn-gold {
    background: linear-gradient(135deg, #FFD700, #FFEA00);
    color: #000000;
    border: none;
    border-radius: 30px;
    padding: 15px 40px;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #FFEA00, #FFFF00);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    color: #000000;
}

@media (max-width: 768px) {
    .sub-title {
        font-size: 2rem;
    }

    .gold-text {
        font-size: 1.3rem;
    }

    .white-text {
        font-size: 1.1rem;
    }

    .btn-custom {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .btn-gold {
        padding: 12px 30px;
        font-size: 1.1rem;
    }

    .interview-image {
        height: 200px;
    }
}
/*  Interviews Page styles - END */


/* SWAL library redefine styles */


/* Main popup */
.swal-gold-theme {
    background: #1a1a1a !important;
    border: 2px solid #D4AF37 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.25) !important;
    width: auto !important;
    max-width: 500px !important;
    padding: 2rem !important;
}

/* Title */
.swal-gold-title {
    color: #FFD700 !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

/* Content */
.swal-gold-content {
    color: white !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
}

/* Buttons container */
.swal-gold-actions {
    margin: 1.5rem 0 0 0 !important;
    gap: 12px !important;
}

/* Confirm button */
.swal-gold-confirm {
    background: #FFD700 !important;
    color: #1a1a1a !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 8px 24px !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
}

.swal-gold-confirm:hover {
    background: #e6c200 !important;
    transform: translateY(-1px);
}

/* Cancel button */
.swal-gold-cancel {
    background: transparent !important;
    color: white !important;
    border: 1px solid #555 !important;
    border-radius: 4px !important;
    padding: 8px 24px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
}

.swal-gold-cancel:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: #777 !important;
}