*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
}
html, body {
    font-family: "Poppins", "Montserrat", sans-serif;
    background-color: #090b17 !important;
    color: #f8fafc;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#smooth-wrapper, #smooth-content, main {
    background-color: #090b17 !important;
}
#smooth-wrapper, #smooth-content {
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
}
#smooth-wrapper {
    padding-top: [header height]; /* e.g. 70px */
}
/* ====== ULTRA-MODERN TICKER ANNOUNCEMENT BAR ====== */
.announcement-bar, .announcement {
    position: relative;
    width: 100%;
    height: 52px;
    background: linear-gradient(90deg, #090b17 0%, #0f172a 35%, #1e1b4b 65%, #090b17 100%);
    border-top: 1px solid rgba(245, 158, 11, 0.25);
    border-bottom: 1px solid rgba(245, 158, 11, 0.25);
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.ticker-prefix-badge {
    position: relative;
    z-index: 5;
    height: 100%;
    padding: 0 22px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #090b17;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 6px 0 15px rgba(0, 0, 0, 0.4);
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
    padding-right: 28px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .ticker-prefix-badge {
        display: none;
    }
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #090b17;
    border-radius: 50%;
    animation: pulseGlow 1.5s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

.ticker-container, .announcement-wrapper {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

.ticker-track, .announcement-wrapper {
    display: flex;
    align-items: center;
    width: max-content;
}

.announcement-text {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: infiniteMarquee 30s linear infinite;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.announcement:hover .announcement-text,
.announcement-bar:hover .announcement-text,
.announcement:hover .ticker-track,
.announcement-bar:hover .ticker-track {
    animation-play-state: paused;
}

.announcement-text span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 18px;
}

.announcement-text span a, .ticker-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 158, 11, 0.18);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #fbbf24 !important;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.announcement-text span a:hover, .ticker-link:hover {
    background: #f59e0b;
    color: #090b17 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

@keyframes infiniteMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 600px) {
    .announcement-text {
        font-size: 0.88rem;
    }
}
.wholeContainer, .wholeContent, main, section, article {
    width: 100%;
    box-sizing: border-box;
}
.wholeContainer{
    width: 100%;
    height: 100%;
}
.wholeContent{
    width: 95%;
    margin: auto;
}

/* Profile header style */
.profile-menu {
    display: flex;
    align-items: center;
}
.profile-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.profile-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
    border: 2px solid #4f46e5;
}
.profile-username {
    /* display: none; */
    font-size: 1rem;
    color: #000000;
    font-weight: 500;
}

/* Popup Container */
.popup {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 350px;
    padding: 16px 20px;
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: all 0.4s ease;
}
.popup h3 {
    margin: 0 0 5px;
    font-size: 18px;
}
.popup p {
    margin: 0;
    font-size: 14px;
}
/* Popup Types */
.popup.success {
    background-color: #d4edda;
    color: #155724;
    border-left: 5px solid #28a745;
}
.popup.error {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 5px solid #dc3545;
}
.popup.warning {
    background-color: #fff3cd;
    color: #856404;
    border-left: 5px solid #ffc107;
}
.popup.info {
    background-color: #cce5ff;
    color: #004085;
    border-left: 5px solid #007bff;
}


/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #ffffff, #ffffff); /* blue & red gradient */
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Animate into an X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 70%;
  max-width: 300px;
  background: #fff;
  box-shadow: -4px 0 15px rgba(0,0,0,0.15);
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4rem 2rem;
  z-index: 1000;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav ul li {
  margin: 1.2rem 0;
  opacity: 1;
  transform: translateX(30px);
  transition: all 0.4s ease;
  position: relative;
}

.mobile-nav ul li.show {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav ul li a {
    display: flex;
    width: 100%;
    height: 100%;
  text-decoration: none;
  font-size: 1.2rem;
  color: #222;
  font-weight: 600;
  transition: color 0.3s ease;
}

.mobile-nav ul li a:hover {
  color: #004aad;
}

/* Legacy Mobile Dropdown */
.legacy-mobile-nav .dropdown-menu {
  display: none;
  list-style: none;
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.legacy-mobile-nav .dropdown-menu li {
  margin: 0.8rem 0;
}

.legacy-mobile-nav .dropdown:hover .dropdown-menu {
  display: block;
}

.mobile-socials {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 2rem;
}

.mobile-socials a {
  font-size: 1.3rem;
  color: #222;
  transition: color 0.3s ease;
}

.mobile-socials a:hover {
  color: #e60023;
}


/* Header Section */
header{
    width: 100%;
    background-color: #ffffff;
    background: linear-gradient(135deg, hsl(0, 0%, 0%) 0%, hsl(250, 80%, 29%) 50%, hsl(0, 0%, 0%) 100%);
    /* background-image: url('../images/about/blue.jpeg'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom bottom;
    /* margin-bottom: 1.7rem; */
    border-bottom: 1px solid #bebcbc;
    position: relative;
    overflow: visible !important;
    top: 0;
    z-index: 1000; 
}
.headerContainer{
    width: 95%;
    margin: auto;
}
.headerContent {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.2rem 0;
}
.logo{
    width: 11%;
    /* background-color: #254867; */
    font-family: "Satisfy", cursive;
    font-size: 2.2rem;
    font-weight: 900;
    left: 0;
}
.logo a{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    align-items: center;
}
.logo a img {
    width: 100%;
}
header nav{
    width: 55%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-color: #254867; */
}
header nav a{
    color: #ffffff;
    font-weight: normal;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.5rem 0.5rem;
    position: relative;
}
header nav a:hover::after{
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4f46e5;
}
header nav a:hover{
    color: #4f46e5;
}
header nav a.active::after{
    background-color: #4f46e5;
}
header nav a i {
    color: #898b8fe1;
    margin-left: 5px;
    font-size: 0.9rem;
}
/* Dropdown Section */
.dropdown{
    position: relative;
}
.dropdown-content{
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
}
.dropdown-btn a:hover{
    color: #4f46e5;
}
.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    display: block;
}
.dropdown-content a:hover{
    background-color: #f1f1f1;
}
.dropdown.show .dropdown-content,
.dropdown:hover .dropdown-content {
    display: block;
}

.socials {
    /* background-color: #254867; */
    width: 13%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.socials a {
    color: #000000;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}
.socials a i {
    color: #000000;
    font-weight: lighter;
    transition: color 0.3s ease;
}
.socials a:nth-child(1) i {
    color: #3b5998; /* Facebook */
}
.socials a:nth-child(2) i {
    color: #ffffff; /* TikTok */
}
.socials a:nth-child(3) i {
    color: #e1306c; /* Instagram */
}
.socials a:nth-child(4) i {
    color: #ff0000; /* YouTube */
}
/* .socials a:hover {
    color: #4f46e5;
} */
.socials a:hover i {
    transform: scale(1.2);
    transition: transform 0.3s;
}
/* Modern Auth (Login & Signup) Design System */
.auth-page-section {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    background: #090b17;
}

/* Ambient Glowing Background Orbs */
.auth-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.45;
    pointer-events: none;
}
.auth-bg-orb-1 {
    width: 380px;
    height: 380px;
    top: 10%;
    left: 15%;
    background: radial-gradient(circle, #23287C 0%, rgba(35, 40, 124, 0) 70%);
}
.auth-bg-orb-2 {
    width: 350px;
    height: 350px;
    bottom: 10%;
    right: 15%;
    background: radial-gradient(circle, #86DAF4 0%, rgba(134, 218, 244, 0) 70%);
}

.auth-card {
    position: relative;
    z-index: 10;
    width: 100%;
    background: rgba(18, 21, 38, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    border-radius: 24px;
    padding: 40px 36px;
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auth-card-login {
    max-width: 440px;
}

.auth-card-signup {
    max-width: 560px;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
    display: inline-block;
}

.auth-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.auth-header p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.4;
}

/* Form Groups & Inputs */
.auth-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 600px) {
    .auth-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.auth-form-group {
    margin-bottom: 20px;
}

.auth-form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 8px;
}

.auth-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input-icon {
    position: absolute;
    left: 16px;
    color: #64748b;
    font-size: 1rem;
    transition: color 0.3s ease;
    pointer-events: none;
}

.auth-input {
    width: 100%;
    padding: 13px 16px 13px 44px !important;
    background: rgba(9, 11, 23, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    font-size: 0.95rem !important;
    font-family: inherit;
    transition: all 0.3s ease !important;
    outline: none !important;
    box-sizing: border-box;
}

.auth-input::placeholder {
    color: #64748b;
}

.auth-input:focus {
    border-color: #86DAF4 !important;
    background: rgba(9, 11, 23, 0.85) !important;
    box-shadow: 0 0 16px rgba(134, 218, 244, 0.25) !important;
}

.auth-input-wrapper:focus-within .auth-input-icon {
    color: #86DAF4;
}

.auth-password-toggle {
    position: absolute;
    right: 16px;
    color: #64748b;
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 5;
}

.auth-password-toggle:hover {
    color: #86DAF4;
}

/* Auth Options Row (Remember & Forgot) */
.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 0.88rem;
}

.auth-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    cursor: pointer;
    user-select: none;
}

.auth-remember input[type="checkbox"] {
    accent-color: #86DAF4;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.auth-forgot-link {
    color: #86DAF4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.auth-forgot-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Submit Button */
.auth-btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #23287C 0%, #3b42ab 50%, #86DAF4 100%);
    background-size: 200% auto;
    color: #ffffff !important;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(35, 40, 124, 0.4);
}

.auth-btn-submit:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(134, 218, 244, 0.4);
}

/* Footer Link */
.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.92rem;
    color: #94a3b8;
}

.auth-footer a {
    color: #86DAF4;
    text-decoration: none;
    font-weight: 600;
    margin-left: 4px;
    transition: color 0.2s ease;
}

.auth-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}
/* Main Content */
/* Hero Slider Section */
.firstSection {
    width: 100%;
    padding-top: 5.5rem;
    padding-bottom: 1.5rem;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    background: #090b17;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1.06);
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(9, 11, 23, 0.2) 0%, rgba(9, 11, 23, 0.65) 60%, rgba(9, 11, 23, 0.95) 100%);
}

