* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
}

h1, h2, p {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  hyphens: auto !important;
}

p {
  max-width: 60ch;
  width: 100%;
  margin: 0 auto;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  font-family: 'Montserrat', 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
  height: 100%;
}

body{
  background: white;
  color:white;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Navbar */
#navbar {
  position: relative;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1vh 10px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  z-index: 1000;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: black;
}

#menu-btn {
  display: block;
  color: black;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: clamp(12px,2vh,14px);
}

#dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  flex-direction: column;
  border-radius: 0 0 20px 20px;
  display: flex;
}

.relative{
  position:relative;
  overflow:visible !important;
}

#dropdown-menu.hidden {
  display: none;
}

.nav-link {
  color: black;
  font-size: 15px;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
}

#navbar.open{
border-radius:20px 20px 0 0;
}

#navbar.closed{
border-radius:20px;
}

#language-btn {
  color: black;
  font-size: 15px;
  padding: 10px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
}

#language-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 10px;
  margin-top: 5px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  width: 200px;
  z-index: 99999;
}

#language-dropdown.hidden {
  display: none;
}

#language-dropdown:not(.hidden){
display:block;
}

.language-link {
  display: block;
  padding: 10px 15px;
  color: black;
  text-decoration: none;
}

/* Hero */
.hero {
  width: 100%;
  margin-top:-80px;
}

.hero-help, .hero-help-f {
  position: relative;
  padding: 140px 20px 120px;
  text-align: center;
  overflow: hidden;
}

.hero-help::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://pub-61fc579dd1b34337825d49e443f261d9.r2.dev/girl-groopal.png') center/cover no-repeat;
  filter: blur(0.75px) brightness(1);
  z-index: -1;
}

.hero-help-f::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://pub-61fc579dd1b34337825d49e443f261d9.r2.dev/friendship-rizee.webp') center/cover no-repeat;
  filter: blur(0.75px) brightness(1);
  z-index: -1;
}

.hero-help *, .hero-help-f *{
  position: relative;
  z-index: 1;
}

.hero-help h1, .hero-help-f h1{
  font-size: clamp(40px, 5.8vw, 60px);
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.05;
  letter-spacing: -1px;
  hyphens: auto;
  padding-top: 70px;
}

/* Main */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.main-content-help {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section-hc {
  flex: 1;
  width: 100%;
  text-align: center;
  padding: 0 20px 50px 20px;
  display: flex;
  flex-direction: column;
}

.category-content {
  flex: 1;
}

/* Support Search */
.support-search {
  width: 100%;
  max-width: 650px;
  margin: 30px auto 0;
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,.18);
}

.support-search input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: #111;
}

.support-search button {
  border: none;
  background: #ff1978;
  color: #fff;
  padding: 0 22px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-search input::placeholder {
  color: #666;
}

/* Category Header */
.category-header {
  margin-bottom: 40px;
}

.category-title {
  font-size: clamp(36px,5vw,52px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  color: #ff1978;
}

/* Articles List */
.articles-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* Article Card */
.article-card {
  border: 2px solid #F2F2F2;
  border-radius: 38px;
  overflow: hidden;
  background: #F2F2F2;
  transition: .25s ease;
}

.article-card.active {
  border-color: #ff1978;
}

.article-content a{
     color: #ff1978;
     text-decoration: none;
}

.article-toggle {
  width: 100%;
  background: transparent;
  border: none;
  color: #111;
  display: block;
  text-align: left;
  padding: 34px 30px;
  cursor: pointer;
}

.article-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.article-title {
  flex: 1;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.08;
  color: #111;
  word-break: break-word;
}

.article-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  font-size: 42px;
  line-height: 1;
  flex-shrink: 0;
  color: #111;
  margin-top: 8px;
  transform: rotate(0deg);
  transition: transform .28s ease;
}

.article-card.active .article-arrow {
  transform: rotate(90deg);
}

.article-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 30px;
}

