@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap");

:root {
  --gradient-top: #171A00;
  --gradient-bottom: #000000;
  --card-bg: #2E2E2E;
  --input-bg: #222222;
  --text-color: #FFFFFF;
  --muted: #A1A1A1;
  --accent: #CEF000;
  --divider: #3C3C3C;
}

/* ===== GENERAL ===== */

body.login-body {
  margin: 0;
  background: linear-gradient(180deg, var(--gradient-top) 0%, var(--gradient-bottom) 100%);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  display: block;
  overflow-y: auto;
  position: relative;
}

/* Add subtle texture/animation to background */
body.login-body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(206, 240, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(206, 240, 0, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* keep the gradient filling the viewport and prevent scroll gaps */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  height: auto;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* card stays centered, then we nudge it down visually */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.login-card {
  transform: translateY(0);
  margin-top: 0;
  box-sizing: border-box;
}

/* ===== LOGO ===== */
.logo-container {
  position: absolute;
  top: 50px;
  left: 60px;
  z-index: 10;
  transition: transform 0.3s ease;
}

.logo-container:hover {
  transform: scale(1.02);
}

.logo {
  width: 170px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  max-width: 100%;
}

/* ===== CARD ===== */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.login-card {
  background: rgba(46, 46, 46, 0.85);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  width: 440px;
  padding: 56px 48px;
  box-shadow: 
    0 8px 32px 0 rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 20px 60px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-card:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 40px 0 rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 24px 70px rgba(0, 0, 0, 0.8);
}

/* ===== HEADER ===== */
.login-header {
  margin-bottom: 36px;
  text-align: left;
}
.sign-in-label {
  font-family: Inter;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-style: italic;
  margin: 0;
  font-weight: 300;
  text-transform: uppercase;
}
.login-title {
  font-family: Inter;
  color: var(--text-color);
  font-weight: 900;
  font-size: 28px;
  line-height: 1.2;
  margin-top: 8px;
  letter-spacing: -0.5px;
}

/* ===== SOCIAL BUTTONS ===== */
.social-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 25px;
}
.social-btn {
  flex: 1;
  background: #222222;
  border: none;
  border-radius: 6px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.social-btn img {
  width: 18px;
  height: auto;
  filter: brightness(0) invert(1);
}
.social-btn:hover {
  background: #363636;
}

/* ===== DIVIDER ===== */
.divider-img{
  width: 100%;
  margin-bottom: 20px;
}

.divider {
  position: relative;
  text-align: center;
  font-size: 12px;
  color: #7a7a7a;
  margin: 18px 0 25px;
}
.divider:before,
.divider:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: var(--divider);
}
.divider:before {
  left: 0;
}
.divider:after {
  right: 0;
}

/* ===== INPUT FIELDS ===== */
.input-field {
  position: relative;
  margin-bottom: 20px;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 18px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  z-index: 2;
  pointer-events: none;
}

.input-field:focus-within .input-icon {
  opacity: 0.9;
}

.input-field input {
  width: 100%;
  height: 50px;
  background: rgba(34, 34, 34, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text-color);
  font-size: 15px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  padding-left: 48px;
  padding-right: 48px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

.input-field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.input-field input:focus {
  background: rgba(34, 34, 34, 0.95);
  border: 0.5px solid var(--accent);
  box-shadow: 
    0 0 0 3px rgba(206, 240, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.input-field input:hover:not(:focus) {
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(34, 34, 34, 0.85);
}

/* ===== GENDER DROPDOWN ===== */
.input-field select {
  width: 100%;
  height: 42px;
  background: var(--input-bg) url("../images/icons/drop_down_arrow.svg") no-repeat right 14px center;
  background-size: 14px;
  border: none;
  border-radius: 6px;
  color: var(--text-color);
  font-size: 14px;
  padding-left: 44px;
  padding-right: 40px;
  appearance: none;
  outline: none;
  cursor: pointer;
}

/* Remove default arrow on Windows/Edge/IE */
.input-field select::-ms-expand {
  display: none;
}

/* Ensure arrow color consistency */
.input-field select option {
  background: var(--card-bg);
  color: var(--text-color);
}


/* Default look once a real value is chosen */
.select {
  font: inherit;
  font-weight: 500;              /* your normal weight */
  color: var(--text, #111);
}

/* Placeholder state (no value chosen yet) */
.select:required:invalid {
  font-weight: 250;              /* weight for the placeholder */
  color: var(--muted);
  opacity: 1;                    /* avoid faded look in Firefox */
}

/* Optional: keep the placeholder from appearing in the dropdown list */
.select option[value=""][disabled],
.select option[value=""][hidden] {
  display: none;
}

/* Optional: ensure real options render in normal color in the list */
.select option:not([value=""]) {
  color: var(--muted);
}


.input-field input::placeholder {
  font-weight: 200;      
  /* color: var(--muted); */
  opacity: 1;               
}

.toggle-password {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 2;
}

.toggle-password:hover {
  background: rgba(255, 255, 255, 0.1);
}

.toggle-password:active {
  transform: translateY(-50%) scale(0.95);
}

.toggle-password img {
  height: 18px;
  width: 18px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.toggle-password:hover img {
  opacity: 1;
}

/* ===== RECOVER PASSWORD ===== */
.recover-container {
  text-align: right;
  margin-bottom: 28px;
}

.recover-link {
  color: var(--accent);
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-block;
}

.recover-link:hover {
  color: #d4f314;
  text-decoration: underline;
  transform: translateX(-2px);
}

/* ===== BUTTON ===== */
.btn-continue {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 12px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(206, 240, 0, 0.25);
}

.btn-continue::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-continue:hover {
  background: #d4f314;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(206, 240, 0, 0.35);
}

.btn-continue:hover::before {
  left: 100%;
}

.btn-continue:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(206, 240, 0, 0.3);
}

/* ===== REGISTER TEXT ===== */
.register-text {
  text-align: center;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 400;
}

.register-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
  margin-left: 4px;
}

.register-link:hover {
  color: #d4f314;
  text-decoration: underline;
  transform: translateX(2px);
}

#signupCard{
  margin-bottom: 7%;
  margin-top: 2%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .logo-container {
    position: relative;
    top: 0;
    left: 0;
    padding: 24px 20px;
    text-align: center;
  }
  
  .logo {
    width: 140px;
    height: auto;
  }
  
  .login-container {
    padding: 20px 16px;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  .login-card {
    width: 100%;
    max-width: 100%;
    padding: 36px 24px;
    margin: 0 auto;
    transform: none;
  }
  
  .login-title {
    font-size: 22px;
    line-height: 1.3;
  }
  
  .sign-in-label {
    font-size: 12px;
  }
  
  .input-field input {
    height: 48px;
    font-size: 16px; /* Prevents zoom on iOS */
    padding-left: 44px;
    padding-right: 44px;
  }
  
  .input-icon {
    left: 14px;
    height: 16px;
    width: 16px;
  }
  
  .toggle-password {
    right: 12px;
    padding: 6px;
  }
  
  .toggle-password img {
    height: 16px;
    width: 16px;
  }
  
  .btn-continue {
    height: 52px;
    font-size: 15px;
  }
  
  .recover-link {
    font-size: 12px;
  }
  
  .register-text {
    font-size: 13px;
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  .logo-container {
    padding: 20px 16px;
  }
  
  .logo {
    width: 120px;
  }
  
  .login-container {
    padding: 16px 12px;
    min-height: 100vh;
    align-items: center;
  }
  
  .login-card {
    padding: 32px 20px;
    border-radius: 16px;
    margin: 0 auto;
  }

  .login-title {
    font-size: 20px;
  }
  
  .sign-in-label {
    font-size: 11px;
  }

  .login-header {
    margin-bottom: 28px;
  }
  
  .input-field {
    margin-bottom: 18px;
  }
  
  .input-field input {
    height: 46px;
    padding-left: 40px;
    padding-right: 40px;
    }
  
  .input-icon {
    left: 12px;
    }
  
  .recover-container {
    margin-bottom: 24px;
  }
  
  .btn-continue {
    height: 50px;
    }

  #loginCard {
    margin: 0;
    }
  
  #signupCard {
    margin: 0;
    }
}



/* ===========================
   OTP CARD — scoped styles
   =========================== */
.otp-card{
  width: 560px;                    /* card width close to your design */
  padding: 56px 64px;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 32px 60px rgba(0,0,0,.55);
  margin: 0 auto;
  text-align: left;
}

/* Eyebrow */
.otp-card .otp-eyebrow{
  margin: 0 0 10px 0;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: .04em;
  font-style: italic;
  font-weight: 400;
}

/* Title */
.otp-card .otp-title{
  margin: 0 0 28px 0;
  color: var(--text-color);
  font-weight: 800;
  font-size: 28px;                 /* matches screenshot scale */
  line-height: 36px;
}

/* Instruction + email */
.otp-card .otp-instruction{
  margin: 0 0 22px 0;
  color: #A1A1A1;
  font-size: 14px;
}
.otp-card .otp-email{
  color: #fff;
  font-weight: 700;
  padding-left: 6px;
}

/* OTP inputs row */
.otp-card .otp-inputs{
  display: flex;
  gap: 24px;
  justify-content: flex-start;     /* left align like the mock */
  margin: 0 0 18px 0;
}

/* Boxes */
.otp-card .otp-box{
  width: 96px;
  height: 64px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background: #1F1F1F;             /* slightly deeper than input bg for contrast */
  color: #D8D8D8;
  font-weight: 800;
  font-size: 22px;
  text-align: center;
  outline: none;
  transition: border-color .15s, box-shadow .15s, color .15s;
}
.otp-card .otp-box:focus{
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(206,240,0,.12);
  color: #fff;
}
.otp-card .otp-box::-webkit-outer-spin-button,
.otp-card .otp-box::-webkit-inner-spin-button{ -webkit-appearance: none; margin:0; }
.otp-card .otp-box[type=number]{ -moz-appearance: textfield; }

/* Timer */
.otp-card .otp-timer{
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8B8B8B;
  font-size: 14px;
  margin: 8px 0 12px 0;
}
.otp-card .otp-clock{
  display: inline-block;
  color: #8B8B8B;
}

/* Resend */
.otp-card .otp-resend{
  color: #8B8B8B;
  font-size: 14px;
  margin-bottom: 28px;
  align-items: center;
}
.otp-card .otp-resend-link{
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}
.otp-card .otp-resend-link:hover{ text-decoration: underline; }

/* CTA */
.otp-card .otp-cta{
  display: block;
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #000;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  transition: filter .2s ease;
}
.otp-card .otp-cta:hover{ filter: brightness(.94); }



/* Responsive */
@media (max-width: 640px){
  .otp-card{ width: 92vw; padding: 40px 20px; }
  .otp-card .otp-inputs{ gap: 14px; }
  .otp-card .otp-box{ width: 66px; height: 56px; font-size: 20px; }
}














/* ============================================================
   RESET
============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Smooth scrolling for better UX */
html {
    scroll-behavior: smooth;
    background: radial-gradient(circle at top, #252500 0%, #050503 40%, #000000 100%);
    min-height: 100%;
    height: 100%;
}

html,
body {
    margin: 0;
    padding: 0;
}

/* Global font family - Inter for entire platform */
* {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: radial-gradient(circle at top, #252500 0%, #050503 40%, #000000 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: #ffffff;
}

/* ============================================================
   PAGE WRAPPER
============================================================ */
.page-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: transparent;
    padding-top: 110px; /* Space for fixed navbar (90px height + 20px top offset) */

}

.content {
    flex: 1;
    margin: 0 50px;
    padding: 32px 64px 24px;

}

/* Content wrapper mobile responsive */
@media (max-width: 1024px) {
    .page-wrap {
        padding-top: 100px; /* Space for fixed navbar (80px height + 20px top offset) */
    }
    
    .content {
        margin: 0 32px;
        padding: 28px 20px 20px;
    }
}

@media (max-width: 768px) {
    .page-wrap {
        padding-top: 82px; /* Space for fixed navbar (70px height + 12px top offset) */
    }
    
    .content {
        margin: 0 20px;
        padding: 24px 16px 16px;
    }
}

@media (max-width: 480px) {
    .page-wrap {
        padding-top: 76px; /* Space for fixed navbar (64px height + 12px top offset) */
    }
    
    .content {
        margin: 0 16px;
        padding: 20px 12px 12px;
    }
}

/* ============================================================
   DISCOVER SECTION
============================================================ */
.discover-section {
    margin-top: 16px;
}

.discover-header {
    margin-bottom: 0;
}

.discover-subtitle {
    color: rgba(255, 255, 255, 0.70);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
    line-height: 27px;
    text-transform: uppercase;
    margin: 0 0 0 0;
}

.discover-title {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 27px;
    margin: 0 0 16px 0;
}

/* Browse By Button */
.browse-by-button {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 27px;
    margin: 0 0 16px 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.browse-by-button:hover {
    opacity: 1;
    transform: translateX(4px);
}

.browse-by-button:hover .browse-by-text {
    color: #CEF000;
}

.browse-by-text {
    color: #FFF;
    transition: color 0.3s ease;
}

.browse-by-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #CEF000;
    transition: transform 0.3s ease, color 0.3s ease;
}

.browse-by-button:hover .browse-by-chevron {
    transform: translateX(4px);
    color: #CEF000;
}

.discover-card {
    position: relative;
    border-radius: 8px;
    padding: 28px 28px 16px 28px;
    display: flex;
    align-items: flex-end;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.discover-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    z-index: 1;
}

.discover-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.discover-card:hover::before {
    opacity: 1;
}

.discover-card:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.discover-label {
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.discover-card:hover .discover-label {
    transform: translateY(-2px);
}

/* Background Images */
.img-1 { background-image: url("../images/explore_bg_1.png"); }
.img-2 { background-image: url("../images/explore_bg_2.png"); }
.img-3 { background-image: url("../images/explore_bg_3.png"); }
.img-4 { background-image: url("../images/explore_bg_4.png"); }
.img-5 { background-image: url("../images/explore_bg_5.png"); }
.img-6 { background-image: url("../images/explore_bg_6.png"); }

/* Layout Grid */
.row-a {
    display: flex;
    gap: 16px;
}

.col-a {
    flex: 1 0 0;
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

.col-b {
    flex: 1 0 0;
    min-height: 460px;
}

.col-c {
    flex: 2 0 0;
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

.row-c-b {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Mobile layout: Top - Brand & Region, Bottom - Industry */
@media (max-width: 768px) {
    .row-a {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: 1fr auto !important;
        gap: 12px !important;
        flex-direction: unset !important;
    }
    
    /* Top row: Brand & Region side by side - square */
    .col-a {
        grid-column: 1 !important;
        grid-row: 1 !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: 1fr !important;
        gap: 0 !important;
        flex: unset !important;
        aspect-ratio: 1 / 1 !important;
    }
    
    /* Show only Brand in col-a */
    .row-a-a {
        /* BRAND - show */
        width: 100% !important;
        height: 100% !important;
        aspect-ratio: 1 / 1 !important;
    }
    
    /* Hide Product on mobile */
    .row-a-b {
        display: none !important;
    }
    
    /* Region next to Brand - same square size */
    .col-b {
        grid-column: 2 !important;
        grid-row: 1 !important;
        min-height: auto !important;
        flex: unset !important;
        aspect-ratio: 1 / 1 !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .col-b .discover-card {
        width: 100% !important;
        height: 100% !important;
        aspect-ratio: 1 / 1 !important;
    }
    
    /* Bottom: Industry only */
    .col-c {
        grid-column: 1 / -1 !important;
        grid-row: 2 !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: 1fr !important;
        gap: 0 !important;
        flex: unset !important;
    }
    
    /* Show Industry */
    .row-c-a {
        /* INDUSTRY - show */
        height: 100%;
    }
    
    /* Hide Agency & Medium on mobile */
    .row-c-b {
        display: none !important;
    }
    
    /* Ensure cards have proper height on mobile */
    .discover-card {
        min-height: 200px;
    }
    
    /* Ensure Brand and Region cards are square */
    .col-a .discover-card,
    .col-b .discover-card {
        aspect-ratio: 1 / 1 !important;
        width: 100% !important;
        height: 100% !important;
    }
}

/* ============================================================
   SUGGESTED KEYWORDS
============================================================ */
.suggested-keywords-container {
    position: sticky;
    /* top: 110px; */
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    margin-top: 32px;
    padding-top: 32px;
    padding-bottom: 8px;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth;
    box-sizing: border-box;
    
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.suggested-keywords-container::-webkit-scrollbar {
    display: none;
}

.suggested-keyword-tag {
    background: hsla(0, 0%, 13%, 1);
    border: 1px solid hsla(0, 0%, 17%, 1);
    border-radius: 32px;
    border-width: 1px;
    height: 35px;
    padding: 4px 16px;
    margin: 0 !important;
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    white-space: nowrap;
    opacity: 1;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    flex-basis: auto;
    min-width: fit-content;
    width: auto;
    box-sizing: border-box;
}

.suggested-keyword-tag:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(206, 240, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.suggested-keyword-tag:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Tablet */
@media (max-width: 1024px) {
    .row-a {
        flex-wrap: wrap;
    }
    .col-a,
    .col-b {
        flex: 1 0 calc(50% - 12px);
    }
    .col-c {
        flex: 1 0 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .discover-section {
        margin-bottom: 40px;
    }

    .discover-header {
        margin-bottom: 0;
    }
    
    .discover-title {
        margin-bottom: 24px;
    }

    .suggested-keywords-container {
        margin-top: 24px;
        padding-top: 24px;
        gap: 8px;
        padding-bottom: 8px;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .suggested-keyword-tag {
        font-size: 13px;
        height: 35px;
        padding: 4px 16px;
        flex-shrink: 0;
        flex-grow: 0;
        min-width: fit-content;
    }

    .discover-subtitle {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .discover-title {
        font-size: 22px;
        line-height: 24px;
    }
    
    .browse-by-button {
        font-size: 22px;
        line-height: 24px;
        gap: 6px;
    }
    
    .browse-by-chevron {
        width: 18px;
        height: 18px;
    }

    /* Mobile layout is handled by the earlier @media rule at line 972 */

    .discover-card {
        /* padding: 20px 20px 12px 20px; */
        /* min-height: 200px; */
    }

    .discover-label {
        font-size: 18px;
        letter-spacing: 0.5px;
    }
    
    .discover-search-input {
        color: rgba(255, 255, 255, 0.50) !important;
        /* text-align: center !important; */
        font-family: "Inter", sans-serif !important;
        font-size: 12px !important;
        font-style: normal !important;
        font-weight: 400 !important;
        line-height: 27px !important;
    }
}

@media (max-width: 480px) {
    .discover-header {
        margin-bottom: 0;
    }

    .discover-title {
        margin-bottom: 24px;
    }

    .discover-subtitle {
        font-size: 14px;
    }

    .discover-title {
        font-size: 22px;
        line-height: 22px;
    }
    
    .browse-by-button {
        font-size: 20px;
        line-height: 22px;
        gap: 6px;
    }
    
    .browse-by-chevron {
        width: 16px;
        height: 16px;
    }
    
    .discover-search-input {
        color: rgba(255, 255, 255, 0.50) !important;
        /* text-align: center !important; */
        font-family: "Inter", sans-serif !important;
        font-size: 12px !important;
        font-style: normal !important;
        font-weight: 400 !important;
        line-height: 27px !important;
    }

    /* Mobile layout is handled by the earlier @media rule at line 972 */
    
    .row-a {
        gap: 10px !important;
    }
    
    .col-a {
        gap: 0 !important;
    }
    
    .col-c {
        gap: 0 !important;
        min-height: 150px;


    }

    .discover-card {
        padding: 16px 16px 10px 16px;
        min-height: 150px;
    }

    .discover-label {
        color: #FFF;
        font-family: Inter;
        font-size: 24px;
        font-style: normal;
        font-weight: 900;
        line-height: 27px; /* 103.846% */    }
}

/* ============================================================
   CAMPAIGN SECTION (CAROUSEL)
============================================================ */

/* Full-width edge-to-edge */
.campaign-section {
    margin-top: 60px;
    margin-bottom: 0;
}

/* ============================================================
   TRENDING SHORTS SECTION
============================================================ */
.trending-shorts-section {
    margin-top: 60px;
    margin-bottom: 0;
    background: transparent;
    padding: 40px 0;
    border-radius: 0;
}

.trending-shorts-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    padding-top: 4px;
    margin-top: -4px;
    margin-left: 0;
    margin-right: calc(-50px - 24px);
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x proximity;
}

.trending-shorts-carousel::-webkit-scrollbar {
    display: none;
}

/* Reel Card (Vertical Video Thumbnail) */
.reel-card {
    width: 375px; /* Vertical aspect ratio - increased from 180px */
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    scroll-snap-align: start;
}

/* Reel cards in grid should be responsive */
.campaigns-grid.reel-grid .reel-card {
    width: 100%;
    max-width: 100%;
    flex-shrink: 1;
}

.reel-card:hover {
    transform: translateY(-4px);
}

.reel-thumb {
    width: 100%;
    aspect-ratio: 9 / 16; /* Vertical video aspect ratio */
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* Play count at bottom left with play icon */
.reel-views {
    position: absolute;
    bottom: 12px;
    left: 12px;
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 6px;
}

.reel-play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.reel-play-icon svg {
    width: 100%;
    height: 100%;
    color: currentColor;
}

.reel-views-text {
    line-height: 1;
}

/* Play button overlay (centered) */
.reel-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.9;
}

.reel-play-button:hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.reel-play-button svg {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.reel-card:hover .reel-play-button {
    opacity: 1;
}

/* Bookmark button at top right for reels */
.reel-card .bookmark-button {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.reel-card .bookmark-button:hover {
    background: rgba(0, 0, 0, 0.75);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.reel-card .bookmark-button:active {
    transform: scale(0.95);
}

.reel-card .bookmark-button svg {
    width: 18px;
    height: 18px;
    pointer-events: none;
    transition: all 0.2s ease;
}

.reel-card .bookmark-icon.outline {
    opacity: 1;
    color: #ffffff;
}

.reel-card .bookmark-icon.outline path {
    stroke: currentColor;
    fill: none;
}

.reel-card .bookmark-icon.filled {
    opacity: 0;
    position: absolute;
    color: #CEF000;
}

.reel-card .bookmark-icon.filled path {
    fill: currentColor;
    stroke: none;
}

.reel-card .bookmark-button.active {
    color: #CEF000;
}

.reel-card .bookmark-button.active .bookmark-icon.outline {
    opacity: 0;
}

.reel-card .bookmark-button.active .bookmark-icon.filled {
    opacity: 1;
    color: #CEF000;
}

.reel-card .bookmark-button.active .bookmark-icon.filled path {
    fill: #CEF000;
}

/* Responsive adjustments for trending shorts carousel */
@media (max-width: 1024px) {
    .trending-shorts-carousel {
        margin-left: 0;
        margin-right: calc(-50px - 24px);
        padding-left: 0;
        padding-right: 0;
        gap: 16px;
    }
    
    .trending-shorts-carousel .reel-card {
        width: 200px; /* Increased from 160px */
    }
}

@media (max-width: 768px) {
    .trending-shorts-section {
        padding: 32px 0;
        margin-top: 40px;
    }
    
    .trending-shorts-carousel {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        gap: 14px;
        padding-bottom: 16px;
    }
    
    .trending-shorts-carousel .reel-card {
        width: 180px; /* Increased from 140px */
    }
    
    .reel-views {
        font-size: 12px;
        bottom: 10px;
        left: 10px;
        padding: 3px 6px;
    }
    
    .reel-card .bookmark-button {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
    }
    
    .reel-card .bookmark-button svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .trending-shorts-section {
        padding: 24px 0;
        margin-top: 32px;
    }
    
    .trending-shorts-carousel {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        gap: 12px;
        padding-bottom: 12px;
    }
    
    .trending-shorts-carousel .reel-card {
        width: 160px; /* Increased from 120px */
    }
}

/* ============================================================
   LEARN SECTION
============================================================ */
.learn-section {
    margin-top: 60px;
    margin-bottom: 0;
    background: transparent;
    padding: 40px 0;
    border-radius: 0;
}

.learn-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    padding-top: 4px;
    margin-top: -4px;
    margin-left: 0;
    margin-right: calc(-50px - 24px);
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x proximity;
}

.learn-carousel::-webkit-scrollbar {
    display: none;
}

/* Learn Card */
.learn-card {
    width: 280px;
    min-width: 280px;
    position: relative;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.learn-card:hover {
    transform: translateY(-4px);
}

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

.learn-card-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: transform 0.5s ease, filter 0.3s ease;
    z-index: 0;
    display: block;
}

.learn-card:hover .learn-card-bg-image {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.learn-card-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 1;
}

.learn-card-category {
    position: absolute;
    top: 24px;
    left: 24px;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    z-index: 2;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.learn-card-title {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.learn-card-brief {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments for learn section */
@media (max-width: 1024px) {
    .learn-carousel {
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        padding-right: 0;
        gap: 16px;
        scroll-snap-type: x mandatory;
    }
    
    .learn-card {
        width: 240px;
        min-width: 240px;
        height: 240px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .learn-card-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .learn-section {
        padding: 32px 0;
        margin-top: 40px;
    }
    
    .learn-carousel {
        margin-left: 0;
        margin-right: 0;
        padding-left: 20px;
        padding-right: 20px;
        gap: 14px;
        padding-bottom: 16px;
        scroll-snap-type: x mandatory;
    }
    
    .learn-card {
        width: 220px;
        min-width: 220px;
        height: 220px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .learn-card-content {
        padding: 20px;
    }
    
    .learn-card-category {
        top: 20px;
        left: 20px;
        font-size: 11px;
    }
    
    .learn-card-title {
        font-size: 20px;
        line-height: 1.3;
    }
    
    .learn-card-brief {
        font-size: 13px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .learn-section {
        padding: 24px 0;
        margin-top: 32px;
    }
    
    .learn-carousel {
        margin-left: 0;
        margin-right: 0;
        padding-left: 16px;
        padding-right: 16px;
        gap: 12px;
        padding-bottom: 12px;
        scroll-snap-type: x mandatory;
    }
    
    .learn-card {
        width: 200px;
        min-width: 200px;
        height: 200px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .learn-card-content {
        padding: 16px;
    }
    
    .learn-card-category {
        top: 16px;
        left: 16px;
        font-size: 10px;
    }
    
    .learn-card-title {
        font-size: 18px;
        line-height: 1.3;
    }
    
    .learn-card-brief {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .learn-card {
        width: 240px;
        height: 200px;
    }
    
    .learn-card-content {
        padding: 16px;
    }
    
    .learn-card-category {
        top: 16px;
        left: 16px;
        font-size: 11px;
    }
    
    .learn-card-title {
        font-size: 18px;
    }
    
    .learn-card-brief {
        font-size: 12px;
    }
}

/* Campaign section mobile responsive */
@media (max-width: 1024px) {
    .campaign-section {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .campaign-section {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .campaign-section {
        margin-top: 32px;
    }
}

/* Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

/* Section header mobile responsive */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 16px;
    }

    .section-title {
        font-size: 18px;
}

.view-more-link {
        font-size: 13px;
        gap: 3px;
    }

    .view-more-icon {
        width: 14px;
        height: 14px;
        min-width: 14px;
        min-height: 14px;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 14px;
    }

    .section-title {
        font-size: 16px;
    }

    .view-more-link {
        font-size: 12px;
    }

    .view-more-icon {
        width: 12px;
        height: 12px;
        min-width: 12px;
        min-height: 12px;
    }
}

.view-more-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    font-size: 14px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    text-decoration: none;
    color: #ffffff;
    opacity: 0.8;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-wrap: nowrap;
}

.view-more-text {
    display: inline;
    line-height: 1;
    white-space: nowrap;
}

.view-more-icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

.view-more-icon path {
    stroke: currentColor;
    fill: none;
}

.view-more-link:hover {
    opacity: 1;
    color: #CEF000;
}

.view-more-link:hover .view-more-icon {
    transform: translateX(2px);
}

/* ============================================================
   REEL VIDEO PLAYER MODAL
============================================================ */
.reel-video-player {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.reel-video-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    cursor: pointer;
}

.reel-video-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.reel-video-container {
    position: relative;
    max-width: 400px;
    width: auto;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel-video-container video {
    width: 100%;
    max-width: 400px;
    height: auto;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    background: #000;
    object-fit: contain;
}

.reel-video-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.reel-video-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(206, 240, 0, 0.5);
    transform: scale(1.1);
}

.reel-video-close:active {
    transform: scale(0.95);
}

.reel-video-close svg {
    width: 24px;
    height: 24px;
}

/* Responsive adjustments for reel video player */
@media (max-width: 768px) {
    .reel-video-content {
        padding: 40px 16px;
    }
    
    .reel-video-container {
        max-width: 90%;
    }
    
    .reel-video-container video {
        max-width: 100%;
    }
    
    .reel-video-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }
    
    .reel-video-close svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .reel-video-content {
        padding: 20px 12px;
    }
    
    .reel-video-container {
        max-width: 95%;
    }
    
    .reel-video-container video {
        max-width: 100%;
    }
    
    .reel-video-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
    }
    
    .reel-video-close svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================================
   CAROUSEL CORE
============================================================ */
.campaign-carousel {
    display: flex;
    gap: 2px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    padding-top: 4px;
    margin-top: -4px;
    margin-left: 0;
    margin-right: -114px;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;

    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Campaign carousel mobile responsive */
@media (max-width: 1024px) {
    .campaign-carousel {
        margin-left: 0;
        margin-right: -52px;
        padding-left: 0;
        padding-right: 0;
        gap: 2px;
    }
}

@media (max-width: 768px) {
    .campaign-carousel {
        margin-left: 0;
        margin-right: -36px;
        padding-left: 0;
        padding-right: 0;
        gap: 2px;
        padding-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .campaign-carousel {
        margin-left: 0;
        margin-right: -28px;
        padding-left: 0;
        padding-right: 0;
        gap: 2px;
        padding-bottom: 12px;
    }
}

.campaign-carousel::-webkit-scrollbar {
    display: none;
}

/* Smooth scroll snap */
.campaign-carousel {
    scroll-snap-type: x proximity;
}

.campaign-card {
    scroll-snap-align: start;
}

/* ============================================================
   CAMPAIGN CARD
============================================================ */
.campaign-card {
    width: 320px; /* exactly Figma */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    background-color: transparent;
    /* transition: background-color 0.2s ease; */
    padding: 8px;
    height: fit-content;
}

.campaign-card:hover {
    background-color: rgba(206, 240, 0, 0.07);
        transition: background-color 0.3s ease;

}

.campaign-card:hover .campaign-name {
    color: rgb(253, 255, 234);
    transition: color 0.2s ease;
}

.campaign-card:hover .campaign-brand {
    color: rgb(253, 255, 234);
    transition: color 0.2s ease;
}

/* Thumbnail Container */
.campaign-thumb {
    position: relative;
    width: 100%;
    
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Top Gradient Overlay */
.campaign-thumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(
        to bottom,
        rgb(0, 0, 0) 0%,
        rgba(0,0,0,0) 100%
    );
    z-index: 3;
    border-radius: 8px 8px 0 0;
    pointer-events: none;
}

/* Dark overlay on hover */
.campaign-thumb::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.2s ease;
    border-radius: 8px;
    pointer-events: none;
}


.campaign-thumb-large {
    position: relative;
    width: 137%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}


/* Image */
.campaign-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
}

/* ============================================================
   BOOKMARK BUTTON (SVG)
============================================================ */
.bookmark-button {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.bookmark-button:hover {
    background: rgba(0,0,0,0.75);
    transform: scale(1.1);
    box-shadow: 0 4px 12px #00000080;
}

.bookmark-button:active {
    transform: scale(0.95);
}

.bookmark-button {
    color: #ffffff;
}

.bookmark-button svg {
    width: 16px;
    height: 16px;
    pointer-events: none;
    transition: all 0.2s ease;
}

.bookmark-icon.outline {
    opacity: 1;
    color: #ffffff;
}

.bookmark-icon.outline path {
    stroke: currentColor;
    fill: none;
}

.bookmark-icon.filled {
    opacity: 0;
    position: absolute;
    color: #CEF000;
}

.bookmark-icon.filled path {
    fill: currentColor;
    stroke: none;
}

.bookmark-button.active {
    color: #CEF000;
}

.bookmark-button.active .bookmark-icon.outline {
    opacity: 0;
}

.bookmark-button.active .bookmark-icon.filled {
    opacity: 1;
    color: #CEF000;
}

.bookmark-button.active .bookmark-icon.filled path {
    fill: #CEF000;
}

/* ============================================================
   INFO TEXT
============================================================ */
.campaign-info {
    margin-top: 0;
    padding: 0 2px;
}

.campaign-name {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #FFF;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.campaign-brand {
    margin: 6px 0 0;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #808080;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Clickable Entire Card */
.campaign-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.campaign-link:focus {
    outline: 2px solid rgba(206, 240, 0, 0.5);
    outline-offset: 4px;
    border-radius: 14px;
}

/* ============================================================
   RESPONSIVE
============================================================ */

/* Tablet: adjust card width */
@media (max-width: 1024px) {
    .campaign-card {
        width: 290px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .campaign-card {
        width: 260px;
    }

    .campaign-thumb {
        border-radius: 8px;
    }

    .campaign-info {
        margin-top: 0;
    }

    .campaign-name {
        font-size: 15px;
    }

    .campaign-brand {
        font-size: 13px;
        margin-top: 5px;
    }

    .bookmark-button {
        width: 28px;
        height: 28px;
        top: 7px;
        right: 7px;
    }

    .bookmark-button svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .campaign-card {
        width: 240px;
    }

    .campaign-thumb {
        border-radius: 10px;
    }

    .campaign-info {
        margin-top: 10px;
    }

    .campaign-name {
        font-size: 14px;
    }

    .campaign-brand {
        font-size: 12px;
        margin-top: 4px;
    }

    .bookmark-button {
        width: 30px;
        height: 30px;
        top: 10px;
        right: 10px;
    }

    .bookmark-button svg {
        width: 14px;
        height: 14px;
    }
}


/* ============================================================
   CASE STUDIES SECTION
   (matches Figma: gradient bottom, white logo/text, inner button,
    soft rounded corners, glowing outer border)
============================================================ */

.case-section {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding-left: 50px;
    padding-right: 50px;
    margin-top: 60px;
}

/* Grid: 4 cards on desktop */
.case-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

/* Individual card wrapper */
.case-card {
    position: relative;
}

/* Make the whole card clickable */
.case-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Card visual container */
.case-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    /* “white dotted outer glow” look */
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.25),
        0 0 0 1px rgba(255,255,255,0.1) inset,
        0 0 22px rgba(255,255,255,0.18);
}

/* Base photo */
.case-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Big black → transparent gradient from bottom */
.case-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.98) 0%,
        rgba(0,0,0,0.92) 25%,
        rgba(0,0,0,0.50) 55%,
        rgba(0,0,0,0.14) 70%,
        rgba(0,0,0,0) 100%
    );
    z-index: 1;
}

/* Inner content overlay (logo, text, button) */
.case-overlay-content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 20px;
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* POLO RALPH LAUREN text lockup */
.case-logo-text {
    font-size: 26px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
}

.case-logo-text span {
    display: block;
    font-size: 11px;
    letter-spacing: 0.25em;
    margin-top: 4px;
}

/* Description text */
.case-description {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255,255,255,0.86);
    max-width: 240px;
}

/* Inner white button */
.case-button {
    margin-top: 4px;
    padding: 9px 70px;
    border-radius: 8px;
    border: none;
    background-color: #ffffff;
    color: #111111;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}

.case-button:hover {
    background-color: #f5f5f5;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

/* ============================================================
   CASE STUDIES RESPONSIVE
============================================================ */
@media (max-width: 1200px) {
    .case-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .case-section {
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 40px;
    }

    .case-grid {
        gap: 20px;
    }

    .case-image {
        border-radius: 14px;
    }

    .case-overlay-content {
        left: 16px;
        right: 16px;
        bottom: 16px;
        gap: 8px;
    }

    .case-logo-text {
        font-size: 22px;
        letter-spacing: 0.2em;
    }

    .case-logo-text span {
        font-size: 10px;
        margin-top: 3px;
    }

    .case-description {
        font-size: 11px;
        max-width: 200px;
    }

    .case-button {
        padding: 8px 50px;
        font-size: 12px;
        margin-top: 2px;
    }
}

@media (max-width: 600px) {
    .case-section {
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 32px;
    }

    .case-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .case-section {
        padding-left: 16px;
        padding-right: 16px;
        margin-top: 28px;
    }

    .case-grid {
        gap: 16px;
    }

    .case-image {
        border-radius: 12px;
    }

    .case-overlay-content {
        left: 12px;
        right: 12px;
        bottom: 12px;
        gap: 6px;
    }

    .case-logo-text {
        font-size: 18px;
        letter-spacing: 0.15em;
    }

    .case-logo-text span {
        font-size: 9px;
        margin-top: 2px;
    }

    .case-description {
        font-size: 10px;
        max-width: 180px;
        line-height: 1.3;
    }

    .case-button {
        padding: 7px 40px;
        font-size: 11px;
        border-radius: 6px;
    }
}



/* ==================== NAVBAR WRAPPER ==================== */
/* ================================================
   NAVBAR CONTAINER — EXACT FIGMA
================================================= */
.navbar {
    /* width: 100%; */
    max-width: 100%;
    height: 90px;
    /* margin: 0 auto; */

    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 100px;
    padding: 0 32px;

    /* Background and border radius */
    background: rgba(0, 0, 0, 0.20);
    border-radius: 50px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    
    /* Subtle border for depth */
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    /* Box shadow for floating effect */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    /* Fixed positioning */
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    
    z-index: 1000;
    
    /* Smooth transitions */
    transition: all 0.3s ease;
}

/* Enhanced glassmorphism on scroll (optional) */
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

/* Radial glow behind navbar (Figma effect) - Enhanced for glassmorphism */
.navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;



    z-index: -1;
    border-radius: 0;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* ==================== LOGO ==================== */
.nav-logo-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-logo-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.nav-logo {
    height: 38px;
    cursor: pointer;
    display: block;
}

/* ==================== CENTER NAVIGATION ==================== */
.nav-center {
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link-item {
    color: #FFFFFF;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-link-item:hover {
    color: #CEF000;
}

.nav-link-item::after {
    display: none;
}

.nav-link-item:hover::after {
    display: none;
}

/* Active state - green background with black text */
.nav-link-item.active {
    background: #CEF000;
    color: #000000;
    font-weight: 600;
}

.nav-link-item.active:hover {
    color: #000000;
    background: #CEF000;
    opacity: 0.9;
}

/* ==================== RIGHT GROUP ==================== */
.nav-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

/* ==================== AUTH BUTTONS ==================== */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.auth-btn {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    border: none;
    background: none;
    white-space: nowrap;
}

.auth-btn-signin {
    color: #FFFFFF;
    background: transparent;
}

.auth-btn-signin:hover {
    color: #CEF000;
    opacity: 0.9;
}

.auth-btn-signup {
    color: #000000;
    background: #CEF000;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
}

.auth-btn-signup:hover {
    background: #B8D900;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(206, 240, 0, 0.3);
}

.auth-btn-signup:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(206, 240, 0, 0.2);
}

/* ==================== NEW MODERN SEARCH SYSTEM ==================== */
.search-wrapper {
    position: relative;
}

/* ============================================================
   NAVBAR SEARCH STATE
============================================================ */
.navbar.search-active {
    justify-content: space-between;
    padding: 26px 64px;
}

.navbar.search-active .nav-left,
.navbar.search-active .nav-center,
.navbar.search-active .search-wrapper,
.navbar.search-active .right-divider {
    display: none !important;
}

/* Hide profile and auth buttons in search state, show close button */
.navbar.search-active .profile-container {
    display: none !important;
}

.navbar.search-active .auth-buttons {
    display: none !important;
}

.search-close-button {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.search-close-button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 1);
}

.search-close-button:active {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(0.95);
}

.search-close-button svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.navbar.search-active .search-close-button {
    display: flex;
}

.navbar-search-bar {
    display: none;
    flex: 1;
    position: relative;
    flex-direction: column;
    gap: 0;
    margin-right: 16px;
    height: 100%;
}

.navbar.search-active .navbar-search-bar {
    display: flex;
}

.navbar-search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    flex: 1;
}




.navbar-search-icon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.navbar-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    padding: 0;
}

.navbar-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.navbar-search-clear {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: none;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 6px;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.navbar-search-clear:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}


.navbar-search-results {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    max-height: 500px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    padding: 8px;
    z-index: 1000;
    display: none;
}

.navbar-search-results.has-content {
    display: block;
}

.navbar-search-results::-webkit-scrollbar {
    width: 8px;
}

.navbar-search-results::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.navbar-search-results::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: background 0.2s ease;
}

.navbar-search-results::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar.search-active {
        padding: 20px 32px;
    }

    .navbar-search-bar {
        margin-right: 12px;
    }

    .navbar-search-input-wrapper {
        padding: 0;
    }

    .navbar-search-input {
        font-size: 14px;
    }

    .navbar-search-results {
        max-height: 400px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .navbar.search-active {
        padding: 16px 20px;
    }

    .navbar-search-bar {
        margin-right: 8px;
    }

    .navbar-search-input-wrapper {
        padding: 0;
    }

    .navbar-search-input {
        font-size: 13px;
    }

    .navbar-search-results {
        max-height: 350px;
    }
}

/* Search Trigger Button */
.search-trigger {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
    font-size: 14px;
    width: 24px;
    height: 24px;
    box-sizing: border-box;
    position: relative;
}

.search-trigger:hover {
    color: rgba(255, 255, 255, 1);
    opacity: 1;
}

.search-trigger svg {
    width: 24px;
    height: 24px;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.search-trigger:hover svg {
    opacity: 1;
}

/* Keyboard shortcut tooltip on hover */
.search-trigger::after {
    content: '⌘K';
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateX(-50%) translateY(-4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 1001;
}

.search-trigger:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Arrow pointing down from tooltip */
.search-trigger::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid rgba(0, 0, 0, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1001;
}

.search-trigger:hover::before {
    opacity: 1;
}

.search-shortcut-hint {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8vh;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.search-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.search-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
}

.search-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 20px;
    /* Enhanced Glassmorphism Effect */
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    /* Glass border with gradient */
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    /* Multi-layer shadow for depth */
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.37),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 20px 60px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    transform: scale(0.95) translateY(-20px);
    transition: transform 0.2s ease;
}

.search-modal.active .search-modal-content {
    transform: scale(1) translateY(0);
}

/* Search Input Wrapper */
.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.search-icon-left {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 18px;
    font-weight: 400;
    padding: 0;
    line-height: 1.5;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-clear {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: none;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 6px;
    transition: all 0.2s ease;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.search-clear svg {
    width: 18px;
    height: 18px;
}

.search-clear:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 1);
}

/* Search Results */
.search-results {
    max-height: 65vh;
    overflow-y: auto;
    padding: 12px;
}

.search-results::-webkit-scrollbar {
    width: 8px;
}

.search-results::-webkit-scrollbar-track {
    background: transparent;
}

.search-results::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Search Empty State */
.search-empty {
    padding: 80px 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.search-empty svg {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.3);
}

.search-empty p {
    margin: 0 0 32px;
    font-size: 17px;
}

.search-shortcuts {
    display: flex;
    gap: 16px;
    justify-content: center;
    font-size: 12px;
}

.search-shortcuts kbd {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 4px 6px;
    font-family: "Inter", ui-monospace, 'Courier New', monospace;
    font-size: 11px;
    margin: 0 2px;
}

/* Search Section */
.search-section {
    margin-bottom: 12px;
}

.search-section-title {
    padding: 12px 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Search Item */
.search-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 10px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.15s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.search-item:hover,
.search-item.selected {
    background: rgba(206, 240, 0, 0.15);
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    border-color: rgba(206, 240, 0, 0.2);
    color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(206, 240, 0, 0.1);
}

.search-item-icon {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.search-item-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.4;
}

.search-item-text mark {
    background: rgba(206, 240, 0, 0.3);
    color: rgba(206, 240, 0, 1);
    padding: 0;
    font-weight: 500;
}

.search-item-primary {
    background: rgba(206, 240, 0, 0.1);
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    border: 1px solid rgba(206, 240, 0, 0.25);
    box-shadow: 0 2px 8px rgba(206, 240, 0, 0.1);
}

.search-item-primary:hover,
.search-item-primary.selected {
    background: rgba(206, 240, 0, 0.18);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-color: rgba(206, 240, 0, 0.35);
    box-shadow: 0 4px 16px rgba(206, 240, 0, 0.15);
}

.search-item-primary .search-item-icon {
    color: rgba(206, 240, 0, 0.8);
}

.search-item-hint {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-family: "Inter", ui-monospace, 'Courier New', monospace;
}

.search-item-delete {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    opacity: 0;
    transition: all 0.15s ease;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.search-item-delete svg {
    width: 14px;
    height: 14px;
}

.search-item:hover .search-item-delete {
    opacity: 1;
}

.search-item-delete:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

/* ==================== COMING SOON MODAL ==================== */
.coming-soon-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.coming-soon-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.coming-soon-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
}

.coming-soon-modal-content {
    position: relative;
    width: 90%;
    max-width: 480px;
    margin: 0 20px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 24px 64px rgba(0, 0, 0, 0.8);
    padding: 48px 40px 40px;
    text-align: center;
    transform: scale(0.92) translateY(-20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.coming-soon-modal.active .coming-soon-modal-content {
    transform: scale(1) translateY(0);
}

.coming-soon-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.coming-soon-modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    transform: rotate(90deg);
}

.coming-soon-modal-close svg {
    width: 18px;
    height: 18px;
}

.coming-soon-modal-icon-wrapper {
    position: relative;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
}

.coming-soon-modal-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.coming-soon-modal-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(206, 240, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.coming-soon-modal-title {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 16px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #FFFFFF 0%, #CEF000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-modal-message {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 36px 0;
    line-height: 1.6;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.coming-soon-modal-btn {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 40px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #CEF000;
    color: #000000;
    box-shadow: 0 4px 16px rgba(206, 240, 0, 0.3);
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.coming-soon-modal-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.coming-soon-modal-btn:hover::before {
    width: 300px;
    height: 300px;
}

.coming-soon-modal-btn:hover {
    background: #d4f314;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(206, 240, 0, 0.4);
}

.coming-soon-modal-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(206, 240, 0, 0.3);
}

.coming-soon-modal-btn span {
    position: relative;
    z-index: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .coming-soon-modal-content {
        max-width: 90%;
        padding: 40px 32px 32px;
        border-radius: 20px;
    }

    .coming-soon-modal-close {
        top: 16px;
        right: 16px;
        width: 32px;
        height: 32px;
    }

    .coming-soon-modal-close svg {
        width: 16px;
        height: 16px;
    }

    .coming-soon-modal-icon-wrapper {
        width: 100px;
        height: 100px;
        margin-bottom: 28px;
    }

    .coming-soon-modal-icon svg {
        width: 56px;
        height: 56px;
    }

    .coming-soon-modal-icon-glow {
        width: 120px;
        height: 120px;
    }

    .coming-soon-modal-title {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .coming-soon-modal-message {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .coming-soon-modal-btn {
        padding: 12px 32px;
        font-size: 14px;
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .coming-soon-modal-content {
        padding: 36px 24px 28px;
        border-radius: 18px;
    }

    .coming-soon-modal-title {
        font-size: 24px;
    }

    .coming-soon-modal-message {
        font-size: 14px;
    }

    .coming-soon-modal-btn {
        padding: 12px 28px;
    }
}

/* ==================== LOGOUT CONFIRMATION MODAL ==================== */
.logout-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.logout-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.logout-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
}

.logout-modal-content {
    position: relative;
    width: 90%;
    max-width: 440px;
    margin: 0 20px;
    /* Enhanced Glassmorphism Effect */
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    /* Glass border with gradient */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    /* Multi-layer shadow for depth */
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 20px 60px rgba(0, 0, 0, 0.7);
    padding: 48px 40px 40px;
    text-align: center;
    transform: scale(0.96) translateY(-10px);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.logout-modal.active .logout-modal-content {
    transform: scale(1) translateY(0);
}

.logout-modal-icon-wrapper {
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logout-modal-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    padding: 20px;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.logout-modal-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.logout-modal-title {
    font-family: "Inter", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #FFF;
    margin: 0 0 12px 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.logout-modal-message {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 36px 0;
    line-height: 1.6;
}

.logout-modal-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-direction: row-reverse;
}

.logout-modal-btn {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 36px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 130px;
    position: relative;
    overflow: hidden;
}

.logout-modal-cancel {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.logout-modal-cancel:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.logout-modal-confirm {
    background: #CEF000;
    color: #000;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(206, 240, 0, 0.2);
}

.logout-modal-confirm:hover {
    background: #d4f314;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(206, 240, 0, 0.35);
}

.logout-modal-btn:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

/* ==================== DIVIDER ==================== */
.right-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.22);
}

/* ==================== PROFILE ==================== */
.profile-container {
    position: relative;
}

.profile-btn {
    background: rgba(0,0,0,0.27);
    border: none;
    border-radius: 40px;

    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 8px;

    cursor: pointer;
}

.profile-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.arrow-icon {
    width: 11px;
    opacity: 0.9;
    transition: transform .3s;
}

.profile-btn.active .arrow-icon {
    transform: rotate(180deg);
}

/* ==================== DROPDOWN ==================== */
.profile-menu {
    position: absolute;
    top: 72px;
    right: 0;

    width: 260px;
    background: rgba(12,20,20,0.88);
    border-radius: 14px;

    padding: 22px;
    display: none;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    animation: fadeIn .25s ease;
}

.profile-menu.active {
    display: block;
}

/* Fade animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.dropdown-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    color: white;
    font-weight: 500;
}

.dropdown-icon {
    width: 20px;
}

/* Language options */
.language-option {
    background: none;
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 6px;

    color: white;
    opacity: 0.75;
    cursor: pointer;
    font-size: 15px;
}

.language-option.active {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    opacity: 1;
}

.lang-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-separator {
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin: 12px 0;
}

/* Logout option */
.logout-btn {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.logout-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
    transform: translateX(2px);
}

.logout-btn:active {
    transform: translateX(0);
    background: rgba(255, 255, 255, 0.15);
}


/* Hide original icon when search is active */
.search-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Close button inside search bar */
.search-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.search-close-btn img {
    width: 18px;
    opacity: 0.7;
}


/* ==================== PROFILE CONTAINER ==================== */

.profile-container {
    position: relative;
}

/* Rounded background capsule */
.profile-button {
    display: flex;
    align-items: center;
    gap: 10px;

    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);

    padding: 6px 12px;
    border-radius: 40px;
    height: 48px;
    box-sizing: border-box;

    cursor: pointer;
    transition: background 0.2s ease;
}

.profile-button:hover {
    background: rgba(255,255,255,0.08);
}

/* Profile image */
.profile-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

/* Arrow icon */
.profile-arrow {
    width: 12px;
    transition: transform 0.25s ease;
}

/* Rotate arrow when active */
.profile-button.active .profile-arrow {
    transform: rotate(180deg);
}

/* ==================== DROPDOWN ==================== */

.profile-dropdown {
    position: absolute;
    top: 60px;
    right: 0;

    width: 260px;

    background: rgba(12, 20, 20, 0.85);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);

    border-radius: 14px;
    padding: 20px;

    display: none;
    flex-direction: column;
    gap: 14px;

    animation: fadeIn .22s ease;
}

.dropdown-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
    padding: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.dropdown-close-btn svg {
    width: 18px;
    height: 18px;
}

.dropdown-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.dropdown-close-btn:active {
    transform: scale(0.95);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Dropdown title */
.dropdown-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 17px;
}

/* Language options */
.lang-option {
    border: none;
    background: none;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.2s ease;
    width: 100%;
    text-align: left;
}

.lang-option:hover {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,1);
    transform: translateX(2px);
}

.lang-option:active {
    transform: translateX(0);
    background: rgba(255,255,255,0.15);
}

.lang-option.active {
    background: rgba(206, 240, 0, 0.15);
    color: rgba(206, 240, 0, 1);
}

.lang-option.active:hover {
    background: rgba(206, 240, 0, 0.2);
}

/* Badge */
.lang-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Separator */
.dropdown-separator {
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.16);
    margin: 8px 0;
}

/* Profile menu item */
.profile-menu-btn {
    border: none;
    background: none;
    color: white;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    opacity: 0.9;
    padding: 10px 12px;
    border-radius: 10px;
    transition: all 0.2s ease;
    width: 100%;
    text-align: left;
}

.profile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
    transform: translateX(2px);
}

.profile-menu-btn:active {
    transform: translateX(0);
    background: rgba(255, 255, 255, 0.15);
}

.profile-menu-btn svg {
    width: 18px;
    height: 18px;
}

/* Logout */
.logout-btn {
    border: none;
    background: none;
    color: white;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    opacity: 0.9;
    padding: 10px 12px;
    border-radius: 10px;
    transition: all 0.2s ease;
    width: 100%;
    text-align: left;
}

.logout-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
    transform: translateX(2px);
}

.logout-btn:active {
    transform: translateX(0);
    background: rgba(255, 255, 255, 0.15);
}

/* Mobile Navigation Items in Profile Dropdown */
.mobile-nav-items {
    display: none;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-item {
    border: none;
    background: none;
    color: white;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    opacity: 0.9;
    padding: 10px 12px;
    border-radius: 10px;
    transition: all 0.2s ease;
    width: 100%;
    text-align: left;
    text-decoration: none;
}

.mobile-nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
    transform: translateX(2px);
    color: #CEF000;
}

.mobile-nav-item:active {
    transform: translateX(0);
    background: rgba(255, 255, 255, 0.15);
}

.mobile-nav-item.active {
    background: rgba(206, 240, 0, 0.15);
    color: #CEF000;
    opacity: 1;
}

.mobile-nav-item.active:hover {
    background: rgba(206, 240, 0, 0.2);
}

.mobile-nav-item svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    flex-shrink: 0;
}

.mobile-nav-item:hover svg,
.mobile-nav-item.active svg {
    stroke: #CEF000;
}

.mobile-nav-separator {
    display: none;
}

/* ==================== NAVBAR MOBILE RESPONSIVE ==================== */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    .navbar {
        width: 90%;
        margin: 0 auto;
        padding: 20px 40px;
        height: 80px;
        border-radius: 40px;
    }

    .nav-logo {
        height: 32px;
    }

    .nav-center {
        gap: 24px;
    }

    .nav-link-item {
        font-size: 13px;
    }

    .nav-right {
        gap: 16px;
    }

    .search-trigger {
        width: 22px;
        height: 22px;
    }

    .search-trigger svg {
        width: 22px;
        height: 22px;
    }

    .profile-button {
        height: 44px;
        padding: 5px 10px;
        gap: 8px;
    }

    .profile-img {
        width: 32px;
        height: 32px;
    }

    .profile-arrow {
        width: 11px;
    }

    .right-divider {
        height: 24px;
    }

    .auth-buttons {
        gap: 12px;
    }

    .auth-btn-signup {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .navbar {
        width: calc(100% - 24px);
        max-width: 100%;
        margin: 0 auto;
        padding: 20px 20px;
        height: auto;
        min-height: 70px;
        border-radius: 35px;
        top: 12px;
    }

    .nav-logo {
        height: 28px;
    }

    .nav-center {
        display: none;
    }

    .nav-right {
        gap: 12px;
    }

    .search-trigger {
        width: 20px;
        height: 20px;
    }

    .search-trigger svg {
        width: 20px;
        height: 20px;
    }

    .right-divider {
        height: 20px;
        width: 1px;
        background: rgba(255, 255, 255, 0.18);
    }

    .profile-button {
        height: 40px;
        padding: 4px 8px;
        gap: 6px;
    }

    .profile-img {
        width: 28px;
        height: 28px;
    }

    .profile-arrow {
        width: 10px;
    }

    .search-close-button {
        width: 36px;
        height: 36px;
        padding: 6px;
    }

    .search-close-button svg {
        width: 20px;
        height: 20px;
    }

    /* Adjust profile dropdown for mobile */
    .profile-dropdown {
        width: 240px;
        right: 0;
        left: auto;
        top: 56px;
        padding: 16px;
        gap: 12px;
    }

    /* Show mobile navigation items on mobile */
    .mobile-nav-items {
        display: flex;
    }

    .mobile-nav-separator {
        display: block;
    }

    /* Ensure dropdown doesn't get cut off on mobile */
    .profile-container {
        position: relative;
    }

    .profile-menu-btn,
    .logout-btn {
        font-size: 16px;
        padding: 10px;
    }

    /* Search modal adjustments for mobile */
    .search-modal {
        padding-top: 10vh;
    }

    .search-modal-content {
        margin: 0 16px;
        border-radius: 20px;
        max-width: 100%;
    }

    .search-input-wrapper {
        padding: 14px 16px;
    }

    .search-input {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .search-results {
        max-height: calc(90vh - 120px);
    }

    .search-item {
        padding: 12px 16px;
        font-size: 15px;
    }

    .search-section-title {
        font-size: 12px;
        padding: 12px 16px 8px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .navbar {
        padding: 18px 16px;
        height: auto;
        min-height: 64px;
    }

    .nav-logo {
        height: 24px;
    }

    .nav-right {
        gap: 10px;
    }

    .search-trigger {
        width: 18px;
        height: 18px;
    }

    .search-trigger svg {
        width: 18px;
        height: 18px;
    }

    .search-close-button {
        width: 32px;
        height: 32px;
        padding: 4px;
    }

    .search-close-button svg {
        width: 18px;
        height: 18px;
    }

    .right-divider {
        height: 18px;
    }

    .profile-button {
        height: 36px;
        padding: 3px 6px;
        gap: 5px;
    }

    .profile-img {
        width: 24px;
        height: 24px;
    }

    .profile-arrow {
        width: 9px;
    }

    /* Profile dropdown adjustments for small mobile */
    .profile-dropdown {
        width: calc(100vw - 32px);
        max-width: 280px;
        right: 8px;
        left: auto;
        top: 52px;
        padding: 14px;
    }

    /* Ensure dropdown doesn't get cut off */
    .profile-container {
        position: relative;
    }

    /* Search modal adjustments for small mobile */
    .search-modal {
        padding-top: 5vh;
    }

    .search-modal-content {
        margin: 0 12px;
        border-radius: 16px;
    }

    .search-input-wrapper {
        padding: 12px 14px;
    }

    .search-results {
        max-height: calc(85vh - 100px);
    }

    .search-item {
        padding: 10px 14px;
        font-size: 14px;
    }

    .search-empty {
        padding: 40px 20px;
    }

    .search-empty svg {
        width: 40px;
        height: 40px;
    }

    .search-empty p {
        font-size: 14px;
    }

    .search-shortcuts {
        font-size: 11px;
        gap: 8px;
    }

    /* Logout modal adjustments for small mobile */
    .logout-modal-content {
        width: calc(100vw - 24px);
        max-width: 100%;
        padding: 36px 24px 32px;
        border-radius: 16px;
    }

    .logout-modal-icon {
        width: 64px;
        height: 64px;
        padding: 16px;
    }

    .logout-modal-icon img {
        width: 28px;
        height: 28px;
    }

    .logout-modal-title {
        font-size: 24px;
    }

    .logout-modal-message {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .logout-modal-actions {
        flex-direction: column;
        gap: 10px;
    }

    .logout-modal-btn {
        width: 100%;
        min-width: auto;
        padding: 12px 24px;
    }
}

/* ====================== FOOTER TOP ====================== */

.main-footer {
    width: 100%;
    background: transparent;
    padding-top: 40px;
    padding-bottom: 30px;
    text-align: center;
}

.footer-top {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.footer-subtitle {
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-logo-link:hover {
    opacity: 0.9;
}

.footer-logo {
    position: relative;
    display: inline-block;
}

.footer-logo img {
    display: block;
    height: auto;
}

.footer-underline {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #CEF000, transparent);
    margin-top: 8px;
    opacity: 0.6;
}

.footer-text {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    max-width: 600px;
    margin: 22px auto 42px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: #CEF000;
    border-radius: 1px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-nav a:hover {
    color: #CEF000;
    background: rgba(206, 240, 0, 0.1);
    opacity: 1;
    transform: translateY(-2px);
}

.footer-nav a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* ====================== FOOTER BOTTOM ====================== */

.footer-bottom {
    margin-top: 55px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.10);

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-left: 40px;
    padding-right: 40px;
}

.footer-copy {
    color: #D4FF3D;
    font-size: 14px;
}

.footer-company-link {
    color: #CEF000;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.footer-company-link:hover {
    color: #FFF;
    border-bottom-color: #CEF000;
    opacity: 1;
}

/* ====================== SOCIAL ICONS ====================== */

.footer-socials {
    display: flex;
    gap: 24px;              /* space between circles (similar to Figma) */
}

.footer-socials a {
    text-decoration: none !important;
}


/* FIGMA-LIKE SOCIAL CIRCLES */
.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;

    background: #2E2E2E;    /* deep black circle like Figma */
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.08),   /* thin soft outline */
        0 6px 18px rgba(0,0,0,0.9);         /* outer glow / drop shadow */

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;         /* pure white icons */
    font-size: 18px;        /* slightly smaller icons inside the circle */

    transition: background 0.2s ease,
                box-shadow 0.2s ease,
                transform 0.2s ease,
                color 0.2s ease;
}

.social-icon i {
    display: inline-block;
    line-height: 1;
    font-style: normal;
}

.social-icon:hover {
    background: rgba(206, 240, 0, 0.15);
    box-shadow:
        0 0 0 1px rgba(206, 240, 0, 0.3),
        0 8px 22px rgba(206, 240, 0, 0.2);
    transform: translateY(-2px);
}

.social-icon:active {
    transform: translateY(0);
}

/* ==================== FOOTER MOBILE RESPONSIVE ==================== */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    .main-footer {
        padding-top: 36px;
        padding-bottom: 28px;
    }

    .footer-top {
        padding: 0 32px;
    }

    .footer-text {
        max-width: 550px;
        margin: 20px auto 36px;
        font-size: 14px;
    }

    .footer-bottom {
        padding-left: 32px;
        padding-right: 32px;
        margin-top: 48px;
    }

    .footer-copy {
        font-size: 13px;
    }

    .footer-socials {
        gap: 20px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .main-footer {
        padding-top: 32px;
        padding-bottom: 24px;
    }

    .footer-top {
        padding: 0 20px;
    }

    .footer-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }

    .footer-logo {
        max-width: 140px;
        margin: 0 auto;
    }

    .footer-logo img {
        max-width: 100%;
        height: auto;
    }

    .footer-underline {
        margin-top: 6px;
    }

    .footer-text {
        max-width: 100%;
        margin: 18px auto 32px;
        font-size: 14px;
        padding: 0 16px;
        line-height: 1.6;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .footer-nav a {
        font-size: 14px;
        padding: 8px 14px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 40px;
        padding-top: 24px;
    }

    .footer-copy {
        font-size: 12px;
        line-height: 1.5;
        order: 2;
    }

    .footer-socials {
        gap: 18px;
        order: 1;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .main-footer {
        padding-top: 28px;
        padding-bottom: 20px;
    }

    .footer-top {
        padding: 0 16px;
    }

    .footer-subtitle {
        font-size: 10px;
        letter-spacing: 1.5px;
        margin-bottom: 14px;
    }

    .footer-logo {
        max-width: 120px;
        margin: 0 auto;
    }

    .footer-underline {
        margin-top: 5px;
        height: 1.5px;
    }

    .footer-text {
        font-size: 13px;
        margin: 16px auto 28px;
        padding: 0 12px;
        line-height: 1.5;
    }

    .footer-nav {
        gap: 12px;
        flex-direction: column;
        width: 100%;
    }

    .footer-nav a {
        font-size: 13px;
        padding: 10px 16px;
        width: auto;
        min-width: 120px;
    }

    .footer-bottom {
        gap: 18px;
        padding-left: 16px;
        padding-right: 16px;
        margin-top: 32px;
        padding-top: 20px;
    }

    .footer-copy {
        font-size: 11px;
        line-height: 1.6;
    }

    .footer-company-link {
        display: inline-block;
        word-break: break-word;
    }

    .footer-socials {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
}


.bookmark-button {
    position: absolute;
    top: 12px;
    right: 12px;

    width: 32px;
    height: 32px;

    border: none;
    background: none; /* REMOVE BACKGROUND */
    padding: 0;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.bookmark-icon {
    width: 22px;
    height: 22px;
    position: absolute; /* stack both icons */
    transition: opacity .2s ease;
}

/* default state: show outline */
.bookmark-icon.filled {
    opacity: 0;
    fill: #CEF000;
}

/* when active: show filled icon */
.bookmark-button.active .bookmark-icon.filled {
    opacity: 1;
    fill: #CEF000 !important;
}
.bookmark-button.active .bookmark-icon.outline {
    opacity: 0;
}

.bookmark-button.active svg {
    fill: #CEF000;
}


/* ============================
   CAMPAIGN CARD – GRID VARIANT
============================ */

.campaign-card--grid {
    width: 100%;
}

.campaign-card--grid .campaign-thumb {
    width: 100%;
}

.campaign-card--grid .campaign-thumb img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 14px;
}



/* ============================
   CAMPAIGNS GRID – FIGMA
============================ */

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: 100%;
}

/* Grid campaign cards */
.campaigns-grid .campaign-card {
    width: 100%;
}

.campaigns-grid .campaign-thumb {
    width: 100%;
}

.campaigns-grid .campaign-thumb img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Tablet */
@media (max-width: 1024px) {
    .campaigns-page {
        padding-top: 100px; /* Space for fixed navbar (80px height + 20px top offset) */
    }
    
    .campaigns-container {
        padding: 0 20px;
    }
    
    .campaigns-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .campaigns-page {
        padding-top: 82px; /* Space for fixed navbar (70px height + 12px top offset) */
    }
    
    .campaigns-container {
        padding: 0 16px;
    }
    
    .campaigns-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .campaigns-page {
        padding-top: 76px; /* Space for fixed navbar (64px height + 12px top offset) */
    }
    
    .campaigns-container {
        padding: 0 16px;
    }
    
    .campaigns-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Reel grid layout */
.campaigns-grid.reel-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
    justify-content: start;
    align-items: start;
}

/* Reel cards in grid should be responsive */
.campaigns-grid.reel-grid .reel-card {
    width: 100%;
    max-width: 100%;
    flex-shrink: 1;
}

.campaigns-grid.reel-grid .reel-thumb {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

@media (max-width: 1400px) {
    .campaigns-grid.reel-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .campaigns-grid.reel-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .campaigns-grid.reel-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .campaigns-grid.reel-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Learn grid layout */
.campaigns-grid.learn-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    justify-content: start;
}

@media (max-width: 1400px) {
    .campaigns-grid.learn-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .campaigns-grid.learn-grid {
        grid-template-columns: 1fr;
    }
}






/* Back button styling – Figma-like pill + arrow */
.back-button-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0px;
    margin-left: 0;
    margin-right: 0;
    padding: 8px 12px;
    padding-left: 0;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    cursor: pointer;
    width: fit-content;
}

.back-button-container:hover {
    transform: translateX(-2px);
}

.back-button-container:active {
    transform: translateX(-4px);
    transition: transform 0.1s ease;
}

.back-button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background-color: #C6FF1F; /* neon green from Figma */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(198, 255, 31, 0.2);
}

.back-button:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 4px 12px rgba(198, 255, 31, 0.4);
}

.back-button:active {
    transform: scale(0.95) rotate(0deg);
    box-shadow: 0 1px 4px rgba(198, 255, 31, 0.3);
}

.back-button img {
    width: 12px;
    height: 12px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-button-container:hover .back-button img {
    transform: translateX(-2px);
}

.back-text {
    font-size: 20px;
    font-weight: light;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: "Inter", sans-serif;
}

.back-button-container:hover .back-text {
    color: #CEF000;
    transform: translateX(2px);
}




/* PAGE CONTAINER */
.campaigns-page {
    width: 100%;
    min-height: 100vh;
    padding-top: 110px; /* Space for fixed navbar (90px height + 20px top offset) */
    background: transparent;
}

/* Campaign Loader */
.campaign-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.campaign-loader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #CEF000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.campaign-loader-text {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Campaign Empty State */
.campaign-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
    text-align: center;
    min-height: 500px;
    animation: fadeInUp 0.6s ease-out;
    width: 100%;
    margin: 0 auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.campaign-empty-icon-wrapper {
    position: relative;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.campaign-empty-icon {
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.campaign-empty-icon svg {
    filter: drop-shadow(0 8px 24px rgba(206, 240, 0, 0.2));
    transition: transform 0.3s ease;
}

.campaign-empty-icon:hover svg {
    transform: scale(1.05);
}

.campaign-empty-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(206, 240, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.campaign-empty-title {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #FFF;
    margin: 0 auto 16px auto;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-align: center;
    width: 100%;
    max-width: 520px;
}

.campaign-empty-text {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto 32px auto;
    max-width: 520px;
    line-height: 1.7;
    text-align: center;
    width: 100%;
}

.campaign-empty-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.campaign-empty-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.campaign-empty-button-primary {
    background: linear-gradient(135deg, #CEF000 0%, #B8D900 100%);
    color: #000;
    box-shadow: 
        0 4px 12px rgba(206, 240, 0, 0.3),
        0 0 0 0 rgba(206, 240, 0, 0.4);
}

.campaign-empty-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(206, 240, 0, 0.4),
        0 0 0 4px rgba(206, 240, 0, 0.1);
    background: linear-gradient(135deg, #D8F500 0%, #C2E500 100%);
}

.campaign-empty-button-primary:active {
    transform: translateY(0);
}

.campaign-empty-button-primary svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.campaign-empty-button-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.campaign-empty-button-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.campaign-empty-button-secondary:active {
    transform: translateY(0);
}

/* Responsive Empty State */
@media (max-width: 768px) {
    .campaign-empty-state {
        padding: 80px 20px;
        min-height: 400px;
    }
    
    .campaign-empty-icon-wrapper {
        margin-bottom: 24px;
    }
    
    .campaign-empty-icon svg {
        width: 100px;
        height: 100px;
    }
    
    .campaign-empty-icon-glow {
        width: 140px;
        height: 140px;
    }
    
    .campaign-empty-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .campaign-empty-text {
        font-size: 15px;
        margin-bottom: 24px;
        max-width: 100%;
    }
    
    .campaign-empty-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }
    
    .campaign-empty-button {
        width: 100%;
    }
}

.campaigns-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* Desktop/Web only - 114px padding */
@media (min-width: 1025px) {
    .campaigns-container {
        padding: 0 114px;
    }
}

/* BACK BUTTON */
.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #D8D8D8;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.back-btn img {
    opacity: 0.8;
}

/* PAGE TITLE */
.campaigns-title {
    margin-top: 2px;
    margin-bottom: 40px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 32px;
    font-weight: 800;
    color: white;
    width: 100%;
}

/* ============================================================
   LEARN PAGE
============================================================ */

.learn-page {
    width: 100%;
    min-height: 100vh;
    padding-top: 40px;
    padding-bottom: 80px;
    background: transparent;
}

.learn-container {
    width: 90%;
    max-width: 1360px;
    margin: 0 0;
    padding: 0 64px;
}

.learn-header {
    margin-bottom: 48px;
}

.learn-title {
    margin-top: 0;
    margin-bottom: 16px;
    font-family: "Inter", sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.learn-description {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 0 32px 0;
    max-width: 800px;
}

.learn-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.learn-filter-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.learn-filter-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
}

.learn-filter-btn.active {
    background: #CEF000;
    color: #000000;
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    justify-content: start;
    align-items: start;
}


.learn-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.learn-loader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #CEF000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.learn-loader-text {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    margin-top: 16px;
}

.learn-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
    text-align: center;
    min-height: 500px;
}

.learn-empty-icon-wrapper {
    position: relative;
    margin-bottom: 32px;
}

.learn-empty-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.learn-empty-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(206, 240, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 2s ease-in-out infinite;
}

.learn-empty-title {
    font-family: "Inter", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 12px 0;
}

.learn-empty-text {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 32px 0;
    max-width: 500px;
    line-height: 1.5;
}

.learn-empty-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.learn-empty-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.learn-empty-button-primary {
    background: #CEF000;
    color: #000000;
}

.learn-empty-button-primary:hover {
    background: #B8D900;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(206, 240, 0, 0.3);
}

.learn-empty-button-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.learn-empty-button-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ==================== LEARN PAGE MOBILE RESPONSIVE ==================== */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    .learn-container {
        width: 95%;
        padding: 0 32px;
    }

    .learn-title {
        font-size: 40px;
    }

    .learn-description {
        font-size: 17px;
    }

    .learn-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .learn-page {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .learn-container {
        width: 100%;
        padding: 0 20px;
    }

    .back-button-container {
        margin-bottom: 20px;
        padding: 6px 10px;
    }

    .back-button {
        width: 24px;
        height: 24px;
    }

    .back-button img {
        width: 10px;
        height: 10px;
    }

    .back-text {
        font-size: 16px;
    }

    .learn-header {
        margin-bottom: 32px;
    }

    .learn-title {
        font-size: 28px;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }

    .learn-description {
        font-size: 15px;
        margin-bottom: 24px;
        line-height: 1.5;
    }

    .learn-filters {
        gap: 8px;
        flex-wrap: wrap;
    }

    .learn-filter-btn {
        padding: 8px 16px;
        font-size: 12px;
        letter-spacing: 0.3px;
    }

    .learn-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .learn-card {
        height: 220px;
        width: 100%;
    }

    .learn-card-content {
        padding: 20px;
    }

    .learn-card-category {
        top: 20px;
        left: 20px;
        font-size: 11px;
    }

    .learn-card-title {
        font-size: 20px;
    }

    .learn-card-brief {
        font-size: 13px;
    }

    .learn-loader {
        padding: 60px 20px;
    }

    .learn-loader-spinner {
        width: 40px;
        height: 40px;
    }

    .learn-loader-text {
        font-size: 14px;
        margin-top: 12px;
    }

    .learn-empty-state {
        padding: 80px 20px;
        min-height: 400px;
    }
    
    .learn-empty-icon-wrapper {
        margin-bottom: 24px;
    }
    
    .learn-empty-title {
        font-size: 24px;
    }
    
    .learn-empty-text {
        font-size: 14px;
    }
    
    .learn-empty-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .learn-empty-button {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .learn-page {
        padding-top: 16px;
        padding-bottom: 32px;
    }

    .learn-container {
        padding: 0 16px;
    }

    .back-button-container {
        margin-bottom: 16px;
        padding: 5px 8px;
    }

    .back-button {
        width: 22px;
        height: 22px;
    }

    .back-button img {
        width: 9px;
        height: 9px;
    }

    .back-text {
        font-size: 14px;
    }

    .learn-header {
        margin-bottom: 24px;
    }

    .learn-title {
        font-size: 24px;
        margin-bottom: 10px;
        letter-spacing: 0.3px;
    }

    .learn-description {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .learn-filters {
        gap: 6px;
    }

    .learn-filter-btn {
        padding: 7px 14px;
        font-size: 11px;
        letter-spacing: 0.2px;
    }

    .learn-grid {
        gap: 16px;
    }

    .learn-card {
        height: 200px;
    }

    .learn-card-content {
        padding: 16px;
    }

    .learn-card-category {
        top: 16px;
        left: 16px;
        font-size: 10px;
    }

    .learn-card-title {
        font-size: 18px;
    }

    .learn-card-brief {
        font-size: 12px;
    }

    .learn-loader {
        padding: 50px 16px;
    }

    .learn-loader-spinner {
        width: 36px;
        height: 36px;
    }

    .learn-loader-text {
        font-size: 13px;
    }

    .learn-empty-state {
        padding: 60px 16px;
        min-height: 350px;
    }

    .learn-empty-icon-wrapper {
        margin-bottom: 20px;
    }

    .learn-empty-icon svg {
        width: 100px;
        height: 100px;
    }

    .learn-empty-icon-glow {
        width: 140px;
        height: 140px;
    }

    .learn-empty-title {
        font-size: 20px;
    }

    .learn-empty-text {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .learn-empty-button {
        padding: 10px 20px;
        font-size: 13px;
    }
}























/* ===========================
   CAMPAIGN PAGE
=========================== */

/* Campaign Page Container */
.campaign-page { 
  width: 100vw; 
  min-height: 100vh;
  padding-bottom: 40px;
  background: transparent;
  overflow-x: hidden;
}

/* Main Content Container */
.campaign-content-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 320px;
  overflow-x: hidden;
}

/* ============================================================
   BACK BUTTON
============================================================ */
.back-button-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  padding-top: 40px;
  cursor: pointer;
  width: fit-content;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-button-container:hover {
  transform: translateX(-2px);
}

.back-button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background-color: #CEF000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(198, 255, 31, 0.2);
}

.back-button:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 4px 12px rgba(198, 255, 31, 0.4);
}

.back-button:active {
  transform: scale(0.95) rotate(0deg);
}

.back-button img {
  width: 12px;
  height: 12px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-button-container:hover .back-button img {
  transform: translateX(-2px);
}

.back-text {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Inter", sans-serif;
}

.back-button-container:hover .back-text {
  color: #CEF000;
  transform: translateX(2px);
}

/* ============================================================
   HERO IMAGE
============================================================ */
.campaign-hero-image {
  width: 100vw;
  max-width: 100vw;
  height: 70vh;
  min-height: 500px;
  max-height: 800px;
  aspect-ratio: 16 / 9;
  /* margin: 40px 0; */
  position: relative;
  overflow: hidden;
  border-radius: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.campaign-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.campaign-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}

/* ============================================================
   CAMPAIGN HEADER (Title, Agency, Actions)
============================================================ */
.campaign-header {
  margin-bottom: 48px;
  margin-top: 48px;
}

.campaign-header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.campaign-header-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.campaign-title {
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 4px 0;
  color: #FFF;
  font-family: "Inter", sans-serif;
}

.campaign-agency {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  line-height: normal;
  display: block;
  font-family: "Inter", sans-serif;
}

.campaign-header-actions {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-end;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 0;
  padding-top: 0;
  align-content: flex-start;
}

.campaign-header-actions button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 0;
  margin-bottom: 0;
  vertical-align: top;
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  bottom: auto;
  line-height: 0;
  box-sizing: border-box;
}

.campaign-header-actions button:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(206, 240, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.campaign-header-actions button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.campaign-header-actions .share-btn img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.2s ease;
  display: block;
  object-fit: contain;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.campaign-header-actions .share-btn:hover img {
  opacity: 1;
}

.campaign-header-actions button img {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  object-fit: contain;
}

/* Bookmark Button Styling */
.campaign-header-actions .bookmark-button {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  width: 40px !important;
  height: 40px !important;
  padding: 0 !important;
  cursor: pointer;
  position: relative !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  bottom: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 10px !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  align-self: flex-start !important;
  vertical-align: top !important;
  flex-shrink: 0 !important;
  line-height: 0 !important;
  box-sizing: border-box !important;
}

.campaign-header-actions .bookmark-button:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(206, 240, 0, 0.4) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.campaign-header-actions .bookmark-button:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
}

.campaign-header-actions .bookmark-button svg {
  width: 18px !important;
  height: 18px !important;
  display: block;
  transition: all 0.2s ease;
  pointer-events: none;
  margin: 0;
  padding: 0;
}

.campaign-header-actions .bookmark-button .bookmark-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  line-height: 0;
  vertical-align: top;
}

.campaign-header-actions .bookmark-button .bookmark-icon.outline {
  display: block;
  opacity: 1;
}

.campaign-header-actions .bookmark-button .bookmark-icon.outline path {
  stroke: rgba(255, 255, 255, 0.9);
  fill: none;
}

.campaign-header-actions .bookmark-button .bookmark-icon.filled {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.campaign-header-actions .bookmark-button.active {
  background: rgba(206, 240, 0, 0.12) !important;
  border-color: #CEF000 !important;
  border-width: 1.5px !important;
}

.campaign-header-actions .bookmark-button.active .bookmark-icon.outline {
  display: none;
  opacity: 0;
}

.campaign-header-actions .bookmark-button.active .bookmark-icon.filled {
  display: block;
  opacity: 1;
  position: relative;
}

.campaign-header-actions .bookmark-button.active .bookmark-icon.filled path {
  fill: #CEF000 !important;
  stroke: none !important;
}

.campaign-header-actions .bookmark-button.active:hover {
  background: rgba(206, 240, 0, 0.18) !important;
  border-color: #CEF000 !important;
}

.campaign-header-actions .bookmark-button:hover .bookmark-icon.outline path {
  stroke: #CEF000;
}

/* ============================================================
   INFO BAR
============================================================ */
.campaign-info-bar {
  display: flex;
  column-gap: clamp(120px, 15vw, 280px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 48px;
  margin-bottom: 48px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.info-col { 
  display: flex; 
  flex-direction: column; 
  gap: 20px; 
  flex: 1;
}

.info-row { 
  display: flex; 
  align-items: center; 
  gap: 14px; 
  position: relative;
  cursor: help;
  transition: opacity 0.2s ease;
}

.info-row-clickable {
  cursor: pointer !important;
}

.info-row-clickable:hover {
  opacity: 0.8;
}

.info-row-clickable .info-txt {
  text-decoration: underline;
  text-decoration-color: rgba(206, 240, 0, 0.5);
  text-underline-offset: 2px;
}

.info-row::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 0;
  transform: translateY(-4px);
  background: #000000;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1000;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.info-row::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 12px;
  transform: translateX(0);
  border: 5px solid transparent;
  border-top-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1001;
}

.info-row:hover::before,
.info-row:hover::after {
  opacity: 1;
}

.info-row:hover::before {
  transform: translateY(-8px);
}

.info-ic {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(206, 240, 0, 0.1);
  border: 1px solid rgba(206, 240, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-ic img { 
  width: 18px; 
  height: 18px; 
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.info-txt {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
  font-family: "Inter", sans-serif;
}

/* ============================================================
   DESCRIPTION
============================================================ */
.campaign-description { 
  margin-bottom: 48px;
}

.campaign-description-inner { 
  max-width: 100%;
}

.campaign-description-inner p {
  font-size: 17px;
  line-height: 1.75;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  font-family: "Inter", sans-serif;
}

.campaign-description-inner p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   CREDITS
============================================================ */
.campaign-credits {
  margin-bottom: 48px;
}

.campaign-credits-title {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFF;
  margin: 0 0 24px 0;
  line-height: 1.2;
}

.campaign-credits-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.credit-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.credit-role-title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(206, 240, 0, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Inter", sans-serif;
}

.credit-names {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-family: "Inter", sans-serif;
}

.credit-item {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-family: "Inter", sans-serif;
}

.credit-item .credit-role {
  font-weight: 600;
  color: rgba(206, 240, 0, 0.9);
}

.credit-item .credit-name {
  color: rgba(255, 255, 255, 0.85);
}

.credit-text {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  font-family: "Inter", sans-serif;
  white-space: pre-line;
}

/* ============================================================
   POSTERS / MEDIA
============================================================ */
.campaign-posters { 
  margin-bottom: 48px;
}

.campaign-posters-title {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFF;
  margin: 0 0 24px 0;
  line-height: 1.2;
}

.campaign-posters-count {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 8px;
  font-family: "Inter", sans-serif;
}

.campaign-section-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 48px 0;
}

.campaign-posters-inner { 
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.campaign-poster {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.campaign-poster img,
.campaign-poster video,
.campaign-poster iframe {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.campaign-poster:hover img,
.campaign-poster:hover video,
.campaign-poster:hover iframe {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.campaign-poster video {
  background: #000;
  min-height: 300px;
}

.campaign-poster iframe {
  aspect-ratio: 16 / 9;
  background: #000;
  min-height: 300px;
}

.campaign-poster figcaption {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  font-family: "Inter", sans-serif;
}

/* ============================================================
   RELATED SECTIONS
============================================================ */
.related-sections {
  padding-bottom: 80px;
  padding: 114px;
}

/* Make carousels full screen on campaign page */
.campaign-content-wrapper .campaign-carousel {
  margin-right: -320px;
  padding-right: 0;
}

/* Make related sections carousels extend to full width */
.related-sections .campaign-carousel {
  margin-left: -114px;
  margin-right: -114px;
  padding-left: 114px;
  padding-right: 114px;
  width: calc(100% + 228px);
}

/* ============================================================
   MEDIA VIEWER (FULL SCREEN)
============================================================ */
.media-viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.media-viewer-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.media-viewer-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 120px;
}

.media-viewer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.media-viewer-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(206, 240, 0, 0.5);
  transform: scale(1.1);
}

.media-viewer-close:active {
  transform: scale(0.95);
}

.media-viewer-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.media-viewer-nav:hover {
  background: rgba(206, 240, 0, 0.2);
  border-color: rgba(206, 240, 0, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.media-viewer-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.media-viewer-prev {
  left: 24px;
}

.media-viewer-next {
  right: 24px;
}

.media-viewer-media {
  width: 100%;
  max-width: 1400px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.media-viewer-media img,
.media-viewer-media video {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.media-viewer-info {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 200px;
}

.media-viewer-counter {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.media-viewer-caption {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   CAMPAIGN PAGE RESPONSIVE DESIGN
============================================================ */
@media (max-width: 1024px) {
  .campaign-content-wrapper {
    padding: 0 32px;
  }

  .related-sections {
    padding-left: 24px;
    padding-right: 0;
    overflow-x: visible;
  }

  .related-sections .campaign-carousel {
    margin-left: -24px;
    margin-right: calc(-100vw + 100% + 24px);
    padding-left: 24px;
    padding-right: 0;
  }

  .campaign-content-wrapper .campaign-carousel {
    margin-right: -32px;
  }

  .campaign-hero-image {
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    border-radius: 0;
    margin: 0 0 48px 0;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  .campaign-posters-inner {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .campaign-content-wrapper {
    padding: 0 20px;
  }

  .campaign-content-wrapper .campaign-carousel {
    margin-right: -20px;
  }

  .back-button-container {
    padding-top: 32px;
    margin-bottom: 24px;
  }

  .campaign-hero-image {
    height: 50vh;
    min-height: 300px;
    max-height: 500px;
    margin: 0 0 32px 0;
    border-radius: 0;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  .campaign-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .campaign-header {
    margin-bottom: 32px;
  }

  .campaign-header-content {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .campaign-header-actions {
    align-self: flex-start;
  }

  .campaign-title {
    font-size: 28px;
  }

  .campaign-agency {
    font-size: 14px;
  }

  .campaign-header-actions button {
    width: 44px;
    height: 44px;
  }

  .campaign-header-actions .bookmark-button {
    width: 44px !important;
    height: 44px !important;
  }
  
  .campaign-info-bar { 
    flex-direction: column; 
    gap: 24px;
    padding: 24px 20px;
    margin-bottom: 32px;
  }
  
  .info-col {
    gap: 16px;
  }
  
  .campaign-description {
    margin-bottom: 32px;
  }
  
  .campaign-description-inner p {
    font-size: 16px;
    line-height: 1.7;
  }

  .campaign-credits {
    margin-bottom: 32px;
  }

  .campaign-credits-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .credit-role-title {
    font-size: 13px;
  }

  .credit-names,
  .credit-item,
  .credit-text {
    font-size: 15px;
  }
  
  .campaign-posters {
    margin-bottom: 32px;
  }

  .campaign-posters-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .campaign-posters-inner {
    gap: 24px;
  }
  
  .campaign-poster figcaption {
    font-size: 14px;
    margin-top: 12px;
  }
  
  .related-sections {
    padding-bottom: 60px;
    padding-left: 24px;
    padding-right: 0;
    overflow-x: visible;
  }

  .related-sections .campaign-carousel {
    margin-left: -24px;
    margin-right: calc(-100vw + 100% + 24px);
    padding-left: 24px;
    padding-right: 0;
  }

  .media-viewer-content {
    padding: 60px 16px 100px;
  }

  .media-viewer-close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .media-viewer-nav {
    width: 44px;
    height: 44px;
  }

  .media-viewer-prev {
    left: 16px;
  }

  .media-viewer-next {
    right: 16px;
  }

  .media-viewer-info {
    bottom: 24px;
    padding: 12px 20px;
    min-width: auto;
    max-width: 90%;
  }

  .media-viewer-counter {
    font-size: 12px;
  }

  .media-viewer-caption {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .campaign-content-wrapper {
    padding: 0 16px;
  }

  .related-sections {
    padding-left: 16px;
    padding-right: 0;
    overflow-x: visible;
  }

  .related-sections .campaign-carousel {
    margin-left: -16px;
    margin-right: calc(-100vw + 100% + 16px);
    padding-left: 16px;
    padding-right: 0;
  }

  .campaign-content-wrapper .campaign-carousel {
    margin-right: -16px;
  }

  .back-button-container {
    padding-top: 24px;
    margin-bottom: 20px;
  }

  .back-text {
    font-size: 18px;
  }

  .campaign-hero-image {
    height: 45vh;
    min-height: 250px;
    max-height: 400px;
    margin: 0 0 24px 0;
    border-radius: 0;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  .campaign-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .campaign-header {
    margin-bottom: 24px;
  }

  .campaign-title {
    font-size: 24px;
  }

  .campaign-agency {
    font-size: 13px;
  }

  .campaign-info-bar {
    padding: 20px 16px;
    gap: 20px;
  }

  .info-txt {
    font-size: 14px;
  }

  .campaign-description-inner p {
    font-size: 15px;
  }

  .campaign-credits {
    margin-bottom: 24px;
  }

  .campaign-credits-title {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .credit-role-title {
    font-size: 12px;
  }

  .credit-names,
  .credit-item,
  .credit-text {
    font-size: 14px;
  }

  .campaign-posters-title {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .campaign-posters-inner {
    gap: 20px;
  }
}

/* ---------- RELATED ---------- */

.campaign-related {
    margin-top: 80px;
}

.related-section {
    margin-bottom: 56px;
}

.related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.related-header h3 {
    font-size: 22px;
    font-weight: 600;
}

.view-more {
    font-size: 14px;
    color: #c6ff00;
    text-decoration: none;
}

.related-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 10px;
}

/* ============================================================
   SKELETON LOADERS
============================================================ */

/* Shimmer Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Base Skeleton Styles */
.skeleton-discover-card,
.skeleton-thumb,
.skeleton-case-image,
.skeleton-line {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
    border-radius: 14px;
}

/* Discover Section Skeletons */
.skeleton-discover-grid {
    width: 100%;
}

.skeleton-discover-card {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.06) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
    border-radius: 14px;
}

/* Campaign Card Skeletons */
.skeleton-card {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.skeleton-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.06) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

.skeleton-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
}

.skeleton-line {
    height: 16px;
    border-radius: 4px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.06) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

.skeleton-name {
    width: 80%;
    height: 18px;
}

.skeleton-brand {
    width: 60%;
    height: 14px;
}

.skeleton-carousel {
    display: flex;
    gap: 28px;
    overflow-x: hidden;
    padding-bottom: 20px;
    padding-top: 4px;
    margin-top: -4px;
    width: calc(100vw - 50px);
    position: relative;
    margin-left: -24px;
    margin-right: calc(-50px - 24px);
    padding-left: 50px;
    padding-right: 50px;
    box-sizing: border-box;
}

/* Case Study Skeletons */
.skeleton-case-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

.skeleton-case-card {
    position: relative;
}

.skeleton-case-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.06) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.1),
        0 0 22px rgba(255,255,255,0.08);
}

/* Responsive Skeleton Styles */
@media (max-width: 1024px) {
    .skeleton-case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .skeleton-carousel {
        width: calc(100vw - 32px);
        margin-left: -20px;
        margin-right: calc(-32px - 20px);
        padding-left: 32px;
        padding-right: 32px;
        gap: 24px;
    }

    .skeleton-card {
        width: 290px;
    }
}

@media (max-width: 768px) {
    .skeleton-case-grid {
        grid-template-columns: 1fr;
    }
    
    .skeleton-card {
        width: 260px;
    }

    .skeleton-carousel {
        width: calc(100vw - 20px);
        margin-left: -16px;
        margin-right: calc(-20px - 16px);
        padding-left: 20px;
        padding-right: 20px;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .skeleton-card {
        width: 240px;
    }

    .skeleton-carousel {
        width: calc(100vw - 16px);
        margin-left: -12px;
        margin-right: calc(-16px - 12px);
        padding-left: 16px;
        padding-right: 16px;
        gap: 16px;
    }
}

/* My Space and History Skeleton Styles */
.skeleton-history-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: 100%;
}

.skeleton-keyword-tag {
    height: 35px;
    width: 100px;
    border-radius: 32px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.06) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
    border: none;
    padding: 0;
}

@media (max-width: 1024px) {
    .skeleton-history-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .skeleton-history-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .skeleton-history-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ============================================================
   CAMPAIGN PAGE SKELETON STYLES
============================================================ */

/* Hero Image Skeleton */
.skeleton-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.06) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
    border-radius: 0;
    z-index: 1;
}

/* Campaign Header Skeletons */
.skeleton-campaign-title {
    width: 70%;
    height: 32px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.skeleton-campaign-agency {
    width: 40%;
    height: 18px;
    border-radius: 4px;
}

.skeleton-campaign-action-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.12) 50%,
        rgba(255, 255, 255, 0.06) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
    flex-shrink: 0;
}

/* Info Bar Skeleton */
.skeleton-info-txt {
    width: 100%;
    height: 16px;
    border-radius: 4px;
}

/* Media/Posters Skeleton */
.skeleton-posters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    width: 100%;
}

.skeleton-poster {
    width: 100%;
    margin: 0;
    padding: 0;
}

.skeleton-poster-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
}

/* Description Skeleton */
.skeleton-description-line {
    width: 100%;
    height: 20px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.skeleton-description-line:last-child {
    margin-bottom: 0;
}

/* Responsive Campaign Skeleton Styles */
@media (max-width: 1024px) {
    .skeleton-posters-grid {
        gap: 32px;
    }
    
    .skeleton-campaign-title {
        height: 28px;
    }
    
    .skeleton-campaign-agency {
        height: 16px;
    }
}

@media (max-width: 768px) {
    .skeleton-posters-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .skeleton-campaign-title {
        height: 28px;
        width: 80%;
    }
    
    .skeleton-campaign-agency {
        height: 14px;
        width: 50%;
    }
    
    .skeleton-campaign-action-btn {
        width: 44px;
        height: 44px;
    }
    
    .skeleton-description-line {
        height: 18px;
        margin-bottom: 14px;
    }
}

@media (max-width: 480px) {
    .skeleton-posters-grid {
        gap: 20px;
    }
    
    .skeleton-campaign-title {
        height: 24px;
        width: 85%;
    }
    
    .skeleton-campaign-agency {
        height: 13px;
        width: 55%;
    }
    
    .skeleton-campaign-action-btn {
        width: 44px;
        height: 44px;
    }
    
    .skeleton-description-line {
        height: 16px;
        margin-bottom: 12px;
    }
}




/* ============================================================
   PROFILE PAGE
============================================================ */

.profile-page-div{
    margin-top: 32px;
}

.profile-section {
    max-width: 100%; 
    margin: 0 auto;
}

.profile-section .myspace-header {
    margin-top: 32px;
}

.profile-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Profile Header Section */
.profile-header-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.profile-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    background: #CEF000;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.profile-user-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.profile-avatar-edit {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(206, 240, 0, 0.9);
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000;
}

.profile-avatar-edit:hover {
    background: #CEF000;
    transform: scale(1.1);
}

.profile-name {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #FFF;
    margin: 0;
}

.profile-username {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Profile Tabs */
.profile-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 32px;
}

.profile-tab {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    background: none;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.profile-tab:hover {
    color: rgba(255, 255, 255, 0.9);
}

.profile-tab.active {
    color: #CEF000;
    border-bottom-color: #CEF000;
}

/* Profile Tab Content */
.profile-tab-content {
    display: none;
}

.profile-tab-content.active {
    display: block;
}

/* Profile Account Card */
.profile-account-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 48px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 32px;
}

.profile-account-card:last-child {
    margin-bottom: 0;
}

/* Profile Section */
.profile-section {
    margin-bottom: 48px;
}

.profile-section:last-child {
    margin-bottom: 0;
}

.profile-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.profile-section-icon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

.profile-section-title {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #FFF;
    margin: 0;
}

.profile-info-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.profile-info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.profile-label {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    color: #808080;
    margin: 0;


}

.profile-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
    min-height: 48px;
}

.profile-input-wrapper:focus-within {
    border-color: rgba(206, 240, 0, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(206, 240, 0, 0.1);
}

.profile-input-wrapper.profile-input-error-state {
    border-color: rgba(255, 77, 77, 0.6);
    background: rgba(255, 77, 77, 0.05);
}

.profile-input-wrapper.profile-input-error-state:focus-within {
    border-color: rgba(255, 77, 77, 0.8);
    box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.15);
}

.profile-input-error {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: #ff4d4d;
    margin-top: 4px;
    min-height: 0;
    height: 0;
    overflow: hidden;
    transition: height 0.2s ease, margin-top 0.2s ease;
}

.profile-input-error:not(:empty) {
    height: auto;
    min-height: 16px;
    margin-top: 4px;
}

.profile-input-hint {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    /* margin-top: 4px; */
    margin-bottom: 0;
}

.profile-phone-wrapper {
    gap: 8px;
    padding-left: 16px;
}

.profile-phone-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.profile-phone-code {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-right: 4px;
    flex-shrink: 0;
}

.profile-phone-input {
    padding-left: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 12px;
    margin-left: 4px;
}

.profile-password-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.profile-change-password {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #CEF000;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.profile-change-password:hover {
    color: #d4f314;
    text-decoration: underline;
}

.profile-input-icon {
    width: 20px;
    height: 20px;
    margin-left: 18px;
    opacity: 0.6;
    flex-shrink: 0;
}

.profile-info-input,
.profile-info-select {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #FFF;
    background: transparent;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    flex: 1;
}

.profile-info-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.profile-info-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 40px;
}

.profile-info-select option {
    background: rgba(12, 20, 20, 0.95);
    color: #FFF;
}

.profile-select-arrow {
    position: absolute;
    right: 18px;
    width: 16px;
    height: 16px;
    pointer-events: none;
    opacity: 0.6;
    color: rgba(255, 255, 255, 0.6);
}

.profile-info-textarea {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #FFF;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    resize: vertical;
    min-height: 120px;
}

.profile-info-input:focus,
.profile-info-select:focus,
.profile-info-textarea:focus {
    outline: none;
}

.profile-info-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.profile-info-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 40px;
}

.profile-info-select option {
    background: rgba(12, 20, 20, 0.95);
    color: #FFF;
}

.profile-select-arrow {
    position: absolute;
    right: 18px;
    width: 16px;
    height: 16px;
    pointer-events: none;
    opacity: 0.6;
    color: rgba(255, 255, 255, 0.6);
}

/* Profile Actions */
.profile-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-save-btn,
.profile-cancel-btn {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.profile-save-btn {
    background: #CEF000;
    color: #000;
}

.profile-save-btn:hover:not(:disabled) {
    background: #d4f314;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(206, 240, 0, 0.35);
}

.profile-save-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    background: rgba(206, 240, 0, 0.3);
}

.profile-save-btn:disabled:hover {
    background: rgba(206, 240, 0, 0.3);
    transform: none;
    box-shadow: none;
}

.profile-cancel-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.profile-cancel-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.15);
    color: #FFF;
    transform: translateY(-2px);
}

.profile-cancel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
}

.profile-cancel-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: none;
}

/* Submit Button */
.profile-submit-btn {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #CEF000;
    color: #000;
    width: auto;
    align-self: flex-start;
    margin-top: 8px;
}

.profile-submit-btn:hover {
    background: #d4f314;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(206, 240, 0, 0.35);
}

/* FAQ Section */
.profile-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.profile-faq-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
}

.profile-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.profile-faq-question:hover {
    color: #FFFFFF;
}

.profile-faq-question span {
    flex: 1;
    padding-right: 16px;
}

.profile-faq-arrow {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.profile-faq-question.active .profile-faq-arrow {
    transform: rotate(180deg);
    color: rgba(255, 255, 255, 0.9);
}

.profile-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.profile-faq-answer.active {
    max-height: 1000px;
    padding-top: 0;
    padding-bottom: 20px;
}

.profile-faq-answer p {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    padding-top: 8px;
}

.profile-faq-loading,
.profile-faq-empty {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 32px 20px;
}

/* Chat Section */
.profile-chat-section {
    text-align: center;
    padding: 0;
}

.profile-chat-text {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 24px;
}

.profile-chat-btn {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #CEF000;
    color: #000;
}

.profile-chat-btn:hover {
    background: #d4f314;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(206, 240, 0, 0.35);
}

/* Responsive */
@media (max-width: 768px) {

    .profile-header-section {
        gap: 16px;
    }

    .profile-avatar {
        width: 64px;
        height: 64px;
    }

    .profile-name {
        font-size: 20px;
    }

    .profile-username {
        font-size: 14px;
    }

    .profile-tabs {
        margin-bottom: 24px;
    }

    .profile-tab {
        font-size: 14px;
        padding: 10px 16px;
    }

    .profile-section {
        margin-bottom: 32px;
    }

    .profile-section-title {
        font-size: 18px;
    }

    .profile-info-section {
        gap: 20px;
    }

    .profile-phone-wrapper {
        flex-wrap: wrap;
    }

    .profile-account-card {
        padding: 24px 20px;
    }

    .profile-actions {
        flex-direction: column;
        margin-top: 24px;
        padding-top: 24px;
    }

    .profile-submit-btn,
    .profile-chat-btn {
        width: 100%;
    }

    .profile-chat-text {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

/* ============================================================
   EXPLORE BY AGENCY MODAL
============================================================ */

.agency-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.agency-modal[style*="flex"] {
    opacity: 1;
    pointer-events: auto;
}

.agency-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.agency-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 85vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.agency-modal[style*="flex"] .agency-modal-content {
    transform: scale(1) translateY(0);
}

/* Modal Header */
.agency-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 32px 32px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.agency-modal-header-content {
    flex: 1;
}

.agency-modal-title {
    font-family: "Inter", sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #FFF;
    margin: 0 0 8px;
    line-height: 1.2;
}

.agency-modal-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
}

.agency-modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.agency-modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: #FFF;
    transform: rotate(90deg);
}

.agency-modal-close:active {
    transform: rotate(90deg) scale(0.95);
}

/* Modal Body */
.agency-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px 32px 32px;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

/* Search Bar */
.agency-search-wrapper {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.agency-search-input-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.agency-search-input-container:focus-within {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(206, 240, 0, 0.3);
    box-shadow: 0 0 0 3px rgba(206, 240, 0, 0.1);
}

.agency-search-icon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.agency-search-input-container:focus-within .agency-search-icon {
    color: rgba(206, 240, 0, 0.8);
}

.agency-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    padding: 0;
    line-height: 1.5;
}

.agency-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.agency-search-clear {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: none;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    transition: all 0.2s ease;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.agency-search-clear:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.agency-search-clear svg {
    width: 16px;
    height: 16px;
}

/* Loading State */
.agency-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.agency-loading-spinner {
    position: relative;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: #CEF000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-top-color: rgba(206, 240, 0, 0.6);
    animation-duration: 1.5s;
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-top-color: rgba(206, 240, 0, 0.4);
    animation-duration: 2s;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.agency-loading-text {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Agency List Grid */
.agency-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
}

/* Agency Item */
.agency-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-top: 0;
}

.agency-item:not(:first-child) {
    margin-top: 16px;
}

.agency-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(206, 240, 0, 0.4);
    transform: translateX(4px);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(206, 240, 0, 0.3);
}

.agency-item:active {
    transform: translateX(2px);
}

.agency-item-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px 24px;
    gap: 0;
    height: 100%;
}

/* Agency Image */
.agency-item-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.agency-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.agency-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agency-item:hover .agency-item-image {
    transform: scale(1.05);
}

.agency-item-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.agency-item:hover .agency-item-image-overlay {
    opacity: 1;
}


/* Agency Content */
.agency-item-content {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-width: 0; /* Allow text truncation */
    gap: 16px;
}

.agency-item-name {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFF;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
    word-break: break-word;
    flex: 1;
}

.agency-item:hover .agency-item-name {
    color: #CEF000;
}

.agency-item-description {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.agency-item-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    opacity: 0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.agency-item:hover .agency-item-arrow {
    opacity: 1;
    color: #CEF000;
    transform: translateX(4px);
}

/* Empty State */
.agency-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.agency-empty-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.3);
    opacity: 0.5;
}

.agency-empty-title {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #FFF;
    margin: 0 0 12px;
}

.agency-empty-text {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    max-width: 400px;
    line-height: 1.6;
}

/* Scrollbar Styling */
.agency-modal-body::-webkit-scrollbar {
    width: 8px;
}

.agency-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.agency-modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: background 0.2s ease;
}

.agency-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .agency-modal {
        padding: 12px;
    }

    .agency-modal-content {
        max-height: 90vh;
        border-radius: 20px;
    }

    .agency-modal-header {
        padding: 24px 20px 20px;
    }

    .agency-modal-title {
        font-size: 24px;
    }

    .agency-modal-subtitle {
        font-size: 13px;
    }

    .agency-modal-body {
        padding: 20px;
    }

    .agency-list {
        gap: 14px;
    }

    .agency-item-inner {
        padding: 16px 20px;
    }

    .agency-item-name {
        font-size: 15px;
    }

    .agency-item-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .agency-modal-header {
        flex-direction: column;
        gap: 16px;
    }

    .agency-modal-close {
        align-self: flex-end;
        margin-left: 0;
    }

    .agency-modal-title {
        font-size: 22px;
    }
}

/* ============================================================
   DISCOVER PAGE
============================================================ */
.discover-page-section {
    margin-top: 40px;
    padding-bottom: 40px;
}

/* Background for discover page - matches home page */
body.discover-page {
    background: radial-gradient(circle at top, #252500 0%, #050503 40%, #000000 100%);
    background-attachment: fixed;
}

body.discover-page .page-wrap {
    background: transparent;
}

.discover-page-header {
    margin-bottom: 32px;
}

.discover-page-title {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 8px 0;
}

.discover-page-subtitle {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.6;
    margin: 0;
}

.discover-search-container {
    margin-bottom: 32px;
}

.discover-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.3s ease;
}

.discover-search-wrapper:focus-within {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(206, 240, 0, 0.1);
}

.discover-search-icon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.discover-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
}

.discover-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.discover-carousels-container {
    margin-top: 60px;
    margin-bottom: 80px;
}

.discover-carousels-container .campaign-section {
    margin-top: 0;
    margin-bottom: 50px;
}

.discover-carousels-container .campaign-section:last-child {
    margin-bottom: 0;
}

.discover-items-container {
    position: relative;
    margin-top: 80px;
    margin-bottom: 40px;
}

.discover-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 16px;
}

.discover-loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #CEF000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.discover-loading-text {
    color: rgba(255, 255, 255, 0.6);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    margin: 0;
}

.discover-empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    width: 100%;
}

.discover-empty-text {
    color: rgba(255, 255, 255, 0.6);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    margin: 0;
    text-align: center;
    width: 100%;
}

.discover-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    padding-top: 8px;
}

/* Region category: vertical list */
.discover-list.region-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 0;
}

.discover-list.region-list::-webkit-scrollbar {
    height: 6px;
}

.discover-list.region-list::-webkit-scrollbar-track {
    background: transparent;
}

.discover-list.region-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.discover-list.region-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Region list item styling */
.discover-list.region-list .discover-item,
.discover-item.region-list-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    min-width: auto;
    max-width: 100%;
    flex: 0 0 auto;
}

.discover-item.region-list-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(206, 240, 0, 0.3);
    transform: none;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
}

.region-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.region-item-name {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.region-item-arrow {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

@media (max-width: 1400px) {
    .discover-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .discover-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobile: Show tabs as horizontal carousel */
    .discover-items-container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* Mobile: Show subcategories in grid (except region list) */
    .discover-list:not(.region-list) {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        padding-bottom: 0 !important;
        padding-right: 0 !important;
        scroll-padding-left: 0 !important;
        scroll-padding-right: 0 !important;
    }
    
    /* Region list: vertical on mobile */
    .discover-list.region-list {
        flex-direction: column !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        padding-right: 0 !important;
        gap: 12px !important;
    }
    
    .discover-list:not(.region-list) .discover-item {
        flex: 1 0 0 !important;
        min-width: auto !important;
        max-width: 100% !important;
        width: 100% !important;
        flex-grow: 1 !important;
        flex-shrink: 1 !important;
        flex-basis: auto !important;
    }
    
    .discover-list.region-list .discover-item,
    .discover-item.region-list-item {
        padding: 14px 18px;
        width: 100% !important;
        min-width: auto !important;
        max-width: 100% !important;
        flex: 0 0 auto !important;
    }
}

@media (max-width: 480px) {
    .discover-items-container {
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }
    
    /* Small mobile: 2-column grid (except region list) */
    .discover-list:not(.region-list) {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding-right: 0 !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
    }
    
    .discover-list:not(.region-list) .discover-item {
        min-width: auto !important;
        max-width: 100% !important;
        width: 100% !important;
        flex: 1 0 0 !important;
        flex-grow: 1 !important;
        flex-shrink: 1 !important;
        flex-basis: auto !important;
        padding: 10px 16px !important;
    }
    
    .discover-list.region-list .discover-item {
        padding: 12px 16px;
    }
}

.discover-item {
    display: flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.discover-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(206, 240, 0, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.discover-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(206, 240, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(206, 240, 0, 0.1);
}

.discover-item:hover::before {
    opacity: 1;
}

.discover-item:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.discover-item-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.discover-item-flag {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
}

.discover-item-name {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.discover-view-all-button {
    background: rgba(206, 240, 0, 0.075);
    border-color: rgba(206, 240, 0, 0.2);
}

.discover-view-all-button:hover {
    background: rgba(206, 240, 0, 0.12);
    border-color: rgba(206, 240, 0, 0.4);
}

.discover-view-all-button .discover-item-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.discover-view-all-button .discover-item-name {
    color: #CEF000;
    font-weight: 600;
}

.discover-view-all-button svg {
    color: #CEF000;
    flex-shrink: 0;
}

.discover-load-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 16px;
}

.discover-load-more .discover-loading-spinner {
    width: 32px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top-color: #CEF000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.discover-load-more .discover-loading-text {
    color: rgba(255, 255, 255, 0.6);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    margin: 0;
}

.discover-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    padding: 20px 0;
}

.discover-pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.discover-pagination-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(206, 240, 0, 0.4);
    color: #CEF000;
}

.discover-pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.discover-pagination-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.discover-pagination-info {
    color: rgba(255, 255, 255, 0.7);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .discover-page-section {
        margin-top: 40px;
    }

    .discover-page-title {
        font-size: 28px;
    }

    .discover-page-subtitle {
        font-size: 14px;
    }

    .discover-search-wrapper {
        padding: 14px 18px;
    }

    .discover-item {
        padding: 14px 20px;
    }

    .discover-item-name {
        font-size: 15px;
    }

    .discover-pagination {
        gap: 16px;
        margin-top: 24px;
        padding: 16px 0;
    }

    .discover-pagination-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .discover-pagination-info {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .discover-page-title {
        font-size: 24px;
    }

    .discover-page-subtitle {
        font-size: 13px;
    }

    .discover-search-wrapper {
        padding: 12px 16px;
    }

    .discover-item {
        padding: 12px 16px;
    }

    .discover-item-name {
        font-size: 14px;
    }

    .discover-pagination {
        flex-direction: column;
        gap: 12px;
    }

    .discover-pagination-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }
}

/* ============================================================
   EXPLORE PAGE
============================================================ */
.explore-section {
    margin-top: 32px;
    padding-bottom: 40px;
}

.explore-header {
    margin-bottom: 48px;
    text-align: center;
}

.explore-title {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 12px 0;
}

.explore-subtitle {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.7;
    margin: 0;
}

.categories-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Category Section */
.explore-category-section {
    margin-bottom: 48px;
}

.explore-category-section:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 48px;
}

.explore-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.explore-category-title-group {
    flex: 1;
}

.explore-category-title {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 8px 0;
}

.explore-category-subtitle {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.6;
    margin: 0;
}


/* Horizontal Scrollable Subcategories */
.explore-subcategories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    padding: 8px 0;
}

@media (max-width: 1400px) {
    .explore-subcategories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .explore-subcategories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .explore-subcategories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .explore-subcategories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.explore-subcategory-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 24px;
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 60px;
}

.explore-subcategory-flag {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
}

.explore-subcategory-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(206, 240, 0, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.explore-subcategory-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(206, 240, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(206, 240, 0, 0.1);
}

.explore-subcategory-item:hover::before {
    opacity: 1;
}

.explore-subcategory-item:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.explore-view-all-button {
    background: transparent;
    border: 1px solid #4ade80;
    border-radius: 12px;
    padding: 16px 32px;
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    min-width: fit-content;
}

.explore-view-all-button:hover {
    background: rgba(74, 222, 128, 0.1);
    border-color: #4ade80;
    transform: translateY(-2px);
}

.explore-subcategories-loading {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    opacity: 0.7;
    padding: 24px;
    text-align: center;
}

.no-subcategories {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    opacity: 0.5;
    padding: 16px;
    text-align: center;
}

.subcategories-loading {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    opacity: 0.7;
    padding: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.subcategories-loading::before {
    content: "";
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.empty-state,
.error-state {
    text-align: center;
    padding: 60px 20px;
    color: #FFF;
    font-family: "Inter", sans-serif;
}

.empty-state p,
.error-state p {
    font-size: 18px;
    opacity: 0.7;
    margin-bottom: 20px;
}

.retry-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFF;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.retry-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.loading-skeleton {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.skeleton-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    height: 120px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .explore-title {
        font-size: 32px;
    }

    .explore-category-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .explore-section {
        margin-top: 40px;
    }

    .explore-header {
        margin-bottom: 32px;
    }

    .explore-title {
        font-size: 28px;
    }

    .explore-subtitle {
        font-size: 14px;
    }

    .categories-container {
        gap: 32px;
    }

    .explore-category-section:not(:last-child) {
        padding-bottom: 32px;
    }

    .explore-category-title {
        font-size: 24px;
    }

    .explore-category-subtitle {
        font-size: 14px;
    }


    .explore-subcategory-item {
        padding: 16px 18px;
        font-size: 14px;
        border-radius: 14px;
    }

    .explore-view-all-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .explore-title {
        font-size: 24px;
    }

    .explore-category-header {
        flex-direction: column;
        gap: 16px;
    }


    .explore-category-title {
        font-size: 20px;
    }

    .explore-category-subtitle {
        font-size: 13px;
    }

    .explore-subcategory-item {
        padding: 14px 16px;
        font-size: 13px;
        border-radius: 12px;
    }

    .explore-view-all-button {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ============================================================
   MY SPACE PAGE
============================================================ */
.myspace-section {
    margin-top: 40px;
    padding-bottom: 40px;
}

.myspace-header {
    margin-bottom: 48px;
    margin-top: 32px;
}

.myspace-title {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 48px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.myspace-subtitle {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.myspace-keywords-section {
    margin-bottom: 48px;
}

.myspace-keywords-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.myspace-keyword-tag {
    background: hsla(0, 0%, 13%, 1);
    border: 1px solid hsla(0, 0%, 17%, 1);
    border-radius: 32px;
    border-width: 1px;
    height: 35px;
    padding: 4px 16px;
    margin: 0;
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.myspace-keyword-tag:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(206, 240, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.myspace-keyword-tag:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.myspace-content-section {
    margin-bottom: 56px;
}

.myspace-content-section:last-child {
    margin-bottom: 0;
}

.myspace-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.myspace-section-title {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.myspace-carousel {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    padding-top: 4px;
    margin-top: -4px;
    width: calc(100vw - 50px);
    position: relative;
    margin-left: -24px;
    margin-right: calc(-50px - 24px);
    padding-left: 50px;
    padding-right: 50px;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x proximity;
}

.myspace-carousel::-webkit-scrollbar {
    display: none;
}

.myspace-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: 100%;
}

.myspace-loading {
    color: rgba(255, 255, 255, 0.6);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    padding: 40px 20px;
    text-align: center;
}

.myspace-empty-state {
    padding: 60px 20px;
    text-align: center;
}

.myspace-empty-text {
    color: rgba(255, 255, 255, 0.6);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    margin: 0;
}

/* Grid campaign cards in My Space */
.myspace-grid .campaign-card {
    width: 100%;
}

.myspace-grid .campaign-thumb {
    width: 100%;
}

.myspace-grid .campaign-thumb img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .myspace-section {
        margin-top: 40px;
    }

    .myspace-title {
        font-size: 40px;
    }

    .myspace-carousel {
        width: calc(100vw - 32px);
        margin-left: -20px;
        margin-right: calc(-32px - 20px);
        padding-left: 32px;
        padding-right: 32px;
        gap: 24px;
    }

    .myspace-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .myspace-section {
        margin-top: 32px;
    }

    .myspace-header {
        margin-bottom: 32px;
    }

    .myspace-title {
        font-size: 32px;
    }

    .myspace-subtitle {
        font-size: 16px;
    }

    .myspace-content-section {
        margin-bottom: 40px;
    }

    .myspace-carousel {
        width: calc(100vw - 20px);
        margin-left: -16px;
        margin-right: calc(-20px - 16px);
        padding-left: 20px;
        padding-right: 20px;
        gap: 20px;
        padding-bottom: 16px;
    }

    .myspace-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .myspace-keyword-tag {
        font-size: 13px;
        height: 32px;
        padding: 4px 14px;
    }
}

@media (max-width: 480px) {
    .myspace-title {
        font-size: 28px;
    }

    .myspace-subtitle {
        font-size: 14px;
    }

    .myspace-content-section {
        margin-bottom: 32px;
    }

    .myspace-carousel {
        width: calc(100vw - 16px);
        margin-left: -12px;
        margin-right: calc(-16px - 12px);
        padding-left: 16px;
        padding-right: 16px;
        gap: 16px;
        padding-bottom: 12px;
    }

    .myspace-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .myspace-keyword-tag {
        font-size: 12px;
        height: 30px;
        padding: 4px 12px;
    }
}

/* ============================================================
   FOR YOU PAGE
============================================================ */
.foryou-section {
    margin-top: 32px;
    padding-bottom: 40px;
}

.foryou-header {
    margin-bottom: 48px;
}

.foryou-title {
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.foryou-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

.foryou-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8x;
    width: 100%;
}

.foryou-loading {
    color: rgba(255, 255, 255, 0.6);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    padding: 60px 20px;
    text-align: center;
    grid-column: 1 / -1;
}

.foryou-empty-state {
    padding: 60px 20px;
    text-align: center;
    grid-column: 1 / -1;
}

.foryou-empty-text {
    color: rgba(255, 255, 255, 0.6);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    margin: 0;
}

/* Grid campaign cards in For You */
.foryou-grid .campaign-card {
    width: 100%;
}

.foryou-grid .campaign-thumb {
    width: 100%;
}

.foryou-grid .campaign-thumb img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .foryou-section {
        margin-top: 40px;
    }

    .foryou-title {
        font-size: 40px;
    }

    .foryou-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .foryou-section {
        margin-top: 32px;
    }

    .foryou-header {
        margin-bottom: 32px;
    }

    .foryou-title {
        font-size: 32px;
    }

    .foryou-subtitle {
        font-size: 16px;
    }

    .foryou-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .foryou-title {
        font-size: 28px;
    }

    .foryou-subtitle {
        font-size: 14px;
    }

    .foryou-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