.hero-slide-content {
    position: absolute;
    bottom: 45px;
    left: 45px;
    z-index: 10;
    max-width: 650px;
    color: #ffffff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(134, 218, 244, 0.15);
    border: 1px solid rgba(134, 218, 244, 0.3);
    color: #86DAF4;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    backdrop-filter: blur(8px);
}

.hero-slide-content h1 {
    /* font-size: 2.6rem; */
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    font-family: 'Outfit', 'Montserrat', sans-serif;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    margin-bottom: 15px;
}

.hero-slide-nav {
    position: absolute;
    bottom: 45px;
    right: 45px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.hero-nav-btn:hover {
    background: #86DAF4;
    border-color: #86DAF4;
    color: #090b17;
    transform: scale(1.08);
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    width: 28px;
    border-radius: 10px;
    background: #86DAF4;
}

.hero-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #86DAF4, #23287C);
    width: 0%;
    z-index: 15;
    transition: width 0.1s linear;
}

/* Optional: smoother image transitions */
.firstImg {
    transition: opacity 1s ease;
}
/* Removed .firstVertical-thumbs styles */

/* Upcoming Event Section */
.trendSection {
    width: 100%;
    margin: 2rem 0;
}
.trendSection .section {
    padding: 40px 15px;
    max-width: 100%;
    margin: auto;
}

/* .trendSection .section h2 {
    font-family: "Satisfy", cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 40px;
    color: #222;
}
.trendSection .section .view-all {
    display: block;
    text-align: center;
    margin-top: 30px;
    text-decoration: none;
    color: white;
    background-color: #007bff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
} */
.Upcomsec-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
.Upcomsec-title h2 {
    font-family: "Satisfy", cursive;
    font-size: 2.7rem;
}
.Upcomsec-title .view-all {
    border-radius: 5px;
    color: #0010ef;
    font-size: 1rem;
    padding: 10px 20px;
}

.trendSection .section .events-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
}

.trendSection .section .event-card {
    will-change: transform;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    width: 300px;
    flex-shrink: 0;
    transition: transform 0.3s;
    position: relative;
}

.trendSection .section .event-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.trendSection .section .event-card .date-badge {
    background: #e91e63;
    color: #fff;
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 10px;
    font-weight: bold;
    border-radius: 6px;
    font-size: 12px;
    z-index: 2;
}

.trendSection .section .event-info {
    padding: 20px;
    position: relative;
    z-index: 1;
}

.trendSection .section .event-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.trendSection .section .event-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.trendSection .section .event-meta {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #555;
    margin-bottom: 20px;
}

.trendSection .section .event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding: 12px 20px;
    font-size: 14px;
}

.trendSection .section .buy-button {
    padding: 10px 12px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s, color 0.3s;
}
.trendSection .section .buy-button:hover {
    background-color: #388e3c;
    color: #fff;
}

.trendSection .section .dots {
    text-align: center;
    margin-top: 20px;
}

.trendSection .section .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.trendSection .section .dot.active {
    background: #333;
}


/* up-event-section */
.up-event-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.up-event-sectionDiv1 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.up-event-section .up-event-sectionDiv1 h2 {
    font-size: 2rem;
    color: #222;
}
.up-event-section .up-event-sectionDiv1 a {
    font-size: 1rem;
    /* background: linear-gradient(135deg, hsl(10, 100%, 31%) 0%, hsl(250, 80%, 29%) 50%, hsl(227, 87%, 26%) 100%); */
    color: #fff;
    border-radius: 10px;
    padding: 10px 20px;
}
.up-event-section .up-event-sectionDiv1 a i {
    color: #0c0078;
    font-size: 1.2rem;
}

.up-event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.up-event-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    position: relative;
}

.up-event-card:hover {
    transform: scale(1.02);
}

.up-event-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.up-event-date-badge {
    background: #e91e63;
    color: #fff;
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 10px;
    font-weight: bold;
    border-radius: 6px;
    font-size: 12px;
    z-index: 2;
}

.up-event-info {
    padding: 20px;
}

.up-event-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.up-event-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.up-event-meta {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

.up-event-time {
    font-size: 13px;
    color: #888;
}

.up-event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding: 12px 20px;
    font-size: 14px;
}

.up-event-buy-button, .up-event-nominate-button {
    padding: 6px 12px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.up-event-nominate-button {
    background-color: #9c27b0;
    margin-left: 10px;
}

/* Main Award Section */
.awardSection {
    width: 100%;
    padding: 0rem 1rem;
    padding-top: 5rem;
    padding-bottom: 10rem;
    /* background-color: #f9f9f9; */
}
.awardArt {
    width: 100%;;
}
.awardDiv {
    width: 100%;
    display: flex;
    overflow: hidden;
}
.awardContent {
    width: 100%;
    /* background-color: #013f54; */
}
.awardContent h2 {
    font-family: "Laila", serif;
    text-align: left;
    line-height: 1.2;
    font-size: 3.2rem;
    margin-bottom: 10px;
    color: #000000;
}
.awarddes {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 5px;
}
.awardDetails {
    font-size: 1rem;
    line-height: 1.9;
    color: #444;
    margin-left: 5px;
}
.awardDetails p i,
.awardInfo p i {
    color: goldenrod;
    font-size: 1rem;
    padding-right: 10px;
}
.awardInfo {
    font-size: 0.9rem;
    line-height: 1.9;
    color: #444;
    margin-left: 5px;
}
.awardButton {
    margin-top: 20px;
    text-align: left;
}
.awardButton a {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, hsl(10, 100%, 31%) 0%, hsl(250, 80%, 29%) 50%, hsl(227, 87%, 26%) 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}
.awardButton a:hover {
    background: linear-gradient(135deg, hsl(227, 87%, 26%) 0%, hsl(250, 80%, 29%) 50%, hsl(10, 100%, 31%) 100%);
    color: #fff;
}
.awardImage {
    width: 48%;
}
.award-img-container {
    width: 100%;
    border-radius: 20px;
    margin-top: 30px;
    overflow: hidden;
}
.award-img-container img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}
.award-img-container img:hover {
  transform: scaleX(-1);
}


/* Nominees Section */
.nomineesSection {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

.nomineesSection h2 {
    font-family: "Laila", serif;
    text-align: center;
    line-height: 1.2;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #222;
}

.nomineesSection .category {
    margin-bottom: 5px;
}

.nomineesSection .category h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #444;
}

.nomineesSection .nominee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.nomineesSection .nominee {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

.nomineesSection .nominee:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.nomineesSection .nominee-info {
    flex: 1;
}

.nomineesSection .nominee-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #222;
}

.nomineesSection .nominee-info p {
    margin: 5px 0;
    color: #777;
    font-size: 0.95rem;
}

.nomineesSection .vote-btn {
    display: inline-block;
    padding: 6px 10px;
    font-size: 0.85rem;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 8px;
}

.nomineesSection .votes-count {
    font-size: 0.85rem;
    margin-top: 5px;
    color: #666;
}

.nomineesSection .nominee img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
    margin-left: 20px;
}

.nomineesSection .see-more {
    text-align: right;
    margin-top: 10px;
}

.nomineesSection .see-more a {
    color: #2196F3;
    text-decoration: none;
    font-size: 0.9rem;
}

.nomineesSection .view-all {
    text-align: center;
    margin-top: 40px;
}

.nomineesSection .view-all a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s;
}

.nomineesSection .view-all a:hover {
    background-color: #388e3c;
}

@media (max-width: 1024px) {
    .nomineesSection .nominee-grid {
    grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .nomineesSection .nominee-grid {
    grid-template-columns: 1fr;
    }
}
/* Nomination Session */
.nominationSection {
    max-width: 1300px;
    margin: auto;
    padding: 60px 20px;
}

.vote-note {
    text-align: center;
    font-size: 1rem;
    color: #777;
    margin-bottom: 40px;
}

.nominationSection h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #222;
}

.nominationCategory {
    margin-bottom: 20px;
}

.nominationCategory h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.slider-btn {
    background: var(--primary-color, #007bff);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
}
.slider-btn:hover {
    background: var(--text-primary, #0056b3);
    transform: scale(1.1);
}
.slider-btn.prev {
    left: -20px;
}
.slider-btn.next {
    right: -20px;
}

.nominationCategory .nominee-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 15px 5px;
    scrollbar-width: none;
    scroll-behavior: smooth;
    width: 100%;
}
.nominationCategory .nominee-grid::-webkit-scrollbar {
    display: none;
}

.nominationCategory .nominee {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 0 0 calc(20% - 16px);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    text-align: center;
}

.nominationCategory .nominee:hover {
    transform: translateY(-5px);
    animation: pulseGlow 1.5s infinite;
}

.nominationCategory .nominee img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.nominationCategory .nominee h4 {
    margin: 5px 0;
    font-size: 1.1rem;
    color: #222;
}

.nominationCategory .nominee p {
    margin: 0;
    color: #777;
    font-size: 0.9rem;
}

.nominationCategory .vote-section {
    margin-top: 10px;
}

.nominationCategory .vote-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 5px;
}

.nominationCategory .vote-count {
    margin-top: 5px;
    font-size: 0.85rem;
    color: #555;
}

.nominationCategory .see-more {
    text-align: right;
    margin-top: 15px;
}

.nominationCategory .see-more a {
    font-size: 0.9rem;
    color: #007bff;
    text-decoration: none;
}

.nominationCategory .see-more a:hover {
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .nominationCategory .nominee {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .nominationCategory .nominee {
        flex: 0 0 80%;
        scroll-snap-align: center;
    }
}

@media (max-width: 480px) {
    .nominationCategory .nominee {
        flex: 0 0 85%;
    }
}
/* Style for the number input in the nominee vote form */
.nominee .vote-form input[type="number"] {
    width: 100%;
    max-width: 180px;
    padding: 10px 12px;
    border: 1.5px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    margin: 1px 0 0 0;
    margin-bottom: 7px;
    background: #fafbfc;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.nominee .vote-form input[type="number"]:focus {
    border-color: #007bff;
    outline: none;
    background: #fff;
}

/* Upload Event Section */
.upload-container {
    max-width: 950px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.upload-title {
    text-align: center;
    margin-bottom: 30px;
    color: #222;
}

.upload-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.upload-form input, .upload-form textarea, .upload-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
}

.upload-section-title {
    font-size: 1.2rem;
    margin: 25px 0 10px;
    font-weight: bold;
    color: #444;
}

.upload-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #007BFF;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
    margin-top: 1rem;
}