.article-card.active .article-content {
  padding: 0 30px 30px;
}

.article-content p {
  margin: 0;
  width: 100%;
  text-align: left;
  font-size: 20px;
  line-height: 1.7;
  color: #444;
}

/* Empty State */
.support-empty {
  width: 100%;
  padding: 60px 20px;
  text-align: center;
  color: #777;
}

.support-empty i {
  font-size: 40px;
  margin-bottom: 15px;
}

.support-empty h3 {
  margin-bottom: 8px;
  color: #111;
}

/* Breadcrumb */
.breadcrumb-hc {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 900px;
  margin: 0;
  padding: 20px 0 40px;
  text-align: left;
}

.breadcrumb-hc a {
  color: #ff1978;
  text-decoration: none;
  font-weight: 800;
}

.breadcrumb-hc span {
  color: #666;
  font-weight: 700;
}

/* Footer */
.footer {
  text-align: center;
  font-size: 10.5px !important;
  text-align: center !important;
  padding: 20px;
  background-color: #ff1978;
  font-stretch: normal;
  letter-spacing: normal;
  line-height: 1.4;
}

.footer a {
  font-size: 10.5px !important;
  font-family: 'Montserrat' !important;
  font-weight: 600;
  text-decoration: none;
  color: white;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-row a {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}

.footer-info {
  color: white;
  font-size: 9px !important;
  font-family: sans-serif !important;
  font-stretch: normal;
  letter-spacing: normal;
  line-height: 1.4;
  font-weight: 500;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 20px;
}

.icon {
  width: 25px !important;
  height: 25px !important;
  border-radius: 50%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 12px !important;
  transition: all 0.3s ease;
}

/* Mobile */
@media (max-width: 768px) {
  .article-card {
    border-radius: 32px;
  }

  .article-toggle {
    padding: 28px 22px;
  }

  .article-header {
    gap: 14px;
  }

  .article-title {
    font-size: 24px;
    line-height: 1.05;
  }

  .article-arrow {
    width: 28px;
    height: 28px;
    font-size: 36px;
    margin-top: 4px;
  }

  .article-card.active .article-content {
  padding: 0 30px 40px;
 }
 
  .article-content {
    padding: 0 22px;
  }
  
  .article-content {
   overflow: hidden;
   transition: max-height .45s ease, padding .35s ease;
  }

  .article-content p {
    margin-bottom: 12px;
    width: 100%;
    text-align: left;
    font-size: 20px;
    line-height: 1.7;
    color: #444;
   }
   
   .article-content a{
     color: #ff1978;
     text-decoration: none;
   }

  .support-search {
    border-radius: 18px;
  }

  .support-search input {
    padding: 16px;
    font-size: .95rem;
  }

  .support-search button {
    padding: 16px 14px;
    font-size: .85rem;
  }
}

@media (min-width: 1024px) {
  .logo, #menu-btn, .nav-link, #language-btn {
    color: white !important;
    font-weight: 700;
  }

  #menu-btn {
    display: none;
  }

  #navbar {
    background: transparent !important;
    backdrop-filter: none !important;
  }

  #dropdown-menu {
    display: flex !important;
    position: static;
    background: transparent;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    width: auto;
    padding: 0 15px;
  }

  .nav-link {
    padding: 0;
  }

  .relative {
    width: auto;
  }

  #language-btn {
    padding: 0;
    text-align: center;
    width: auto;
  }

  #language-dropdown {
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
  }
}

/* Main */
.main-content-help-1{
  flex:1;
  width:100%;
  padding:40px 20px 70px;
}

.section-hc-1{
  width:100%;
  max-width:1400px;
  margin:0 auto;
}

/* Title */
#support-topic{
  font-size:clamp(36px,5vw,54px);
  font-weight:900;
  line-height:1;
  text-align:center;
  color:#ff1978;
  margin-bottom:45px;
  letter-spacing:-1px;
}