.upload-btn:hover {
    background: #0056b3;
}

.upload-ticket-option {
    background: #f2f2f2;
    padding: 15px;
    border-radius: 8px;
    box-sizing: border-box;
}

.upload-ticket-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.upload-ticket-row > * {
    flex: 1;
    min-width: 45%;
}

.upload-contact {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.upload-contact h3 {
    margin-bottom: 15px;
    color: #222;
}

.upload-contact p {
    margin: 5px 0;
    color: #555;
}
/* Newly unloaded ticket block */
.upload-ticket-block {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    background: #fafaff;
}
.upload-ticket-block label { font-weight: 500; }
.upload-ticket-block .remove-ticket-btn {
    background: #e91e63;
    color: #fff;
    border: none;
    padding: 4px 10px;
    border-radius: 4px;
    float: right;
    cursor: pointer;
}
.add-ticket-btn {
    background: #7e57c2;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    margin-bottom: 20px;
    cursor: pointer;
}
/* Purchase tickets section */
.ticket-section {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px #0001;
    padding: 32px 24px;
    margin: 32px auto;
    max-width: 1000px;
    text-align: center;
}
.ticket-section h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    font-weight: 700;
}
.ticket-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}
.ticket-card {
    background: #fafaff;
    border-radius: 12px;
    box-shadow: 0 1px 6px #0001;
    padding: 24px 18px 32px 18px;
    max-width: 300px;
    min-width: 240px;
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}
.ticket-card:hover {
    box-shadow: 0 4px 24px #7e57c240;
}
.ticket-images {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 12px;
}
.ticket-images img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 1.5px solid #e0e0e0;
}
.ticket-card h3 {
    color: #7e57c2;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 12px 0 8px 0;
}
.ticket-desc {
    color: #555;
    margin-bottom: 10px;
    font-size: 1rem;
}
.ticket-price {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #222;
}
.purchase-btn {
    background: #7e57c2;
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
}
.purchase-btn:hover {
    background: #5e35b1;
}
/* Ticket Modal Overlay */
.ticket-modal-overlay {
    position: fixed;
    z-index: 10000;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}
.ticket-modal {
    background: #fff;
    border-radius: 18px;
    padding: 2rem 2rem 1.5rem 2rem;
    max-width: 700px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    animation: ticketModalIn 0.3s;
}
@keyframes ticketModalIn {
    from { transform: translateY(40px) scale(0.96); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}
.ticket-modal-close {
    position: absolute;
    top: 16px;
    right: 38px;
    background: none;
    border: none;
    font-size: 3.3rem;
    color: #333;
    cursor: pointer;
    z-index: 2;
}

/* Event Session */
.main-event-section {
    width: 100%;
    position: relative;
    background-image: url('../images/AWARD PICTURES/EVA_8189.jpg'); /* Replace with your actual path */
    background-size: cover;
    background-position: center;
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.main-event-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding-top: 7rem;
    padding-bottom: 4rem;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.main-event-overlay h1 {
    font-family: "Laila", serif;
    font-family: "Roboto Slab", serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.main-event-overlay p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.main-event-overlay h3 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 25px;
}

.main-event-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.main-event-buttons a {
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    background: #f04e98;
    color: white;
    transition: background 0.3s ease;
}

.main-event-buttons a:hover {
    background: #d93b84;
}

/* Countdown Container */
.main-event-countdown {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    flex-wrap: wrap; /* responsive for mobile */
}

/* Each countdown item */
.main-event-countdown .time-box {
    border: 2px solid #fff;
    border-radius: 15px;
    padding: 15px 20px;
    text-align: center;
    min-width: 90px;
    background: rgba(0, 0, 0, 0.3); /* slight transparency */
    transition: transform 0.3s ease, background 0.3s ease;
}

/* Hover effect */
.main-event-countdown .time-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

/* Numbers */
.main-event-countdown .time-box .number {
    font-size: 2.2rem;
    font-weight: 700;
    display: block;
    color: #fff;
}

/* Labels (Days, Hrs, Mins, Secs) */
.main-event-countdown .time-box .label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}

/* Mobile responsive adjustments */
@media (max-width: 600px) {
    .main-event-countdown {
        gap: 10px;
    }
    .main-event-countdown .time-box {
        min-width: 70px;
        padding: 10px 12px;
        border-radius: 10px;
    }
    .main-event-countdown .time-box .number {
        font-size: 1.6rem;
    }
    .main-event-countdown .time-box .label {
        font-size: 0.75rem;
    }
}



/* SERVICE SESSION */
.services{
    width: 100%;
    /* background-color: #130f40;
    background-image: linear-gradient(315deg, #170e76 0%, #000000 74%); */
    background-color: #e2e7eb;
}
.servicesArt{
    color: #040404;
    width: 95%;
    display: flex;
    flex-direction: column;
    margin: auto;
    padding: 5% 0%;
}
.servicesDiv1{
    margin-bottom: 2%;
}
.servicesDiv1 h2{
    font-weight: 700;
    font-family: "Laila", serif;
    font-size: 3rem;
    text-transform: uppercase;
}
.servicesDiv1 p{
    font-size: 1.2rem;
    line-height: 1.4;
    color: #333;
}
.servicesDiv2{
    width: 90%;
    margin: auto;
}
/* ServicesSlider section */
.servicesSlider{
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.serviceSlide{
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}
.serviceSlide.active{
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}
.servicesSlideContent{
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0) 100%);
    color: #ffffff;
    width: 100%;
    padding: 60px 40px 30px;
    text-align: left;
}
.servicesSlideContent h3{
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.servicesSlideContent p{
    font-size: 1.1rem;
    color: #ddd;
    max-width: 600px;
}
.serviceArrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    color: #111;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.serviceArrow:hover{
    background-color: #ffa500; /* Brand color */
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}
.serviceArrow.prev{
    left: 20px;
}
.serviceArrow.next{
    right: 20px;
}
.Serconsec {
    background-color: #f5f1f1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5rem 1.5rem;
}
.Serconsec h2 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.6;
}
.Serconsec p {
    font-size: 1.4rem;
    line-height: 1.6;
}
.SerconsecDiv {
    width: 100%;
    padding-top: 2rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.SerconsecDiv a:nth-child(1) {
    color: #fff;
    font-size: 1.2rem;
    background-color: #007BFF;
    padding: 12px 25px;
    border-radius: 5px;
    margin-right: 10px;
}
.SerconsecDiv a:nth-child(2) {
    color: #030303;
    font-size: 1.2rem;
    background-color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    border: solid #dedede 1px ;
}

.gallery{
    width: 100%;
    padding-top: 5rem;
}
.galleryArt{
    width: 100%;
    margin: auto;
}
.gallerycontainer {
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
}
.gallerycontainer h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}
.gallerycontainer .gallerysection-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.gallerycontainer .gallerysection-title h3 {
    font-family: "Satisfy", cursive;
    font-size: 2.6rem;
    margin: 0;
}
.gallerycontainer .gallerysection-title a {
    color: #2833ca;
    font-size: 1rem;
    font-weight: light;
    text-decoration: none;
    transition: color 0.3s;
    padding: 10px 20px;
}
.gallerycontainer .gallerysection-title a:hover {
    color: #ce2e2e;
}
.gallerycontainer .gallery-slider-container {
    position: relative;
    display: flex;
    align-items: center;
}

.gallerycontainer .gallery-nav-btn {
    background: #ffa500; /* Brand Orange */
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 10;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.gallerycontainer .gallery-nav-btn:hover {
    background: #ffcc00; /* Brand Yellow */
    transform: scale(1.1);
}

#galleryPrev {
    left: -20px;
}

#galleryNext {
    right: -20px;
}

.gallerycontainer .gallery-grid, .gallerycontainer .video-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 0;
    width: 100%;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.gallerycontainer .gallery-grid::-webkit-scrollbar, .gallerycontainer .video-grid::-webkit-scrollbar {
    display: none;
}

.gallerycontainer .gallery-item {
    min-width: 280px;
    max-width: 280px;
    height: 260px;
    scroll-snap-align: start;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000; /* Use dark background for modern look */
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.gallerycontainer .gallery-item, .video-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.gallerycontainer .gallery-item img, .gallerycontainer .video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallerycontainer .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    box-sizing: border-box;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    text-align: center;
}

.gallerycontainer .gallery-title {
    color: #fff;
    margin: 0;
    font-size: 1rem;
    font-weight: bold;
}

.gallerycontainer .gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallerycontainer .gallery-item:hover img {
    transform: scale(1.05);
}

/* .gallerycontainer .gallerysee-more {
    display: inline-block;
    margin-top: 15px;
    color: #7928ca;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s;
}
.gallerycontainer .gallerysee-more:hover {
    color: #5a1b94;
} */

/* ABOUT SECTION */
.Abtbackground{
    width: 100%;
    color: #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top top;
}
.AbtbackgroundOverlay{
    width: 100%;
    background: linear-gradient(135deg, #011d54 0%, #230f85 50%, #09227c 100%);
    opacity: 0.8;
}
.Abtmain{
    width: 100%;
    padding-top: 15%;
    padding-bottom: 8%;
}
.AbthSection1Div{
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.AbthSection1Div h1{
    font-family: Rajdhani, sans-serif;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 2.3rem;
    text-align: center;
    text-transform: capitalize;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); */
    margin-bottom: 1.4rem;
}
.AbthSection1Div span p{
    width: 90%;
    margin: auto;
    font-size: 1.3rem;
    line-height: 1.9rem;
    color: #fff;
}
.AbthSection2Div{
    width: 100%;
}
.AbthSection2Art{
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 5%;
    padding-bottom: 0%;
}
.aboutUsDiv1{
    width: 100%;
    margin: 1%;
    padding-bottom: 2%;
}
.aboutUsDiv1 h2{
    font-family: "Laila", serif;
    font-size: 5rem;
    font-weight: 900;
    /* padding-top: 2%; */
    text-transform: uppercase;
    /* display: none; */
}
.aboutUsDiv1 p{
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 0px;
}
.Abtexperience{
    background-color: #12006a;
    border-radius: 15px;
    color: #ffffff;
    width: 100%;
}
.AbtexperienceDiv{
    width: 100%;
    margin: auto;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    padding: 3% 0%;
}
.AbtexperienceDiv div h3{
    font-family: "Laila", serif;
    font-weight: 900;
    font-size: 2.5rem;
}
.Abtmission{
    /* font-family: "Laila", serif; */
    width: 100%;
}
.aboutUsDiv2{
    width: 95%;
    margin: auto;
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 5%;
    padding-bottom: 0%; */
}
.aboutCategory{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    animation: fadeIn 2s ease-in;
}
.aboutCategoryDiv{
    width: 50%;
    overflow: hidden;
}
.aboutCategoryDiv div{
    width: 100%;
    overflow: hidden;
}
.aboutCategoryDiv div img{
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.aboutCategoryDiv1{
    width: 50%;
    padding: 0% 3%;
}
.aboutCategoryDiv1 h2{
    font-family: "Laila", serif;
    font-size: 3rem;
    font-weight: 900;
    padding-top: 3%;
    text-transform: uppercase;
}
.aboutCategoryDiv1 p {
    font-size: 1.3rem;
    line-height: 1.3;
}
/* TEAM SECTION */
.teamSection{
    width: 100%;
    background-color: #f5f5f5;
    margin-top: 5rem;
}
.teamSectionArt{
    background-color: #f5f5f5;
    width: 90%;
    margin: auto;
    padding: 0.2% 0%;
    padding-bottom: 5%;
}
.teamSectionArt h2{
    font-family: "Laila", serif;
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    padding-top: 3%;
    text-transform: uppercase;
}
.teamSectionArtp{
    width: 100%;
    font-size: 1.3rem;
    font-weight: 400;
    text-align: center;
    padding: 0% 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.team-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.team-card {
    position: relative;
    width: 300px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-img {
    position: relative;
    height: 360px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-card .overlay {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.team-card:hover .overlay {
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 170px;
}

.social-icons a img {
    fill: white;
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.2);
    fill: #ff4757;
}

.team-content {
    padding: 20px;
}

.team-content h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #222;
}

.team-content p {
    color: #666;
    font-size: 14px;
}

/* CONTACT SECTION */
.conAbtmain{
    width: 100%;
}
.conAbtmainart{
    width: 90%;
    margin: auto;
}
.contH1{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 4rem;
    font-weight: 700;
    padding: 5% 0%;
    margin-bottom: 0%;
}
.contact-section {
    background: #fff;
    padding: 50px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    animation: fadeIn ease-in;
}
.contact-form {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 30px;
    flex: 1.5;
    min-width: 300px;
}
 .contact-info {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 30px;
    flex: 1;
    min-width: 300px;
}

.contact-form h2 {
    margin-bottom: 10px;
}

.contact-form p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(to right, #1e90ff, #ff4d4d);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.info-item {
    margin-bottom: 20px;
}

.info-item i {
    color: #1e90ff;
    margin-right: 10px;
}

.highlight-box {
    background: #fffaf0;
    padding: 15px;
    border-left: 4px solid orange;
    border-radius: 8px;
    margin-top: 3rem;
}

.highlight-box h4 {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.highlight-box ul {
    padding-left: 20px;
    list-style: none;
}

.highlight-box li{
    line-height: 1.8;
}

.highlight-box li::before {
    content: '\2713';
    margin-right: 8px;
    color: green;
}

.faq-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.faq-item h4 {
    margin-bottom: 10px;
}
@keyframes fadeInUp {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
}

/* Latest News Section */
.latestSection {
    width: 100%;
    margin: 2rem 0;
}
.latestContainer {
    display: flex;
    max-width: 100%;
    margin: auto;
    gap: 2rem;
}
.latestMain-content {
    width: 70%;
    /* flex: 2; */
    /* background-color: #bbb; */
}
.asideSection {
    width: 25%;
}
/* .sidebar {
    flex: 1;
} */
.LatestTitle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111111;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}
.lastestBlog-card {
    display: flex;
    gap: 1rem;
    background-color: #fff;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}
.lastestBlog-card:hover {
    transform: translateY(-5px);
}
.latestBlog-Img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}
.latestBlog-content {
    flex: 1;
}
.lastestBlog-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}
.lastestBlog-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.4rem;
}
.lastestBlog-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}
.lastestBlog-footer {
    font-size: 0.8rem;
    color: #aaa;
}
.social-box, .labels-box {
    /* background: #fff; */
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}
.social-box .social-item {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    /* padding: 0.9rem 0.75rem; */
    border-radius: 8px;
    margin-bottom: 0.7rem;
    color: #fff;
    font-size: 0.85rem;
}
.social-box .social-item:hover {
    transform: translateY(-1px);
}
.social-box .social-item i {
    font-size: 1.2rem;
    margin-right: 0.3rem;
    padding-left: 0.5rem;
}
.social-box .social-item span {
   margin-left: auto;
   border-left: solid 1px rgba(255, 255, 255, 0.5);
   padding: 0.9rem 0.75rem;
   padding-left: 0.5rem;
}
.facebook { background: linear-gradient(to right, #3b5998, #1e3c72); }
.twitter { background: linear-gradient(to right, #1da1f2, #0d8ddb); }
.instagram { background: linear-gradient(to right, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.pinterest { background: #e60023; }
.github { background: #171515; }

.labels-box .label-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.labels-box .section-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #111111;
    margin-bottom: 0.5rem;
}
.label-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.75rem;
}
.label-info {
    font-size: 0.85rem;
}
.label-info strong {
    display: block;
}
/* Latest Track Section */
.trackSection {
    width: 100%;
    padding: 0rem 1rem;
}

.trackSection h2 {
    text-align: left;
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: #111;
}

.tracks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.track-card {
    display: flex;
    align-items: center;
    background: #181818; /* Premium dark look like Spotify */
    border-radius: 10px;
    padding: 12px 18px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: background 0.3s ease, transform 0.2s ease;
}

.track-card:hover {
    background: #282828;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.track-cover {
    width: 55px;
    height: 55px;
    border-radius: 6px;
    margin-bottom: 0;
    margin-right: 18px;
    object-fit: cover;
    flex-shrink: 0;
}

.track-info {
    flex-grow: 1;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.track-info h3 {
    font-size: 1.05rem;
    color: #fff;
    margin: 0 0 4px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.track-info p {
    font-size: 0.85rem;
    color: #b3b3b3;
    margin: 0;
}

.controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.play-btn {
    background: #ffa500; /* Light TV Africa brand orange */
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.play-btn:hover {
    transform: scale(1.08);
    background: #ffcc00;
}

.platforms {
    display: flex;
    gap: 12px;
}

.platforms a {
    color: #b3b3b3;
    font-size: 1.1rem;
    transition: color 0.2s ease;
}

.platforms a:hover {
    color: #fff;
}

/* Track Page Section */



/* THIRD SECTION */
.thirdSec{
    width: 100%;
    /* background-color: #eff2f5; */
    padding-top: 9%;
    padding-bottom: 5%;
}
.thirdArt{
    width: 100%;
    margin: auto;
}
.thirdDiv{
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.thirdDiv p{
    color: #777777;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 1.3%;
}
.thirdDiv h2{
    font-size: 45px;
    padding-bottom: 1.6%;
}
.thirdDiv span{
    color: #4d4d4d;
    font-size: 20px;
    padding-bottom: 8%;
}
/* THIRD SLIDE SECTION */
.thirdDiv1{
    width: 100%;
    margin: auto;
}
.slideContainer{
    width: 100%;
    overflow: hidden;
}
.slideWrapper{
    display: flex;
    flex-direction: column;
    transition: transform 0.6s ease-in-out;
}
.slide{
    flex: 0 0 100%;
    padding: 20px;
}
.slide-group{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}
.slide-card{
    flex: 1 1 calc(33.333% - 20px);
    background-color: #ffffff;
    border-left: 4px solid #2f4d70;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;  
    transition: transform 0.3s ease;
    /* position: relative; */
}
.slide-card:hover{
    transform: translateY(-5px);
}
.slideImg{
    width: 100%;
    height: 215px; 
    object-fit: cover;
    object-position: center;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}
.slideImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.3s ease;
}
.slide-card:hover .slideImg img{
    transform: scale(1.05);
}
.slide-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.slide-card:hover .overlay {
    opacity: 1;
}
.slide-cardInner{
    text-align: center;
    padding: 15px;
}
.slide-card h3{
    color: #2f4d70;
    font-weight: bolder;
    text-transform: uppercase;
    margin: 0 0 10px;
    padding-top: 5%;
}
.slide-card p{
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    padding-bottom: 13%;
}
.RM{
    border-top: 2px solid grey;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.RM a{
    width: 100%;
    height: 100%;
    /* background-color: rgb(172, 7, 7); */
    color: rgb(0, 0, 0);   
    font-size: 18px;
    font-weight: bold;
    padding: 20px 0px;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
    z-index: 0;
}
.RM a:hover{
    color: #fff;
}
.RM a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #ef4444;
    z-index: -1;
    transition: width 0.4s ease;
}
.slide-card:hover .RM a::before {
    width: 100%;
}
.GetInT{
    text-align: center;
    border-top: 1.5px solid grey;
    padding-top: 70px;
    margin-top: 60px;
}
.GetInT span{
    font-size: 22px;
    font-weight: bold;
}
.GetInT span a{
    color: red;
    text-decoration: underline;
}
.GetInT span a:hover{
    color: #2f4d70;
    transition: color 0.3s ease;
}

/* Profile Edit Section */
.profileContainer {
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 3rem;
    margin-top: 7rem;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.profileContainer form {
    flex: 1 1 400px;
    border: 1.5px solid black;
    padding: 20px;
    border-radius: 8px;
}
.profileContainer h1 {
    text-align: center;
    margin-bottom: 30px;
}
.profileContainer label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
}
.profileContainer input[type="text"],
.profileContainer input[type="email"],
.profileContainer input[type="file"] {
    width: 100%;
    padding: 20px 10px;
    margin-top: 6px;
    border-radius: 5px;
    border: 1px solid #2a2a2a;
    background: #ffffff00;
    color: #000000;
    font-size: 1rem;
}
.profileContainer button {
    margin-top: 25px;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.profileContainer .save-btn {
    background-color: #1db954;
    color: white;
    margin-right: 10px;
}
.profileContainer .save-btn:hover {
    background-color: #17a44f;
}
.profileContainer .reset-btn {
    background-color: #555;
    color: white;
}
.profileContainer .reset-btn:hover {
    background-color: #333;
}
/* Profile Preview Styles */
.profileContainer .preview {
    flex: 1 1 350px;
    background: #ffffff;
    border: 1.5px solid black;
    color: #000000;
    padding: 20px;
    border-radius: 8px;
}
.profileContainer .preview h2 {
    margin-bottom: 20px;
    text-align: center;
}
.profileContainer .preview-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #2a2a2a;
    margin: 0 auto 20px;
    object-fit: cover;
    display: block;
    border: 2px solid #1db954;
}
.profileContainer .preview-item {
    margin-bottom: 15px;
}
.profileContainer .preview-label {
    font-weight: 600;
    color: #1db954;
    margin-bottom: 4px;
}
.profileContainer .no-image-text {
    text-align: center;
    line-height: 150px;
    color: #666;
    font-style: italic;
}


/* GALLERY SECTION */
.Galbackground{
    width: 100%;
    color: #ffffff;
    background-image: url('../images/AWARD PICTURES/EVA_8091.jpg'); /* Replace with your actual path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top top;
}
.GalbackgroundOverlay{
    width: 100%;
    padding-bottom: 10px;
    background: linear-gradient(135deg, #011d54 0%, #230f85 50%rgb(9, 34, 124)7c 100%);
    /* opacity: 0.9; */
}
.Galmain{
    width: 100%;
    padding-top: 12%;
    padding-bottom: 8%;
}
.GalSection1Div{
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 1;
    z-index: 10;
}
.GalSection1Div h1{
    font-family: Rajdhani, sans-serif;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 4.3rem;
    text-align: left;
    text-transform: capitalize;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); */
    margin-bottom: 1.4rem;
}
.GalSection1Div span p{
    width: 100%;
    margin: auto;
    font-size: 1.6rem;
    color: #fff;
}
.gallery-section {
    padding: 30px;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.gallery-section .filter-buttons {
    background-color: transparent;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-section .filter-buttons button {
    padding: 10px 25px;
    border: 2px solid #ddd;
    background: transparent;
    color: #333;
    cursor: pointer;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gallery-section .filter-buttons button.active,
.gallery-section .filter-buttons button:hover {
    background: #ffa500;
    border-color: #ffa500;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.gallery-section .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-section .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #111;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-section .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-section .gallery-item img,
.gallery-section .gallery-item video {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.gallery-section .gallery-item:hover img,
.gallery-section .gallery-item:hover video {
    transform: scale(1.08);
}

.gallery-section .media-type {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 165, 0, 0.9);
    color: #fff;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.gallery-section .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
    color: #fff;
    width: 100%;
    padding: 30px 20px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 1;
    box-sizing: border-box;
}

.gallery-section .gallery-item:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-section .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    color: #ffa500;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    z-index: 2;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.gallery-section .gallery-item.video:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery-section .creative-numbers {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-section .creative-numbers div {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.gallery-section .creative-numbers strong {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    display: block;
    color: #ffa500;
    margin-bottom: 5px;
}

.gallery-section .creative-numbers span {
    font-family: 'Inter', sans-serif;
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* STARAWARD & NOMINATION PLATFORM DESIGN SYSTEM */
.award-page-main {
    position: relative;
    overflow: hidden;
    background-color: #090b17;
    min-height: 100vh;
}

.award-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.award-bg-orb.orb-1 {
    width: 600px;
    height: 600px;
    top: 5%;
    left: -150px;
    background: radial-gradient(circle, #23287C 0%, rgba(35, 40, 124, 0) 70%);
}

.award-bg-orb.orb-2 {
    width: 650px;
    height: 650px;
    top: 45%;
    right: -180px;
    background: radial-gradient(circle, #86DAF4 0%, rgba(134, 218, 244, 0) 70%);
}

.Strbackground {
    width: 100%;
    color: #ffffff;
    background-size: cover;
    background-position: center;
    position: relative;
}

.StrbackgroundOverlay {
    width: 100%;
    background: linear-gradient(180deg, rgba(9, 11, 23, 0.85) 0%, rgba(9, 11, 23, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 100px 0 60px;
}

.StrSection1Div {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.award-back-link {
    color: #86DAF4 !important;
    text-decoration: none !important;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.award-back-link:hover {
    color: #ffffff !important;
    transform: translateX(-4px);
}

.award-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.award-hero-title {
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #ffffff 0%, #F59E0B 50%, #86DAF4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.StrSection1DivContent p {
    font-size: 1.15rem;
    color: #cbd5e1;
    max-width: 700px;
}

.award-wrapper-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 80px;
    position: relative;
    z-index: 1;
}

.starawardSec {
    width: 100%;
    padding: 40px 0 60px;
}

.starawardDiv {
    display: flex;
    gap: 35px;
    align-items: stretch;
}

@media (max-width: 992px) {
    .starawardDiv {
        flex-direction: column;
    }
}

.Abtstaraward {
    flex: 1;
    background: rgba(18, 21, 38, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 45px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.award-section-badge {
    color: #86DAF4;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.Abtstaraward h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.Abtstaraward .starawardDescr {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 28px;
}

.starawardBenefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
    color: #e2e8f0;
}

.benefit-item i {
    color: #f59e0b;
    font-size: 16px;
    flex-shrink: 0;
}

.starawardInfo {
    width: 440px;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .starawardInfo {
        width: 100%;
    }
}

.starawardInfoDiv {
    background: linear-gradient(135deg, rgba(35, 40, 124, 0.4) 0%, rgba(18, 21, 38, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card-header i {
    font-size: 22px;
    color: #f59e0b;
}

.info-card-header h3 {
    font-size: 1.4rem;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.starawardInfoContent {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.starawardInfoContent p {
    font-size: 0.98rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.starawardInfoContent p i {
    color: #86DAF4;
    font-size: 16px;
    width: 24px;
}

.starawardInfoContent p strong {
    color: #ffffff;
}

/* CATEGORIES SECTION */
.starawardNominations {
    width: 100%;
    padding-top: 40px;
}

.categories-header-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.categories-header-wrap h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 10px;
}

.categories-header-wrap .section-desc {
    font-size: 1.05rem;
    color: #94a3b8;
    max-width: 650px;
    margin: 0 auto;
}

.categories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.category-card {
    background: rgba(18, 21, 38, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.category-card:hover,
.category-card.is-active {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.category-header {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(35, 40, 124, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #86DAF4;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 16px;
    align-self: flex-start;
}

.category-header i {
    color: #f59e0b;
}

.category-card p {
    color: #cbd5e1;
    font-size: 0.94rem;
    line-height: 1.5;
    margin-bottom: 24px;
    flex: 1;
}

.nominate-btn {
    color: #86DAF4 !important;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.nominate-btn:hover {
    color: #ffffff !important;
    gap: 10px;
}

.nominate-btn.nomination-ended {
    color: #94a3b8 !important;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: default !important;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    letter-spacing: 0.3px;
}

.nominate-btn.nomination-ended i {
    color: #ef4444;
    font-size: 11px;
}

.nomination-closed-notice {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 14px;
    padding: 16px 22px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fca5a5;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.nomination-closed-notice i {
    font-size: 20px;
    color: #ef4444;
    flex-shrink: 0;
}

.nomination-ended-btn {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #cbd5e1 !important;
    box-shadow: none !important;
}

.nomination-ended-btn i {
    color: #ef4444;
}

.nomination-ended-btn:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
}

/* NOMINATION MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(9, 11, 23, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10005;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal.active {
    display: flex;
}

body.modal-open {
    overflow: hidden;
}

.modal-content {
    background: rgba(18, 21, 38, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 24px;
    padding: 35px 35px 30px;
    width: 100%;
    max-width: 640px;
    margin: auto;
    color: #ffffff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    position: relative;
    animation: fadeInModal 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.25);
    color: #ef4444;
    transform: rotate(90deg);
}

.modal-header-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.modal h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 6px;
}

.modal p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.modal label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #e2e8f0;
}

.modal label i {
    color: #86DAF4;
    font-size: 13px;
}

.modal input, 
.modal textarea, 
.modal select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(9, 11, 23, 0.7);
    color: #ffffff;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.modal select option {
    background: #090b17;
    color: #ffffff;
}

.modal input:focus, 
.modal textarea:focus, 
.modal select:focus {
    border-color: #86DAF4;
    box-shadow: 0 0 15px rgba(134, 218, 244, 0.25);
    background: rgba(9, 11, 23, 0.9);
}

.modal textarea {
    resize: vertical;
    min-height: 90px;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 10px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.btn-submit {
    background: linear-gradient(135deg, #23287C 0%, #3b42ab 50%, #86DAF4 100%);
    background-size: 200% auto;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(35, 40, 124, 0.5);
}

.btn-submit:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(134, 218, 244, 0.5);
}

@keyframes fadeInModal {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* FOOTER SECTION */
footer{
    width: 100%;
}
.ent-footer {
    width: 100%;
    background: linear-gradient(-135deg, #011d54, #011d54);
    /* background: linear-gradient(90deg, #005bea, #ff003c); */
    color: #eee;
    padding: 40px 20px 10px;
    font-family: 'Segoe UI', sans-serif;
}

.ent-footerArt{
    width: 98%;
    margin: auto;
}

.footer-about{
    margin-bottom: 4rem;
    line-height: 2;
}

.footer-contact p{
    line-height: 2;
}
.footer-about h3{
    font-size: 2.3rem;
}

.ent-footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.ent-footer h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.6rem;
}

.ent-footer p, .ent-footer a {
    font-size: 0.95rem;
    color: #bbb;
    text-decoration: none;
}

.ent-footer ul {
    list-style: none;
    padding: 0;
}

.ent-footer ul li {
    margin-bottom: 8px;
}

.footer-social .social-Icons a {
    color: #fff;
    margin-right: 10px;
    padding: 7px;
    background-color: #f3f1f1;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: color 0.3s;
}
.footer-social .social-Icons a i {
    color: #333;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-social .social-Icons a:hover {
    color: #007BFF;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 15px;
    font-size: 0.85rem;
    color: #888;
}
/* === PREMIUM COMPACT TRACK CARDS (HOME PAGE) === */
.latestSection .tracks {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.explore-btn {
    background-color: transparent;
    color: #C89B3C;
    border: 1px solid #C89B3C;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background-color: #C89B3C;
    color: #0B1F3A;
}

.premium-card {
    background-color: #0B1F3A;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 15px;
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    overflow: hidden;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(62, 166, 255, 0.3);
}

.new-badge {
    position: absolute;
    top: -5px;
    left: -5px;
    background: #C89B3C;
    color: #0B1F3A;
    font-size: 10px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 8px;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.premium-card .track-cover {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.premium-card:hover .track-cover {
    transform: scale(1.05);
}

.premium-card .track-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.premium-card .track-info h3 {
    margin: 0;
    font-size: 15px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
}

.premium-card .track-info p {
    margin: 4px 0 0 0;
    font-size: 13px;
    color: #3EA6FF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.premium-card .controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.premium-card .play-btn {
    background-color: #3EA6FF;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(62, 166, 255, 0.4);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.premium-card:hover .play-btn {
    transform: scale(1.1);
    background-color: #C89B3C;
    box-shadow: 0 4px 10px rgba(200, 155, 60, 0.4);
}

.premium-card .platforms {
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-card .platforms a {
    color: #888;
    font-size: 16px;
    transition: color 0.2s ease;
}

.premium-card .platforms a:hover {
    color: #fff;
}

.premium-card .track-duration {
    font-size: 12px;
    color: #888;
    margin-right: 5px;
}

/* ==========================================================================
   ULTRA-MODERN HOMEPAGE DESIGN SYSTEM
   ========================================================================== */

/* Main Award Section */
.awardSection {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.awardCard {
    background: linear-gradient(135deg, rgba(35, 40, 124, 0.45) 0%, rgba(18, 21, 38, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border-radius: 24px;
    padding: 50px 45px;
    display: flex;
    align-items: center;
    gap: 40px;
    overflow: hidden;
}

.awardContent {
    flex: 1;
}

.award-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.awardContent h2 {
    font-family: 'Outfit', 'Laila', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 14px;
    background: linear-gradient(90deg, #ffffff 0%, #86DAF4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.awarddes {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 24px;
}

.awardDetails {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.awardDetailItem {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
    color: #e2e8f0;
}

.awardDetailItem i {
    color: #f59e0b;
    font-size: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.awardInfo {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 28px;
}

.awardInfo strong {
    color: #86DAF4;
}

.award-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #23287C 0%, #3b42ab 50%, #86DAF4 100%);
    background-size: 200% auto;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(35, 40, 124, 0.5);
}

.award-primary-btn:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(134, 218, 244, 0.5);
}

.awardImage {
    width: 440px;
    flex-shrink: 0;
}

.award-img-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.award-img-container img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.award-img-container:hover img {
    transform: scale(1.05);
}

.award-img-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(9, 11, 23, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #f59e0b;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 992px) {
    .awardCard {
        flex-direction: column;
        padding: 35px 25px;
    }
    .awardImage {
        width: 100%;
    }
    .awardContent h2 {
        font-size: 2rem;
    }
}

/* Services Section */
.services {
    width: 100%;
    background: rgba(9, 11, 23, 0.95);
    padding: 70px 20px;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 15px;
}

.services-badge {
    color: #86DAF4;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 6px;
}

.services-header h2 {
    font-size: 2.3rem;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.view-all-services {
    color: #86DAF4;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.view-all-services:hover {
    gap: 12px;
    color: #ffffff;
}

.servicesSlider {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.serviceSlide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: flex-end;
}

.serviceSlide.active {
    opacity: 1;
    visibility: visible;
}

.servicesSlideContent {
    background: linear-gradient(180deg, rgba(9, 11, 23, 0) 0%, rgba(9, 11, 23, 0.85) 50%, rgba(9, 11, 23, 0.98) 100%);
    padding: 60px 45px 40px;
    width: 100%;
}

.service-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(35, 40, 124, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #86DAF4;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.servicesSlideContent h3 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 10px;
}

.servicesSlideContent p {
    font-size: 1.05rem;
    color: #cbd5e1;
    max-width: 580px;
    margin-bottom: 20px;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #86DAF4;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-cta:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.serviceArrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(9, 11, 23, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.serviceArrow:hover {
    background: #86DAF4;
    border-color: #86DAF4;
    color: #090b17;
    transform: translateY(-50%) scale(1.1);
}

.serviceArrow.prev { left: 20px; }
.serviceArrow.next { right: 20px; }

/* Latest News Section */
.hp-news-section {
    padding: 70px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.hp-news-container {
    background: rgba(18, 21, 38, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hp-news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 15px;
}

.hp-news-badge {
    color: #86DAF4;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 6px;
}

.hp-news-header h2 {
    font-size: 2.2rem;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.hp-news-viewall {
    color: #86DAF4;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.hp-news-viewall:hover {
    gap: 12px;
    color: #ffffff;
}

.hp-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.hp-news-card {
    background: rgba(9, 11, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.hp-news-card:hover {
    transform: translateY(-6px);
    border-color: rgba(134, 218, 244, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.hp-news-img-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.hp-news-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hp-news-card:hover .hp-news-img-wrap img {
    transform: scale(1.06);
}

.hp-news-cat {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #23287C;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.hp-news-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hp-news-date {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.hp-news-title {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 700;
}

.hp-news-title a {
    color: inherit;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.hp-news-title a:hover {
    color: #86DAF4;
}

.hp-news-excerpt {
    font-size: 0.92rem;
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.5;
    flex: 1;
}

.hp-news-link {
    color: #86DAF4;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.hp-news-link:hover {
    gap: 10px;
    color: #ffffff;
}

/* Gallery Section */
.gallery {
    padding: 70px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallerycontainer {
    width: 100%;
}

.gallery-badge {
    color: #86DAF4;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 6px;
}

.gallerysection-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.gallerysection-title h2 {
    font-size: 2.2rem;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.see-more {
    color: #86DAF4;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 15px;
}

.gallery-slider-container {
    position: relative;
}

.gallery-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 15px;
    scrollbar-width: thin;
    scrollbar-color: #23287C transparent;
}

.gallery-item {
    min-width: 280px;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 15px 12px;
    background: linear-gradient(to top, rgba(9, 11, 23, 0.9) 0%, transparent 100%);
}

.gallery-title {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(9, 11, 23, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
}

.gallery-nav-btn:hover {
    background: #86DAF4;
    color: #090b17;
}

#galleryPrev { left: -15px; }
#galleryNext { right: -15px; }

/* Latest Tracks & Sidebar Section */
.latestSection {
    padding: 70px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.latestContainer {
    display: flex;
    gap: 35px;
}

@media (max-width: 992px) {
    .latestContainer {
        flex-direction: column;
    }
}

.latestMain-content {
    flex: 1;
}

.trackBadge {
    color: #86DAF4;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 6px;
}

.trackSection h2 {
    font-size: 2.2rem;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    margin-bottom: 25px;
}

.tracks {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.track-card {
    background: rgba(18, 21, 38, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.track-card:hover {
    border-color: rgba(134, 218, 244, 0.3);
    transform: translateX(4px);
}

.track-cover-wrap {
    position: relative;
    width: 65px;
    height: 65px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.track-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.track-info {
    flex: 1;
}

.track-info h3 {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 4px;
}

.track-info p {
    font-size: 0.9rem;
    color: #94a3b8;
}

.play-btn {
    background: #86DAF4 !important;
    color: #090b17 !important;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(134, 218, 244, 0.5);
}

.platforms {
    display: flex;
    align-items: center;
    gap: 12px;
}

.platforms a {
    color: #94a3b8;
    font-size: 18px;
    transition: color 0.3s ease;
    text-decoration: none !important;
}

.platforms a:hover {
    color: #86DAF4;
}

/* Sidebar Social Box */
.asideSection {
    width: 340px;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .asideSection {
        width: 100%;
    }
}

.sidebar {
    background: rgba(18, 21, 38, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 10px;
}

.LatestTitle {
    font-size: 1.4rem;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.social-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(9, 11, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.social-item i {
    font-size: 18px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
}

.social-name {
    flex: 1;
}

.social-count {
    background: rgba(255, 255, 255, 0.1);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    color: #86DAF4;
}

.social-item.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: #1877F2;
}

.social-item.tiktok:hover {
    background: rgba(0, 242, 254, 0.2);
    border-color: #00f2fe;
}

.social-item.instagram:hover {
    background: rgba(225, 48, 108, 0.2);
    border-color: #E1306C;
}

.social-item.youtube:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #FF0000;
}

/* Ambient Background Orbs for Homepage */
.hp-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.hp-bg-orb-1 {
    width: 550px;
    height: 550px;
    top: 2%;
    left: -120px;
    background: radial-gradient(circle, #23287C 0%, rgba(35, 40, 124, 0) 70%);
}

.hp-bg-orb-2 {
    width: 600px;
    height: 600px;
    top: 38%;
    right: -150px;
    background: radial-gradient(circle, #86DAF4 0%, rgba(134, 218, 244, 0) 70%);
}

.hp-bg-orb-3 {
    width: 500px;
    height: 500px;
    bottom: 12%;
    left: -100px;
    background: radial-gradient(circle, #23287C 0%, rgba(35, 40, 124, 0) 70%);
}

/* ==========================================================================
   OFFICIAL TICKET PORTAL DESIGN SYSTEM (TICKETS.PHP)
   ========================================================================== */

.tickets-page-main {
    position: relative;
    overflow: hidden;
    background-color: #090b17;
    min-height: 100vh;
}

.tickets-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.tickets-bg-orb.orb-1 {
    width: 650px;
    height: 650px;
    top: 2%;
    left: -150px;
    background: radial-gradient(circle, #23287C 0%, rgba(35, 40, 124, 0) 70%);
}

.tickets-bg-orb.orb-2 {
    width: 700px;
    height: 700px;
    top: 40%;
    right: -180px;
    background: radial-gradient(circle, #86DAF4 0%, rgba(134, 218, 244, 0) 70%);
}

.tickets-hero {
    width: 100%;
    background: linear-gradient(180deg, rgba(9, 11, 23, 0.75) 0%, rgba(9, 11, 23, 0.98) 100%), url('../images/about/broadcasting.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
    position: relative;
}

.tickets-hero-overlay {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.tickets-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(134, 218, 244, 0.15);
    border: 1px solid rgba(134, 218, 244, 0.3);
    color: #86DAF4;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.tickets-hero-title {
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 14px;
    background: linear-gradient(90deg, #ffffff 0%, #86DAF4 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tickets-hero-sub {
    font-size: 1.15rem;
    color: #cbd5e1;
    max-width: 750px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.tickets-meta-bar {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    background: rgba(18, 21, 38, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 20px;
    margin-bottom: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.meta-item i {
    font-size: 22px;
    color: #86DAF4;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(134, 218, 244, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.meta-item div {
    display: flex;
    flex-direction: column;
}

.meta-item span {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 700;
    letter-spacing: 1px;
}

.meta-item strong {
    font-size: 1rem;
    color: #ffffff;
}

/* COUNTDOWN BOX */
.tickets-countdown-wrap {
    background: linear-gradient(135deg, rgba(35, 40, 124, 0.5) 0%, rgba(18, 21, 38, 0.9) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 20px 30px;
    border-radius: 20px;
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
}

.countdown-label {
    font-size: 12px;
    font-weight: 700;
    color: #f59e0b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-unit span {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.time-unit label {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    margin-top: 4px;
}

.time-colon {
    font-size: 1.8rem;
    font-weight: 800;
    color: #86DAF4;
    margin-bottom: 12px;
}

/* TICKET TIERS GRID */
.tickets-tiers-section {
    padding: 60px 0 80px;
    position: relative;
    z-index: 1;
}

.tickets-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.tickets-header-center {
    text-align: center;
    margin-bottom: 45px;
}

.section-tag {
    color: #86DAF4;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.tickets-header-center h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 10px;
}

.tickets-header-center p {
    font-size: 1.05rem;
    color: #94a3b8;
    max-width: 650px;
    margin: 0 auto;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    align-items: stretch;
}

.ticket-card-item {
    background: rgba(18, 21, 38, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.35s ease;
}

.ticket-card-item:hover {
    transform: translateY(-8px);
    border-color: rgba(134, 218, 244, 0.4);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.ticket-card-item.popular {
    border-color: rgba(134, 218, 244, 0.5);
    background: linear-gradient(180deg, rgba(35, 40, 124, 0.4) 0%, rgba(18, 21, 38, 0.9) 100%);
    box-shadow: 0 15px 40px rgba(35, 40, 124, 0.4);
}

.ticket-card-item.vvip {
    border-color: rgba(245, 158, 11, 0.5);
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.1) 0%, rgba(18, 21, 38, 0.95) 100%);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.2);
}

.ticket-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #cbd5e1;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popular-badge {
    background: rgba(134, 218, 244, 0.2);
    border-color: rgba(134, 218, 244, 0.5);
    color: #86DAF4;
}

.vvip-badge {
    background: rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.5);
    color: #f59e0b;
}

.gold-badge {
    background: rgba(234, 179, 8, 0.2);
    border-color: rgba(234, 179, 8, 0.5);
    color: #eab308;
}

.ticket-img-box {
    width: 100%;
    height: 190px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ticket-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ticket-card-item:hover .ticket-img-box img {
    transform: scale(1.06);
}

.ticket-card-body h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 12px;
}

.ticket-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 20px;
}

.ticket-price-wrap .currency {
    font-size: 1.3rem;
    font-weight: 700;
    color: #86DAF4;
}

.ticket-price-wrap .amount {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.ticket-price-wrap .per {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-left: 4px;
}

.ticket-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.ticket-features li {
    font-size: 0.92rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticket-features li i.fa-check-circle {
    color: #10b981;
    font-size: 14px;
}

.ticket-features li.disabled {
    color: #64748b;
    text-decoration: line-through;
}

.ticket-features li.disabled i {
    color: #64748b;
}

.buy-ticket-btn {
    width: 100%;
    padding: 13px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.buy-ticket-btn:hover {
    background: #86DAF4;
    border-color: #86DAF4;
    color: #090b17;
    box-shadow: 0 8px 20px rgba(134, 218, 244, 0.4);
}

.popular-btn {
    background: linear-gradient(135deg, #23287C 0%, #3b42ab 50%, #86DAF4 100%);
    background-size: 200% auto;
    border: none;
    box-shadow: 0 6px 20px rgba(35, 40, 124, 0.5);
}

.popular-btn:hover {
    background-position: right center;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(134, 218, 244, 0.5);
}

.vvip-btn {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #fbbf24 100%);
    border: none;
    color: #090b17;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.vvip-btn:hover {
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.6);
    transform: translateY(-2px);
}

/* INFO HIGHLIGHT BOXES */
.ticket-info-section {
    padding: 30px 0 80px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.info-box {
    background: rgba(18, 21, 38, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
}

.info-icon {
    font-size: 28px;
    color: #86DAF4;
    margin-bottom: 16px;
}

.info-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.info-box p {
    font-size: 0.92rem;
    color: #cbd5e1;
    line-height: 1.5;
}

/* CHECKOUT & VOUCHER MODALS */
.ticket-modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(9, 11, 23, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10005;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.ticket-modal-backdrop.active {
    display: flex;
}

.ticket-modal-card {
    background: rgba(18, 21, 38, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(134, 218, 244, 0.3);
    border-radius: 24px;
    padding: 35px 35px 30px;
    width: 100%;
    max-width: 620px;
    margin: auto;
    color: #ffffff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    position: relative;
    animation: ticketModalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: rgba(239, 68, 68, 0.25);
    color: #ef4444;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-header-icon {
    font-size: 32px;
    color: #86DAF4;
    margin-bottom: 8px;
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 4px;
}

.modal-header p {
    font-size: 0.92rem;
    color: #cbd5e1;
}

.selected-ticket-summary {
    background: rgba(9, 11, 23, 0.7);
    border: 1px solid rgba(134, 218, 244, 0.2);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.summary-label {
    font-size: 10px;
    font-weight: 700;
    color: #86DAF4;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 2px;
}

.selected-ticket-summary h4 {
    font-size: 1.15rem;
    color: #ffffff;
    margin: 0;
}

.total-price-box {
    background: rgba(134, 218, 244, 0.1);
    border: 1px solid rgba(134, 218, 244, 0.3);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.total-price-box span {
    font-size: 11px;
    font-weight: 700;
    color: #cbd5e1;
    letter-spacing: 1px;
}

.total-price-box strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    color: #86DAF4;
}

.submit-booking-btn {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #23287C 0%, #3b42ab 50%, #86DAF4 100%);
    background-size: 200% auto;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(35, 40, 124, 0.5);
}

.submit-booking-btn:hover {
    background-position: right center;
    box-shadow: 0 10px 25px rgba(134, 218, 244, 0.5);
    transform: translateY(-2px);
}

/* VOUCHER MODAL STYLES */
.success-card {
    border-color: rgba(16, 185, 129, 0.4);
}

.voucher-header {
    text-align: center;
    margin-bottom: 20px;
}

.voucher-icon {
    font-size: 40px;
    color: #10b981;
    margin-bottom: 8px;
}

.voucher-header h2 {
    font-size: 1.7rem;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 4px;
}

.voucher-header p {
    font-size: 0.92rem;
    color: #cbd5e1;
}

.digital-voucher {
    background: rgba(9, 11, 23, 0.85);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 24px;
}

.voucher-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.v-label {
    font-size: 10px;
    color: #86DAF4;
    font-weight: 700;
    letter-spacing: 1px;
}

.v-code {
    font-family: 'Outfit', monospace;
    font-size: 1.4rem;
    color: #ffffff;
    letter-spacing: 1.5px;
    margin: 2px 0 0;
}

.v-qr {
    font-size: 42px;
    color: #86DAF4;
}

.voucher-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.voucher-details-grid div {
    display: flex;
    flex-direction: column;
}

.voucher-details-grid span {
    font-size: 11px;
    color: #94a3b8;
}

.bank-instructions {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 14px;
    padding: 16px;
}

.bank-instructions h4 {
    color: #f59e0b;
    font-size: 0.95rem;
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bank-instructions p {
    font-size: 0.88rem;
    color: #cbd5e1;
    margin-bottom: 10px;
}

.bank-details-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    font-size: 0.88rem;
    color: #ffffff;
}

.voucher-actions {
    display: flex;
    gap: 12px;
}

.btn-print {
    flex: 1;
    padding: 12px;
    border-radius: 25px;
    border: none;
    background: #86DAF4;
    color: #090b17;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-close-voucher {
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

@keyframes ticketModalIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ==========================================================================
   OFFICIAL CONTACT PAGE DESIGN SYSTEM (CONTACT.PHP)
   ========================================================================== */

.contact-page-main {
    position: relative;
    overflow: hidden;
    background-color: #090b17;
    min-height: 100vh;
}

.contact-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.contact-bg-orb.orb-1 {
    width: 600px;
    height: 600px;
    top: 5%;
    left: -140px;
    background: radial-gradient(circle, #23287C 0%, rgba(35, 40, 124, 0) 70%);
}

.contact-bg-orb.orb-2 {
    width: 650px;
    height: 650px;
    top: 45%;
    right: -160px;
    background: radial-gradient(circle, #86DAF4 0%, rgba(134, 218, 244, 0) 70%);
}

.contact-hero {
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact-hero-overlay {
    width: 100%;
    background: linear-gradient(180deg, rgba(9, 11, 23, 0.8) 0%, rgba(9, 11, 23, 0.98) 100%);
    backdrop-filter: blur(10px);
    padding: 120px 0 60px;
}

.contact-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-back-link {
    color: #86DAF4 !important;
    text-decoration: none !important;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-back-link:hover {
    color: #ffffff !important;
    transform: translateX(-4px);
}

.contact-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(134, 218, 244, 0.15);
    border: 1px solid rgba(134, 218, 244, 0.3);
    color: #86DAF4;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.contact-hero-title {
    font-family: 'Outfit', 'Poppins', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 14px;
    background: linear-gradient(90deg, #ffffff 0%, #86DAF4 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-hero-sub {
    font-size: 1.15rem;
    color: #cbd5e1;
    max-width: 700px;
    line-height: 1.6;
}

.contact-wrapper-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 80px;
    position: relative;
    z-index: 1;
}

/* TOP 3 HIGHLIGHT CARDS */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: -30px;
    margin-bottom: 60px;
}

.contact-card {
    background: rgba(18, 21, 38, 0.88);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
    transition: all 0.35s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(134, 218, 244, 0.4);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.7);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(134, 218, 244, 0.12);
    border: 1px solid rgba(134, 218, 244, 0.3);
    color: #86DAF4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 24px;
    flex: 1;
}

.contact-card-links, .contact-card-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-link {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.card-link i {
    color: #86DAF4;
    font-size: 16px;
}

.card-link:hover {
    color: #86DAF4 !important;
    transform: translateX(4px);
}

.whatsapp-link i {
    color: #25D366;
}

.contact-card-info span {
    font-size: 0.92rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card-info span i {
    color: #f59e0b;
    font-size: 16px;
}

/* MAIN FORM SECTION */
.contact-form-section {
    margin-bottom: 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 35px;
    align-items: stretch;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form-box {
    background: rgba(18, 21, 38, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 45px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.form-box-header {
    margin-bottom: 30px;
}

.badge-tag {
    color: #86DAF4;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 6px;
}

.form-box-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 8px;
}

.form-box-header p {
    font-size: 1rem;
    color: #cbd5e1;
}

.user-autofill-badge {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 12px 18px;
    border-radius: 14px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.login-notice-badge {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
    padding: 12px 18px;
    border-radius: 14px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-custom {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-custom label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group-custom label i {
    color: #86DAF4;
    font-size: 13px;
}

.form-group-custom input,
.form-group-custom select,
.form-group-custom textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(9, 11, 23, 0.7);
    color: #ffffff;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group-custom select option {
    background: #090b17;
    color: #ffffff;
}

.form-group-custom input:focus,
.form-group-custom select:focus,
.form-group-custom textarea:focus {
    border-color: #86DAF4;
    box-shadow: 0 0 18px rgba(134, 218, 244, 0.25);
    background: rgba(9, 11, 23, 0.9);
}

.form-group-custom textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #23287C 0%, #3b42ab 50%, #86DAF4 100%);
    background-size: 200% auto;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(35, 40, 124, 0.5);
    margin-top: 10px;
}

.contact-submit-btn:hover {
    background-position: right center;
    box-shadow: 0 10px 25px rgba(134, 218, 244, 0.5);
    transform: translateY(-2px);
}

/* RIGHT COLUMN SIDEBAR */
.contact-sidebar-box {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-contact-card {
    background: rgba(18, 21, 38, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 35px 30px;
}

.why-contact-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.why-list li i {
    color: #10b981;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.why-list li strong {
    color: #ffffff;
    font-size: 0.98rem;
    display: block;
    margin-bottom: 2px;
}

.why-list li p {
    color: #cbd5e1;
    font-size: 0.88rem;
    line-height: 1.45;
    margin: 0;
}

.whatsapp-banner-card {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(18, 21, 38, 0.95) 100%);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 24px;
    padding: 30px 24px;
    text-align: center;
}

.wa-banner-icon {
    font-size: 40px;
    color: #25D366;
    margin-bottom: 12px;
}

.whatsapp-banner-card h4 {
    font-size: 1.3rem;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-bottom: 6px;
}

.whatsapp-banner-card p {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.wa-chat-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    border-radius: 25px;
    background: #25D366;
    color: #090b17 !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.wa-chat-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

/* FAQ ACCORDION SECTION */
.contact-faq-section {
    padding-top: 40px;
}

.faq-header-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header-wrap h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 8px;
}

.faq-header-wrap p {
    font-size: 1.05rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.faq-accordion-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-accordion-item {
    background: rgba(18, 21, 38, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item.active {
    border-color: rgba(134, 218, 244, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.faq-accordion-header {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all 0.3s ease;
}

.faq-accordion-header span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-accordion-header span i {
    color: #86DAF4;
    font-size: 18px;
}

.faq-icon {
    color: #94a3b8;
    transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-icon {
    transform: rotate(180deg);
    color: #86DAF4;
}

.faq-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-accordion-item.active .faq-accordion-body {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-accordion-body p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   OFFICIAL USER PROFILE PAGE DESIGN SYSTEM (PROFILE.PHP)
   ========================================================================== */

.profile-page-main {
    position: relative;
    overflow: hidden;
    background-color: #090b17;
    min-height: 100vh;
}

.profile-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.profile-bg-orb.orb-1 {
    width: 650px;
    height: 650px;
    top: 2%;
    left: -150px;
    background: radial-gradient(circle, #23287C 0%, rgba(35, 40, 124, 0) 70%);
}

.profile-bg-orb.orb-2 {
    width: 700px;
    height: 700px;
    top: 50%;
    right: -180px;
    background: radial-gradient(circle, #86DAF4 0%, rgba(134, 218, 244, 0) 70%);
}

/* GUEST UNATHENTICATED HERO */
.profile-hero-guest {
    max-width: 600px;
    margin: 120px auto 100px;
    padding: 0 24px;
}

.profile-guest-card {
    background: rgba(18, 21, 38, 0.9);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.guest-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.profile-guest-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 10px;
}

.profile-guest-card p {
    color: #cbd5e1;
    font-size: 1rem;
    margin-bottom: 30px;
}

.guest-btn-wrap {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.profile-btn-primary {
    padding: 12px 26px;
    border-radius: 25px;
    background: linear-gradient(135deg, #23287C 0%, #86DAF4 100%);
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.profile-btn-secondary {
    padding: 12px 26px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.profile-btn-primary:hover, .profile-btn-secondary:hover {
    transform: translateY(-2px);
}

/* LOGGED IN PROFILE HERO BANNER */
.profile-hero-banner {
    padding: 120px 0 40px;
}

.profile-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.profile-back-link {
    color: #86DAF4 !important;
    text-decoration: none !important;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.profile-back-link:hover {
    color: #ffffff !important;
    transform: translateX(-4px);
}

.profile-header-card {
    background: rgba(18, 21, 38, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 35px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .profile-header-card {
        flex-direction: column;
        text-align: center;
    }
}

.profile-avatar-wrap {
    position: relative;
    width: 110px;
    height: 110px;
    flex-shrink: 0;
}

.profile-avatar-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #86DAF4;
    box-shadow: 0 0 25px rgba(134, 218, 244, 0.4);
}

.profile-status-dot {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #10b981;
    border: 3px solid #090b17;
}

.profile-badge-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.user-role-badge {
    background: rgba(134, 218, 244, 0.15);
    border: 1px solid rgba(134, 218, 244, 0.3);
    color: #86DAF4;
    padding: 4px 12px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.user-username-tag {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 600;
}

.user-fullname {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 4px;
}

.user-email-text {
    color: #cbd5e1;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-email-text i {
    color: #86DAF4;
}

/* MAIN PROFILE GRID */
.profile-wrapper-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 80px;
    position: relative;
    z-index: 1;
}

.profile-grid-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 35px;
    align-items: start;
}

@media (max-width: 992px) {
    .profile-grid-layout {
        grid-template-columns: 1fr;
    }
}

.profile-form-box {
    background: rgba(18, 21, 38, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 45px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.avatar-upload-group {
    margin-bottom: 25px;
}

.avatar-upload-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
    display: block;
    margin-bottom: 10px;
}

.avatar-upload-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(9, 11, 23, 0.6);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
}

.avatar-upload-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #86DAF4;
    flex-shrink: 0;
}

.avatar-upload-controls {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.avatar-upload-controls input[type="file"] {
    display: none;
}

.upload-file-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(134, 218, 244, 0.15);
    border: 1px solid rgba(134, 218, 244, 0.3);
    color: #86DAF4 !important;
    padding: 8px 18px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.upload-file-btn:hover {
    background: #86DAF4;
    color: #090b17 !important;
}

.upload-hint {
    font-size: 12px;
    color: #94a3b8;
}

.modern-profile-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .form-row-dual {
        grid-template-columns: 1fr;
    }
}

.profile-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-input-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-input-group label i {
    color: #86DAF4;
    font-size: 13px;
}

.profile-input-group input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(9, 11, 23, 0.7);
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.profile-input-group input[readonly] {
    background: rgba(255, 255, 255, 0.04);
    color: #94a3b8;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.08);
}

.profile-input-group input:focus:not([readonly]) {
    border-color: #86DAF4;
    box-shadow: 0 0 18px rgba(134, 218, 244, 0.25);
    background: rgba(9, 11, 23, 0.9);
}

.profile-btn-row {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.save-profile-btn {
    flex: 1;
    padding: 14px 24px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #23287C 0%, #3b42ab 50%, #86DAF4 100%);
    background-size: 200% auto;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(35, 40, 124, 0.5);
}

.save-profile-btn:hover {
    background-position: right center;
    box-shadow: 0 10px 25px rgba(134, 218, 244, 0.5);
    transform: translateY(-2px);
}

.reset-profile-btn {
    padding: 14px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.reset-profile-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* RIGHT COLUMN PREVIEW */
.preview-card-sticky {
    background: rgba(18, 21, 38, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 35px 30px;
    position: sticky;
    top: 100px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.preview-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 14px;
}

.preview-card-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-pill {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.preview-avatar-center {
    text-align: center;
    margin-bottom: 25px;
}

.preview-img-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #86DAF4;
    box-shadow: 0 0 20px rgba(134, 218, 244, 0.3);
    margin-bottom: 12px;
}

.preview-avatar-center h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin: 0 0 4px;
}

.user-handle-tag {
    color: #86DAF4;
    font-size: 13px;
    font-weight: 600;
}

.preview-details-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: rgba(9, 11, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 25px;
}

.preview-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.detail-label {
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-val {
    color: #ffffff;
    font-weight: 600;
    word-break: break-word;
    max-width: 180px;
    text-align: right;
}

.active-status {
    color: #10b981;
}

.profile-shortcuts-box h4 {
    font-size: 1.05rem;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 14px;
}

.shortcut-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.shortcut-link-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 14px;
    text-align: center;
    color: #cbd5e1 !important;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.shortcut-link-item i {
    font-size: 20px;
    color: #86DAF4;
}

.shortcut-link-item span {
    font-size: 12px;
    font-weight: 600;
}

.shortcut-link-item:hover {
    background: rgba(134, 218, 244, 0.1);
    border-color: rgba(134, 218, 244, 0.3);
    color: #ffffff !important;
    transform: translateY(-2px);
}