/* Grid */
.support-grid{
  width:70%;
  margin:0 auto;

  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:28px;
}

/* Card */
.support-card{
  width:100%;
  max-width:300px;
  margin:0 auto;

  background:#F7F7F7;
  border-radius:34px;

  padding:30px 24px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  text-align:center;
  text-decoration:none;

  border:2px solid transparent;

  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;

  cursor:pointer;
}

.support-card:hover{
  transform:translateY(-6px);
  border-color:#ff1978;
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}

/* Image */
.support-card img{
  width:120px;
  height:120px;

  object-fit:cover;
  display:block;

  border-radius:24px;

  margin:0 auto 22px auto;
}

/* Title */
.support-card h3{
  font-size:24px;
  line-height:1.15;
  font-weight:900;

  color:#111;

  text-align:center;

  word-break:break-word;
}

/* Empty */
.support-empty{
  width:100%;
  padding:70px 20px;
  border-radius:30px;
  background:#F7F7F7;
  text-align:center;
}

.support-empty h3{
  color:#111;
  margin-bottom:10px;
}

.support-empty p{
  color:#666;
}

/* Mobile */
@media (max-width:768px){

  .main-content-help-1{
    padding:30px 16px 60px;
  }

  .support-grid{
    width:70%;
    grid-template-columns:1fr;
    gap:22px;
  }

  .support-card{
    max-width:100%;
    border-radius:28px;
    padding:24px 20px;
  }

  .support-card img{
    width:95px;
    height:95px;
    margin-bottom:18px;
  }

  .support-card h3{
    font-size:22px;
  }
}

/* FORM */

.partner-form{
  width:100%;
  max-width:760px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
}

/* LABELS */

.partner-form label{
  display:block;
  margin-bottom:12px;
  margin-top:25px;
  font-size:15px;
  font-weight:800;
  color:#ff1978;
  text-align:left;
}

/* INPUTS */

.partner-form input:not([type="checkbox"]),
.partner-form textarea{
  width:100%;
  border:none;
  outline:none;
  background:#f3f3f3;
  border-radius:25px;
  padding:24px 28px;
  font-size:18px;
  color:#222;
  font-weight:500;
}

.partner-form input::placeholder,
.partner-form textarea::placeholder{
  color:#a7a7a7;
}

.partner-form textarea{
  min-height:220px;
  resize:none;
}

/* ERRORS */

.error{
  display:block;
  color:#e26f6f;
  font-size:13px;
  margin-top:12px;
  text-align:left;
}

/* HINTS */

.hint{
  display:block;
  margin-top:15px;
  font-size:13px;
  line-height:1.5;
  color:#666;
  text-align:left;
}

/* DROPDOWN */

.dropdown-form{
  width:100%;
  position:relative;
}

/* HEADER */

.dropdown-form-header{
  height:72px;
  background:#ff1978;
  border-radius:25px;
  padding:0 22px;
  color:white;
  font-size:18px;
  font-weight:500;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
}

/* MENU */

.dropdown-form-list{
  position:absolute;
  top:82px;
  left:0;
  width:100%;
  background:#102737;
  border-radius:25px;
  overflow:hidden;
  display:none;
  z-index:999;
}

/* ITEMS */

.dropdown-form-item{
  min-height:72px;
  padding:0 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:#d7dce2;
  font-size:18px;
  cursor:pointer;
  border-bottom:1px solid rgba(255,255,255,.05);
}

.dropdown-form-item:last-child{
  border-bottom:none;
}

.dropdown-form-item:hover{
  background:rgba(255,255,255,.04);
}

/* RADIO CIRCLE */

.dropdown-form-circle{
  width:22px;
  height:22px;
  border-radius:50%;
  border:3px solid #ff1978;
}

.dropdown-form-item.active .dropdown-form-circle{
  background:#ff1978;
}

/* FILE UPLOAD */

.upload-box{
  margin-top:20px;
}

.upload-label{
  width:100%;
  min-height:180px;
  border:2px dashed #ff1978;
  border-radius:28px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  cursor:pointer;
  padding:30px;
}

.upload-label i{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:42px;
  color:#ff1978;
  margin:0 auto 15px;
  text-align:center;
}

.upload-label span{
  width:100%;
  display:block;
  color:#ff1978;
  font-size:18px;
  font-weight:700;
  text-align:center;
  margin-bottom:8px;
}

.upload-label small{
  width:100%;
  display:block;
  color:#777;
  font-size:13px;
  line-height:1.4;
  text-align:center;
}

.file-list-container{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:15px;
  width:100%;
}

.file-info{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  width:100%;
  margin-bottom:10px;
}

.file-name{
  flex:1;
  min-width:0;
  color:#fff;
  font-size:10px;
  font-weight:700;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}

.file-size{
  display:none;
}

.remove-file-btn{
  width:24px;
  height:24px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.25);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:700;
  line-height:1;
  cursor:pointer;
  flex-shrink:0;
  padding:0;
  transition:.2s;
}

.remove-file-btn:hover{
  background:rgba(255,255,255,.4);
}

.file-item{
  background:#ff1978;
  border-radius:18px;
  padding:12px;
  min-height:80px;
  display:flex;
  flex-direction:column;
  overflow:hidden;
}

.progress-bar-container{
  margin-top:auto;
  width:100%;
  height:5px;
  background:rgba(255,255,255,.25);
  border-radius:999px;
}

.progress-bar-fill{
  height:100%;
  width:0%;
  background:#fff;
  border-radius:999px;
  transition:width .3s ease;
}

@media (max-width:768px){

  .file-list-container{
    grid-template-columns:repeat(3,1fr);
    gap:8px;
  }

  .file-item{
    min-height:70px;
    padding:10px;
  }

  .file-name{
    font-size:10px;
  }

  .upload-label{
    min-height:150px;
    padding:20px;
  }

  .upload-label i{
    font-size:36px;
  }

  .upload-label span{
    font-size:16px;
  }

}

@media (max-width:480px){

  .file-list-container{
    grid-template-columns:repeat(2,1fr);
  }

}
/* CAPTCHA */

.cf-turnstile{
  margin-top:30px;
  display:flex;
  justify-content:flex-start;
}

/* CHECKBOX */

.checkbox{
  margin-top:20px;
  display:flex;
  align-items:center;
  gap:12px;
}

.checkbox input{
  width:24px;
  height:24px;
  accent-color:#ff1978;
}

.checkbox label{
  margin:0;
  color:#666;
  font-size:15px;
  font-weight:500;
}

.checkbox a{
  color:#ff1978;
  font-weight:700;
  text-decoration:none;
}

/* BUTTON */

#submitBtn{
  width:220px;
  height:72px;
  margin:40px auto 0;
  border:none;
  border-radius:999px;
  background:#ff1978;
  color:white;
  font-size:14px;
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
  cursor:pointer;
  transition:.25s;
}

#submitBtn:hover{
  transform:translateY(-2px);
}

@keyframes shake{
  0%{transform:translateX(0);}
  20%{transform:translateX(-6px);}
  40%{transform:translateX(6px);}
  60%{transform:translateX(-4px);}
  80%{transform:translateX(4px);}
  100%{transform:translateX(0);}
}

.shake{
  animation:shake 0.3s ease;
  border:1px solid red;
}

/* SUCCESS */

.success{
  text-align:center;
  margin-top:15px;
  color:#00b35f;
}

/* MOBILE */

@media(max-width:768px){

  .partner-form{
    max-width:100%;
  }

  .partner-form input:not([type="checkbox"]),
  .partner-form textarea{
    padding:20px;
    font-size:16px;
  }

  .dropdown-form-header,
  .dropdown-form-item{
    min-height:64px;
    font-size:16px;
  }

  #submitBtn{
    width:200px;
    height:64px;
  }
}