@font-face {
  font-family: poppin;
  src: local("Poppins-Medium"), url(../font/Poppins-Medium.ttf) format("woff");
}

@font-face {
  font-family: Pyidaungsu;
  src: local("Pyidaungsu"), url(../font/Pyidaungsu.ttf);
}

@font-face {
  font-family: argon;
  src: local("argon"), url(../font/argon.ttf);
}

@font-face {
  font-family: hopong;
  src: local("hopong"), url(../font/hopongv1.ttf);
}

:root {
  --primarycolor: #00c6ad;

  font-size: 10px;

  --black: #000;
  --white-logo: url("../img/logo2.png");
  --black-logo: url("../img/logo1.jpg");
  --iconcolor: #222;

  --bg-color: #1e1e1e;
  --bg-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  --bgt-color: #222;
  --text-color: #eee;
  --white-text-color: rgba(255, 255, 255, 0.7);
  --brand-text-color: rgb(32, 201, 151);
  --border: 0.16rem solid rgba(0, 0, 0, 0.2);
  --footer-border: 2px solid rgba(20, 184, 166, 0.5);
  --box-shadow-inset: inset 5px 5px 10px #96c0d9, inset -5px -5px 10px #caffff;

  --alert-bg-color: rgba(255, 71, 87, 0.1);
  --alert-border-color: rgba(255, 71, 87, 0.2);

  /* Toast theme variables */
  --success-bg-1: rgba(0, 198, 173, 0.15);
  --success-bg-2: rgba(0, 198, 173, 0.08);
  --success-border-color: rgba(0, 198, 173, 0.35);

  --warning-bg-1: rgba(255, 193, 7, 0.15);
  --warning-bg-2: rgba(255, 193, 7, 0.08);
  --warning-border-color: rgba(255, 193, 7, 0.35);

  --danger-bg-1: rgba(255, 71, 87, 0.15);
  --danger-bg-2: rgba(255, 71, 87, 0.08);
  --danger-border-color: var(--alert-border-color);

  /* Live Search Variables */
  --search-bg: rgba(30, 30, 30, 0.95);
  --search-border: rgba(0, 198, 173, 0.4);
  --search-item-bg: rgba(0, 198, 173, 0.08);
  --search-item-hover-bg: rgba(0, 198, 173, 0.15);
  --search-item-text: #eee;
  --search-item-border: rgba(0, 198, 173, 0.2);

  /* Footer Theme Variables */
  --footer-primary-color: #14b8a6;
  --footer-accent-color: #0d9488;
  --footer-dark-bg: rgba(15, 23, 42, 0.95);
  --footer-light-bg: rgba(30, 41, 59, 0.95);
  --footer-section-bg: rgba(30, 41, 59, 0.3);
  --footer-border-color: rgba(20, 184, 166, 0.2);
  --footer-border-color-light: rgba(20, 184, 166, 0.15);
  --footer-text-primary: #ffffff;
  --footer-text-secondary: rgba(255, 255, 255, 0.9);
  --footer-text-tertiary: rgba(255, 255, 255, 0.7);
  --footer-accent-light: rgba(20, 184, 166, 0.1);
  --footer-accent-medium: rgba(20, 184, 166, 0.2);
  --footer-accent-strong: rgba(20, 184, 166, 0.3);
  --footer-accent-stronger: rgba(20, 184, 166, 0.4);
  --footer-glow: rgba(20, 184, 166, 0.3);
  --footer-glow-intense: rgba(20, 184, 166, 0.2);
  --footer-shadow: 0 4px 15px rgba(20, 184, 166, 0.2);
  --footer-shadow-hover: 0 6px 20px rgba(20, 184, 166, 0.3);
  --footer-shadow-intense: 0 10px 25px rgba(20, 184, 166, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "argon", "poppin", "Pyidaungsu", sans-serif;
  user-select: none;
}

body.active {
  /* --primarycolor: #7D9EA8; */
  --primarycolor: #185444;

  --black: #f5f5f5;
  --iconcolor: #00bbff;

  --bg-color: #424c55;
  --white-logo: url("../img/logo1.jpg");
  --black-logo: url("../img/logo2.png");

  --bgt-color: linear-gradient(145deg, #f0f0f0, #cacaca);
  --border: 0.16rem solid rgba(0, 0, 0, 0.4);

  --box-shadow-inset: inset 5px 5px 10px #6c7d87, inset -5px -5px 10px #a4b6c0;
}

body {
  background: var(--bg-gradient);
  color: var(--black);
  position: relative;
  font-size: 1.6rem;
}

/* Twinkling particle effect for body */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 20px 30px, #14b8a6, transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(20, 184, 166, 0.8), transparent),
    radial-gradient(1px 1px at 90px 40px, #14b8a6, transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(20, 184, 166, 0.6), transparent),
    radial-gradient(2px 2px at 160px 30px, #14b8a6, transparent),
    radial-gradient(1px 1px at 200px 120px, rgba(20, 184, 166, 0.7), transparent),
    radial-gradient(2px 2px at 250px 60px, #14b8a6, transparent),
    radial-gradient(1px 1px at 300px 100px, rgba(20, 184, 166, 0.5), transparent);
  background-repeat: repeat;
  background-size: 350px 200px;
  animation: twinkle 4s ease-in-out infinite alternate;
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

.customcontainer {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.displayfixer{
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width:768px) {
  .customcontainer {
    padding: 0 20px;
  }
}

.fontcolor {
  color: var(--text-color);
}

.whitefontcolor{
  color: var(--white-text-color);
}

.noveltextcolor {
  color: var(--text-color);
  position: relative;
  min-height: 500px;
}

.noveltextcolor::before {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  z-index: 0;
  background: url("../img/logo1.jpg");
  /* background-repeat: no-repeat; */
  background-position: center;
  background-size: cover;
}

.chapterTextMM {
  display: none;
}

.chapterTextMM.show {
  display: block;
}

/* Payment Cards Styles */
.payment-cards-section {
  margin: 4.8rem 0;
  padding: 3.2rem 0;
}

.payment-cards-title {
  text-align: center;
  font-size: 3.52rem;
  font-weight: 600;
  color: var(--white-text-color);
  margin-bottom: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.payment-cards-subtitle {
  text-align: center;
  color: var(--text-color);
  opacity: 0.8;
  margin-bottom: 4.8rem;
  font-size: 1.76rem;
}

.payment-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.6rem;
}

.payment-card {
  width: 100%;
  background: linear-gradient(135deg, rgba(0, 198, 173, 0.1) 0%, rgba(0, 198, 173, 0.05) 100%);
  border: 2px solid rgba(0, 198, 173, 0.3);
  padding: 3.2rem;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  overflow: hidden;
  border-radius: 15px;
}

.payment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 198, 173, 0.1) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

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

.payment-card:hover {
  transform: translateY(-5px);
  border-color: var(--primarycolor);
  box-shadow: 0 15px 30px rgba(0, 198, 173, 0.2);
}

.payment-header {
  display: flex;
  align-items: center;
  margin-bottom: 3.2rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(0, 198, 173, 0.2);
}

.payment-icon {
  width: 50px;
  height: 50px;
  background: var(--primarycolor);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.6rem;
  font-size: 2.4rem;
  color: white;
}

.payment-method-name {
  font-size: 2.56rem;
  font-weight: 600;
  color: var(--white-text-color);
  margin: 0;
}

.payment-details {
  margin-bottom: 3.2rem;
}

.payment-details p {
  margin-bottom: 1.28rem;
  padding: 0.96rem;
  background: rgba(0, 198, 173, 0.05);
  border-radius: 6px;
  color: var(--text-color);
  font-size: 1.52rem;
}

.payment-details p strong {
  color: var(--primarycolor);
  font-weight: 600;
  margin-right: 0.8rem;
}

.payment-instructions {
  background: rgba(0, 198, 173, 0.08);
  padding: 2.4rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 198, 173, 0.2);
}

.payment-instructions h4 {
  color: var(--primarycolor);
  font-size: 1.92rem;
  margin-bottom: 1.6rem;
  font-weight: 600;
}

.payment-instructions ol {
  margin: 0;
  padding-left: 1.92rem;
}

.payment-instructions li {
  color: var(--text-color);
  margin-bottom: 1.28rem;
  line-height: 1.5;
  font-size: 1.52rem;
}

.payment-instructions li:last-child {
  margin-bottom: 0;
}

.important-note {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
  border: 1px solid rgba(255, 193, 7, 0.3);
  padding: 1.6rem;
  border-radius: 8px;
  margin: 1.6rem 0;
}

.important-note strong {
  color: #ffc107;
  display: block;
  margin-bottom: 0.8rem;
}

.important-note span {
  color: var(--text-color);
  font-style: italic;
}

/* Star Order Modal Styles */
.star-order-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.star-order-modal-content {
  position: relative;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
  border: 2px solid rgba(220, 38, 38, 0.4);
  margin: 10% auto;
  padding: 0;
  width: 90%;
  max-width: 500px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.star-order-modal-header {
  display: flex;
  align-items: center;
  padding: 2.4rem 3.2rem;
  background: rgba(220, 38, 38, 0.1);
  border-bottom: 1px solid rgba(220, 38, 38, 0.2);
  position: relative;
}

.star-order-modal-header i {
  color: #dc2626;
  font-size: 2.4rem;
  margin-right: 1.6rem;
}

.star-order-modal-header h3 {
  color: var(--white-text-color);
  font-size: 2.24rem;
  font-weight: 600;
  margin: 0;
  flex-grow: 1;
}

.star-order-modal-close {
  position: absolute;
  right: 2.4rem;
  top: 50%;
  transform: translateY(-50%);
  color: #dc2626;
  font-size: 3.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.star-order-modal-close:hover {
  background: rgba(220, 38, 38, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.star-order-modal-body {
  padding: 3.2rem;
}

.star-order-modal-body p {
  color: var(--text-color);
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

.star-order-modal-footer {
  padding: 2.4rem 3.2rem;
  background: rgba(220, 38, 38, 0.05);
  border-top: 1px solid rgba(220, 38, 38, 0.15);
  text-align: center;
}

.star-order-modal-btn {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  border: none;
  padding: 1.28rem 3.2rem;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.star-order-modal-btn:hover {
  background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* Help Page Styles */
.help-page-container {
  min-height: 100vh;
  background: var(--bg-gradient);
  padding: 0;
}

/* Hero Section */
.help-hero-section {
  border-bottom: 2px solid rgba(0, 198, 173, 0.2);
  padding: 6.4rem 3.2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.help-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.help-hero-icon {
  margin-bottom: 2.4rem;
}

.help-hero-icon i {
  font-size: 6.4rem;
  color: var(--primarycolor);
  text-shadow: 0 0 20px rgba(0, 198, 173, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.help-hero-title {
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--white-text-color);
  margin-bottom: 1.6rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.help-hero-subtitle {
  font-size: 1.92rem;
  color: var(--text-color);
  opacity: 0.9;
  margin: 0;
}

/* Section Headers */
.help-section-header {
  text-align: center;
  margin-bottom: 4.8rem;
  padding: 0 3.2rem;
}

.help-section-title {
  font-size: 4rem;
  font-weight: 600;
  color: var(--white-text-color);
  margin-bottom: 1.6rem;
  position: relative;
}

.help-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primarycolor), var(--brand-text-color));
  border-radius: 2px;
}

.help-section-subtitle {
  font-size: 1.76rem;
  color: var(--text-color);
  opacity: 0.8;
  margin: 0;
}

/* FAQ Section */
.help-faq-section {
  padding: 6.4rem 0;
}

.help-faq-grid {
  display: grid;
  gap: 3.2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.help-faq-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 2px solid rgba(0, 198, 173, 0.3);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}



/* Author Info Card Start */
.author-info-card {
  width: 100%;
  max-width: 380px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(0, 198, 173, 0.08) 0%, rgba(0, 198, 173, 0.03) 100%);
  border: 2px solid rgba(0, 198, 173, 0.25);
  border-radius: var(--border-radius-lg);
  padding: 3.2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
}

.author-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 198, 173, 0.08) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.author-avatar-container{
  width: 100%;
  max-width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

.author-avatar-container img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 198, 173, 0.15);
  border-color: rgba(0, 198, 173, 0.4);
}

.author-info-card:hover::before {
  opacity: 1;
}

.author-info-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 4px solid rgba(0, 198, 173, 0.3);
  background: var(--bg-secondary);
  position: relative;
  transition: all 0.3s ease;
}

.author-info-avatar:hover {
  border-color: rgba(0, 198, 173, 0.6);
  transform: scale(1.05);
}

.author-info-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.author-info-avatar:hover img {
  transform: scale(1.1);
}

.author-info-name {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.author-info-bio {
  font-size: 1.52rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  max-height: 7.68rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.author-info-bio.no-bio {
  font-style: italic;
  opacity: 0.7;
}

.author-info-social {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin-top: auto;
}

.author-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 198, 173, 0.1), rgba(0, 198, 173, 0.2));
  border: 2px solid rgba(0, 198, 173, 0.3);
  color: var(--primary-color);
  font-size: 1.92rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.author-social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.author-social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 198, 173, 0.3);
  border-color: var(--primary-color);
}

.author-social-link:hover::before {
  opacity: 1;
}

.author-social-link:hover i {
  color: white;
  position: relative;
  z-index: 1;
}

.author-info-stats {
  display: flex;
  justify-content: space-around;
  padding: 1.6rem 0;
  border-top: 1px solid rgba(0, 198, 173, 0.2);
  margin-top: auto;
}

.author-stat-item {
  text-align: center;
}

.author-stat-number {
  font-size: 1.92rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.author-stat-label {
  font-size: 1.28rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.4rem;
}

.author-info-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 1.6rem;
}

.author-action-btn {
  padding: 1.2rem 2.4rem;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius-md);
  background: transparent;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.44rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
}

.author-action-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transition: left 0.3s ease;
}

.author-action-btn:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 198, 173, 0.3);
}

.author-action-btn:hover::before {
  left: 0;
}

.author-action-btn span,
.author-action-btn i {
  position: relative;
  z-index: 1;
}

.author-action-btn.subscribed {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.author-action-btn.subscribed:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}
/* Author Info Card End */

.package-card {
  width: 100%;
  max-width: 100%;
}

.help-faq-card:hover {
  transform: translateY(-5px);
  border-color: var(--primarycolor);
  box-shadow: 0 20px 40px rgba(0, 198, 173, 0.2);
}

.help-faq-header {
  display: flex;
  align-items: center;
  padding: 2.4rem 3.2rem;
  cursor: pointer;
  border-radius: 8px;
  background: rgba(0, 198, 173, 0.1);
  border-bottom: 1px solid rgba(0, 198, 173, 0.2);
  transition: all 0.3s ease;
}

.help-faq-header:hover {
  background: rgba(0, 198, 173, 0.15);
}

.help-faq-icon {
  width: 60px;
  height: 60px;
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--primarycolor), var(--brand-text-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2.4rem;
  box-shadow: 0 8px 20px rgba(0, 198, 173, 0.3);
}

.help-faq-icon i {
  font-size: 2.4rem;
  color: white;
}

.help-faq-title-section {
  flex-grow: 1;
}

.help-faq-title {
  font-size: 2.24rem;
  font-weight: 600;
  color: var(--white-text-color);
  margin: 0 0 0.8rem 0;
}

.help-faq-description {
  font-size: 1.52rem;
  color: var(--text-color);
  opacity: 0.8;
  margin: 0;
}

.help-faq-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 198, 173, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.help-faq-toggle i {
  font-size: 1.92rem;
  color: var(--primarycolor);
  transition: transform 0.3s ease;
}

.help-faq-content {
  border-top: none;
}

.help-faq-body {
  padding: 3.2rem;
}

/* Image Gallery */
.help-image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.4rem;
}

.help-image-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 198, 173, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.help-image-item:hover {
  transform: translateY(-3px);
  border-color: var(--primarycolor);
  box-shadow: 0 10px 25px rgba(0, 198, 173, 0.2);
}

.help-image-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.help-image-item:hover img {
  transform: scale(1.02);
}

.help-image-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--primarycolor), var(--brand-text-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 198, 173, 0.4);
}

.help-step-number {
  color: white;
  font-weight: 600;
  font-size: 1.44rem;
}

/* Contact Section */
.help-contact-section {
  padding: 6.4rem 0 9.6rem 0;
}

.help-contact-card {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 2px solid rgba(0, 198, 173, 0.3);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(15px);
  box-shadow: 0 25px 50px rgba(0, 198, 173, 0.1);
}

.help-contact-header {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 2rem;
  border-radius: 10px;
  background: rgba(0, 198, 173, 0.1);
  border-bottom: 1px solid rgba(0, 198, 173, 0.2);
}

.help-contact-form{
  width: 100%;
}

.help-contact-icon {
  width: 70px;
  height: 70px;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--primarycolor), var(--brand-text-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2.4rem;
  box-shadow: 0 10px 25px rgba(0, 198, 173, 0.3);
}

.help-contact-icon i {
  font-size: 2.88rem;
  color: white;
}

.help-contact-title {
  font-size: 2.56rem;
  font-weight: 600;
  color: var(--white-text-color);
  margin: 0 0 0.8rem 0;
}

.help-contact-description {
  font-size: 1.6rem;
  color: var(--text-color);
  opacity: 0.8;
  margin: 0;
}

/* Form Styles */

.help-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
}

.help-form-group {
  display: flex;
  flex-direction: column;
}

.help-form-group i.fas {
  margin-right: 1.28rem;
}

.help-form-group-full {
  grid-column: 1 / -1;
}

.help-form-label {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white-text-color);
  margin-bottom: 1.28rem;
}

.help-form-label i {
  margin-right: 1.28rem;
  color: var(--primarycolor);
  font-size: 1.76rem;
}

.help-form-input,
.help-form-textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(0, 198, 173, 0.3);
  border-radius: 10px;
  padding: 1.6rem 1.92rem;
  font-size: 1.6rem;
  color: var(--text-color);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.help-form-input:focus,
.help-form-textarea:focus {
  outline: none;
  border-color: var(--primarycolor);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(0, 198, 173, 0.2);
}

.help-form-input::placeholder,
.help-form-textarea::placeholder {
  color: var(--text-color);
  opacity: 0.6;
}

.help-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.help-submit-btn {
  background: linear-gradient(135deg, var(--primarycolor), var(--brand-text-color));
  color: white;
  border: none;
  padding: 1.6rem 4rem;
  border-radius: 12px;
  font-size: 1.76rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.28rem;
  box-shadow: 0 8px 25px rgba(0, 198, 173, 0.3);
  margin-top: 1.6rem;
}

.help-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 198, 173, 0.4);
  background: linear-gradient(135deg, var(--brand-text-color), var(--primarycolor));
}

.help-submit-btn i {
  font-size: 1.6rem;
}

.chapterTextMM p {
  font-family: argon;
}

.chapterTextEng {
  display: none;
}

.chapterTextEng.show {
  display: block;
}

.text-bg {
  color: #e0ebe4;
}

.primaryfontcolor {
  color: var(--black);
}

.bgfontcolor {
  color: var(--bg-color);
}

.primarybgcolor {
  background-color: var(--primarycolor);
  color: var(--black);
}

.bgbackgroundcolor {
  background-color: var(--bg-color);
}

/* Start Main Page Css  */

/* Navbar CSS removed - User will fix manually */

/* Start custom Search Input  */

.customsearchs {
  height: 45px;
  background: transparent;
  border: none;
  outline: 0;
  font-size: 16px;
  margin-left: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
  padding: 10px 20px;
}

.customsearchs::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.customsearchs:focus {
  outline: 0;
  color: rgba(255, 255, 255, 1);
}

.customsearchicon {
  font-size: 20px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  z-index: 3;
  backdrop-filter: blur(10px);
}

.customsearchicon:hover {
  background: linear-gradient(135deg, rgba(20, 184, 166, 1), rgba(20, 184, 166, 0.8));
  border-color: rgba(20, 184, 166, 0.6);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 5px 15px rgba(20, 184, 166, 0.3);
  color: rgba(255, 255, 255, 1);
}

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

.searchcontainer {
  position: relative;
  background: linear-gradient(135deg,
      rgba(15, 23, 42, 0.95) 0%,
      rgba(30, 41, 59, 0.95) 50%,
      rgba(15, 23, 42, 0.95) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  height: auto;
  min-height: 50px;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.searchcontainer:hover {
  border-color: rgba(20, 184, 166, 0.5);
  box-shadow: 0 15px 35px rgba(20, 184, 166, 0.3);
  transform: translateY(-2px);
}

.searchcontainer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(20, 184, 166, 0.6) 50%,
      transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
}

/* Search Wrapper */
.search-wrapper {
  width: 100%;
  padding: 0 15px;
}

.search-box-container {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 0 auto;
}

.customsearchs {
  flex: 1;
  height: 50px;
  background: transparent;
  border: none;
  outline: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0 10px;
  min-width: 0;
}

.customsearchs::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.customsearchs:focus {
  outline: 0;
  color: rgba(255, 255, 255, 1);
}

.customsearchicon {
  font-size: 20px;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 50px;
}

.customsearchicon:hover {
  color: #14b8a6;
  transform: scale(1.05);
}

.customsearchicon:active {
  transform: scale(0.95);
}

/* Start Tag Cloud Section  */

.tagcloudcontainer {
  /* background-color: red; */
  padding: 20px;
}

.tagcloud {
  width: 90px;
  height: 30px;
  line-height: 30px;
  border-radius: 25px;
  background-color: var(--primarycolor);
  text-align: center;
  color: var(--black);
  text-decoration: none;
  margin: 5px;
}

.tagcloud a {
  font-size: 12px;
}

.popularmanga {
  width: 300px;
  height: 35px;
  line-height: 35px;
  background-color: var(--primarycolor);
  text-align: center;
  position: relative;
  z-index: 2;
}

.popularmanga::before {
  content: "";
  width: 25px;
  height: 25px;
  background-color: var(--primarycolor);
  transform: rotate(45deg);
  position: absolute;
  top: 49%;
  left: 5%;
  z-index: 1;
}

/* End Tag Cloud Section  */

/* Start Coursel Sectin  */

.slide-container {
  position: relative;
}

.slide-content {
  overflow: hidden;
  max-width: 1200px;
}

.card-wrapper {
  height: 40vh;

  transition: all 1s ease-in;
}

.cardcontainer {
  height: 170px;
  margin: 2px;
  border-radius: 10px;

  box-shadow: var(--box-shadow);
}

.image-content {
  width: 45%;
  background-color: aqua;
}

.card-content {
  width: 55%;
  font-size: 12px;
  background-color: var(--primarycolor);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.storytitle,
.storyreleasedate {
  width: 90%;
  margin: 10px auto;
}

.chaptercontainer {
  width: 100%;
  margin: auto;
}

.chapter {
  width: 75%;
  padding: 5px;
  background-color: var(--bg-color);
  text-align: center;
  margin: 5px auto;
  font-size: 1.2rem;
}

.swiper-navBtn {
  font-size: 40px;
  position: absolute;
  z-index: 5;
}

.prevBtn {
  top: 40%;
  left: 0;
}

.nextBtn {
  top: 40%;
  right: 0;
}

/* End Coursel Section  */

/* Start Lastest manga Section  */
.nochapter {
  font-size: 10px;
}

.updatecontainer {
  width: 200px;
  height: scrollHeight;
  margin: 10px auto;
  padding: 10px;
  background-color: var(--bg-gradient);
  box-shadow: var(--box-shadow);
  border: var(--footer-border);
  margin: 0 5px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.updateimagecontainer {
  width: 100%;
  height: 280px;
}

.updatecontentcontainer {
  width: 100%;
  height: scrollHeight;
  margin-top: 10px;
}

.updatestarcontainer {
  width: 100%;
}

.updatestorytitle {
  font-size: 13px;
  color: var(--brand-text-color);
}

.updatestorytitle a {
  color: var(--white-text-color);
}

/* End Lastest manga Section  */

/* Start Top Manga Section  */

.topmanga {
  height: 125px;
  margin: 5px;
  padding: 10px;
  background-color: var(--bg-color);
  box-shadow: var(--box-shadow);
}

.topmangaimagecontainer {
  height: 100px;
}

.topmangaimg {
  width: 100%;
  height: 100%;
}

.topmangachapter {
  width: 120px;
  background-color: var(--primarycolor);
  text-align: center;
  margin: 10px;
}

.topmangastorytitle {
  font-size: 15px;
}

/* End Top Manga Section  */




/* End Main Page Css  */

/* ==================================================== */

/*Start Login Page Css  */
.loginbox {
  height: 500px;
}

.loginformContainer {
  height: 100%;
  /* background-color: var(--bg-color); */
  background-color: var(--primarycolor);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.inputbox {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid black;

  border-radius: 0;
  padding: 2px;
  color: var(--black);
  outline: none;
}

.userprofile .inputbox{
  color: var(--white-text-color);
  border-bottom: 1px solid var(--primarycolor);
}

.inputbox:focus {
  background-color: transparent;
  color: var(--black);
  border: none;
  border-bottom: 1px solid black;
  cursor: pointer;
  outline: none;
}

.formbtn {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 5px;
  color: var(--black);
  outline: none;
}

.formbtn:focus {
  background-color: transparent;

  border: none;
  border-bottom: 1px solid var(--bg-color);

  cursor: pointer;
  outline: none;
}

.form-group input[type="file"] {
  /* You can customize the appearance of the input container here */
  border: 1px solid var(--primarycolor);
  padding: 8px;
  width: 100%;
  background-color: var(--primarycolor);
  border-radius: 5px;
  padding: 5px;
}

.form-control{
  font-size: 1.6rem;
}

.form-control:focus {
  box-shadow: none;
  color: var(--black);
}

.errormessage {
  font-size: 12px;
  margin-top: 10px;
}

#submitbtn {
  /* box-shadow: var(--box-shadow); */
  background-color: var(--bg-color);
  color: #000;
}

.forgotpassword {
  color: var(--black);
}

.alert {
  padding: 0.8rem 0.16rem;
}

.alert-dismissible .btn-close {
  padding: 1.6rem;
  top: -10%;
}

.loginbtn {
  color: #000;
}

/* End Login Page Css  */

/* Start Footer Css  */
.footernav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footernavitem {
  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  font-size: 40px;
}

.footernavitem a {
  color: var(--black);
}

footer {
  border-top: 1px solid var(--primarycolor);
}

/* End Footer Css  */

/* ===== CHAPTER READER STYLES ===== */
.chapter-reader-container {
  padding-top: 15px;
}

/* Reading Controls Panel */
.reading-controls-panel {
  background: var(--footer-section-bg);
  border: 1px solid var(--footer-border-color);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 15px;
  position: sticky;
  top: 70px;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.reading-controls-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.control-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.control-label {
  color: var(--footer-text-tertiary);
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.control-label i {
  color: var(--footer-primary-color);
  font-size: 1.3rem;
}

.control-buttons {
  display: flex;
  gap: 6px;
}

.control-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--footer-border-color);
  background: var(--footer-accent-light);
  color: var(--footer-text-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.control-btn:hover {
  background: var(--footer-primary-color);
  border-color: var(--footer-primary-color);
  color: #fff;
  transform: scale(1.05);
}

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

/* Theme Buttons */
.theme-buttons {
  gap: 8px;
}

.theme-btn {
  width: 40px;
  height: 40px;
  border: 2px solid var(--footer-border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.3rem;
}

.theme-btn.theme-dark {
  background: #1a1a2e;
  color: #e0e0e0;
}

.theme-btn.theme-sepia {
  background: #f4ecd8;
  color: #5c4b37;
}

.theme-btn.theme-light {
  background: #ffffff;
  color: #2d2d2d;
}

.theme-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--footer-shadow);
}

.theme-btn.active {
  border-color: var(--footer-primary-color);
  box-shadow: 0 0 0 3px var(--footer-accent-medium);
}

/* Chapter Content Wrapper */
.chapter-content-wrapper {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid var(--footer-border-color);
  border-radius: 12px;
  padding: 20px 10px;
  margin: 15px 0;
  transition: all 0.3s ease;
}

.chapter-text-content {
  font-size: 1.8rem;
  line-height: 1.9;
  color: var(--footer-text-secondary);
  transition: font-size 0.3s ease, color 0.3s ease;
}

.chapter-text-content p {
  margin-bottom: 1.2em;
}

.chapter-images img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

.chaptertextbox {
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
}

.chaptertextbox p {
  z-index: 2;
  font-size: inherit;
}

/* Responsive Reading Controls */
@media screen and (max-width: 768px) {
  .reading-controls-panel {
    padding: 10px 12px;
    top: 60px;
  }
  
  .reading-controls-inner {
    gap: 15px;
  }
  
  .control-label {
    font-size: 1.1rem;
  }
  
  .control-btn {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
  
  .theme-btn {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  
  .chapter-content-wrapper {
    padding: 15px 8px;
  }
  
  .chapter-text-content {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

@media screen and (max-width: 576px) {
  .reading-controls-panel {
    padding: 8px 10px;
    border-radius: 10px;
  }
  
  .reading-controls-inner {
    gap: 12px;
  }
  
  .control-group {
    gap: 6px;
  }
  
  .control-label {
    font-size: 1rem;
  }
  
  .control-label i {
    font-size: 1.1rem;
  }
  
  .control-btn {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  
  .theme-btn {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
  
  .chapter-content-wrapper {
    padding: 12px 6px;
    border-radius: 10px;
  }
  
  .chapter-text-content {
    font-size: 1.5rem;
    line-height: 1.75;
  }
}

@media screen and (max-width: 400px) {
  .reading-controls-inner {
    flex-direction: column;
    gap: 10px;
  }
  
  .control-group {
    width: 100%;
    justify-content: space-between;
  }
  
  .chapter-text-content {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 320px) {
  .reading-controls-panel {
    padding: 8px;
  }
  
  .control-btn {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
  
  .theme-btn {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
  
  .chapter-text-content {
    font-size: 1.3rem;
    line-height: 1.7;
  }
}

/* ===== END CHAPTER READER STYLES ===== */

/* ===== LANGUAGE TOGGLE STYLES ===== */
.language-toggle-wrapper {
  gap: 8px;
  margin: 10px 0;
}

.language-btn {
  background: var(--footer-section-bg);
  border: 1px solid var(--footer-border-color);
  color: var(--footer-text-secondary);
  padding: 8px 16px;
  font-size: 1.3rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.language-btn:hover {
  background: var(--footer-accent-light);
  border-color: var(--footer-primary-color);
  color: var(--footer-text-primary);
  transform: translateY(-2px);
  box-shadow: var(--footer-shadow);
}

.language-btn:active {
  transform: translateY(0);
}

.language-btn.active {
  background: var(--footer-primary-color);
  border-color: var(--footer-primary-color);
  color: #fff;
  box-shadow: var(--footer-shadow);
}

.language-btn.active:hover {
  background: var(--footer-accent-color);
  border-color: var(--footer-accent-color);
}

.language-btn i {
  font-size: 1.2rem;
}

/* Responsive Language Toggle */
@media screen and (max-width: 576px) {
  .language-btn {
    padding: 7px 12px;
    font-size: 1.2rem;
  }
  
  .language-btn i {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 320px) {
  .language-btn {
    padding: 6px 10px;
    font-size: 1.1rem;
  }
}

/* ===== END LANGUAGE TOGGLE STYLES ===== */

/* ===== CHAPTER CONTROL STYLES ===== */
.chapter-control-wrapper {
  margin: 15px 0;
}

/* Chapter Dropdown */
.chapter-dropdown {
  position: relative;
}

.chapter-dropdown .btn-secondary {
  background: var(--footer-section-bg);
  border: 1px solid var(--footer-border-color);
  color: var(--footer-text-primary);
  padding: 10px 16px;
  font-size: 1.3rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.chapter-dropdown .btn-secondary:hover,
.chapter-dropdown .btn-secondary:focus {
  background: var(--footer-accent-light);
  border-color: var(--footer-primary-color);
  box-shadow: var(--footer-shadow);
}

.chapter-dropdown .dropdown-menu {
  background: var(--footer-dark-bg);
  border: 1px solid var(--footer-border-color);
  border-radius: 12px;
  padding: 8px;
  max-height: 350px;
  overflow-y: auto;
  min-width: 200px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

/* Custom scrollbar for dropdown */
.chapter-dropdown .dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.chapter-dropdown .dropdown-menu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.chapter-dropdown .dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--footer-primary-color);
  border-radius: 3px;
}

.chapter-dropdown .dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: var(--footer-accent-color);
}

.chapter-dropdown .list-group {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

.chapter-dropdown .list-group-item {
  background: transparent;
  border: none;
  padding: 0;
  margin: 2px 0;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.chapter-dropdown .list-group-item:hover {
  background: var(--footer-accent-light);
}

.chapter-dropdown .list-group-item a {
  display: block;
  padding: 10px 14px;
  color: var(--footer-text-secondary);
  text-decoration: none;
  font-size: 1.3rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.chapter-dropdown .list-group-item a:hover {
  color: var(--footer-primary-color);
  background: var(--footer-accent-light);
}

/* Chapter Navigation Buttons */
.chapter-nav-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.chapter-nav-buttons .btn {
  background: var(--footer-section-bg);
  border: 1px solid var(--footer-border-color);
  color: var(--footer-text-primary);
  padding: 10px 18px;
  font-size: 1.3rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.chapter-nav-buttons .btn:hover {
  background: var(--footer-primary-color);
  border-color: var(--footer-primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--footer-shadow);
}

.chapter-nav-buttons .btn:active {
  transform: translateY(0);
}

/* Responsive Chapter Controls */
@media screen and (max-width: 576px) {
  .chapter-dropdown .btn-secondary {
    padding: 8px 12px;
    font-size: 1.2rem;
  }
  
  .chapter-dropdown .dropdown-menu {
    min-width: 180px;
    max-height: 280px;
  }
  
  .chapter-dropdown .list-group-item a {
    padding: 8px 12px;
    font-size: 1.2rem;
  }
  
  .chapter-nav-buttons .btn {
    padding: 8px 14px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 400px) {
  .chapter-dropdown .btn-secondary {
    padding: 7px 10px;
    font-size: 1.1rem;
  }
  
  .chapter-nav-buttons {
    gap: 5px;
  }
  
  .chapter-nav-buttons .btn {
    padding: 7px 10px;
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 320px) {
  .chapter-dropdown .btn-secondary {
    padding: 6px 8px;
    font-size: 1rem;
  }
  
  .chapter-nav-buttons .btn {
    padding: 6px 8px;
    font-size: 1rem;
  }
}

/* ===== END CHAPTER CONTROL STYLES ===== */

.list-group-item {
  background-color: var(--primarycolor);
}

.list-group li {
  margin: 10px 0px;
}

/* Start About As Section  */

.logocontainer {
  width: 200px;
  height: 200px;
  background-color: red;
  border-radius: 50%;

  background: var(--black-logo);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.controlcontainer {
  background-color: var(--bg-color);
  box-shadow: var(--box-shadow);
  position: relative;
  color: var(--black);
  border: 0;
}

.title {
  background-color: var(--bg-color);
  color: var(--black);
  box-shadow: var(--box-shadow);
  border: none;
}

.contentcontainer {
  text-indent: 50px;
  text-align: justify;
  display: none;
}

.controlcontainer.active {
  height: scrollHeight;
}

.controlcontainer.active .contentcontainer {
  display: block;
}

.content-toggle {
  width: 30px;
  height: 30px;
  background: transparent;
  position: absolute;
  top: 30%;
  right: 3%;
}

.controlcontainer.active .content-toggle {
  top: 10%;
  right: 3%;
}

.content-toggle:focus {
  outline: 0;
  border: none;
}

.content-toggle:hover {
  background: var(--bg-color);
}

/* Start Our Team Section  */
.membercontainer {
  height: 300px;
  margin: 15px 5px;
  padding: 10px 0px;
  background: var(--bg-color);
  box-shadow: var(--box-shadow);

  display: flex;
  flex-direction: column;
  justify-content: space-around;
  /* align-items: center; */
}

.membercontainer:hover {
  box-shadow: var(--box-shadow-inset);
}

.memberphotocontainer {
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.photocontainer {
  width: 100px;
  height: 100px;

  border-radius: 50%;
}

.membername {
  height: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.jobtitle {
  height: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.socialicon {
  height: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon {
  margin: 0px 10px;
  font-size: 18px;
}

/* End Our Team Section  */

.contactbtn {
  background-color: var(--primarycolor);
  box-shadow: var(--box-shadow);
  border-radius: 10px;
}

/* End About As Section  */

/* Start Help Section  */

.helpcontainer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.helpcontainer img {
  width: 100%;
  height: auto;
  margin: 10px;
}

/* End Help Section  */

/* Start Profile Page Css  */

.profilecontainer {
  height: 100vh;
  background-color: blue;
}

.profileimagecontainer {
  width: 100px;
  height: 100px;
  margin: 20px;
  border-radius: 50%;
  box-shadow: var(--box-shadow);
}

.profilename {
  width: 150px;
  height: 40px;
  line-height: 40px;

  background: var(--bg-color);
  box-shadow: var(--box-shadow);
}

.profileitem {
  background: var(--primarycolor);
  box-shadow: var(--box-shadow);
  text-align: center;
  padding: 5px;
  color: var(--black);
  list-style-type: none;
}

.subscribebtn {
  width: 40px;
}

.formcontainer {
  background-color: var(--bg-color);
  box-shadow: var(--box-shadow);
}

.passwordtext {
  font-size: 14px;
}

.submitbutton {
  width: 100px;
  height: 25px;
}

.tablediv {
  overflow-x: scroll;
}

.cancelorderbtn {
  width: 30px;
  height: 30px;
  padding: 5px;
  border: none;
  background: transparent;
  color: red;
}


/* End Profile Page Css  */

/* Start Contact Form Css  */
.contactForm {
  box-shadow: var(--box-shadow);
  border-radius: 10px;
}

/* End Contact Form Css  */

/* Start Blog you may like css  */
.related_reading_wrap {
  background: var(--footer-section-bg);
  border: 1px solid var(--footer-border-color);
  border-radius: 12px;
  padding: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.related_reading_wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--footer-primary-color), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.related_reading_wrap:hover::before {
  opacity: 1;
}

.related_reading_wrap:hover {
  background: var(--footer-accent-light);
  border-color: var(--footer-accent-stronger);
  box-shadow: var(--footer-shadow);
  transform: translateY(-2px);
}

.related_reading_wrap .related_reading_img {
  flex-shrink: 0;
}

.related_reading_wrap .related_reading_img img {
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--footer-border-color);
  transition: all 0.3s ease;
}

.related_reading_wrap:hover .related_reading_img img {
  border-color: var(--footer-primary-color);
  box-shadow: 0 0 10px var(--footer-glow);
}

.related_reading_wrap .related_content_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  flex: 1;
}

.related_reading_wrap .related_content_title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.related_reading_wrap .related_content_title a {
  color: var(--footer-text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related_reading_wrap .related_content_title a:hover {
  color: var(--footer-primary-color);
}

.related_reading_wrap .poston {
  font-size: 1.2rem;
  color: var(--footer-text-tertiary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.related_reading_wrap .poston::before {
  content: '\f073';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1rem;
  color: var(--footer-primary-color);
}

/* Responsive for You May Also Like section */
@media screen and (max-width: 991px) {
  .related_reading_wrap {
    padding: 10px;
  }
  
  .related_reading_wrap .related_content_title {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 576px) {
  .related_reading_wrap {
    padding: 10px;
  }
  
  .related_reading_wrap .related_reading_img img {
    width: 65px !important;
    height: 92px !important;
  }
  
  .related_reading_wrap .related_content_title {
    font-size: 1.25rem;
  }
  
  .related_reading_wrap .poston {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 320px) {
  .related_reading_wrap {
    padding: 8px;
  }
  
  .related_reading_wrap .related_reading_img img {
    width: 55px !important;
    height: 78px !important;
  }
  
  .related_reading_wrap .related_content_title {
    font-size: 1.15rem;
  }
  
  .related_reading_wrap .poston {
    font-size: 1rem;
  }
  
  .related_reading_wrap .poston::before {
    font-size: 0.9rem;
  }
}

.kofilogo {
  width: 300px;
  height: 50px;
  background-color: var(--primarycolor);

  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}

.kofilogo:hover {
  background-color: var(--primarycolor);
}

.discordbox {
  display: flex;
  justify-content: center;
  align-items: center;
}

.discordlogo img {
  width: 50px;
  height: 50px;
}

.addstarbtn:hover {
  background-color: var(--primarycolor);
}

/* End Blog you may like css  */

/* Start Rating Modal Box Css  */

.widget {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: linear-gradient(145deg, 
      rgba(30, 41, 59, 0.98) 0%, 
      rgba(15, 23, 42, 0.99) 100%);
  border: 1px solid rgba(20, 184, 166, 0.25);
  color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.ui-checkboxradio-icon {
  display: none;
}

/* End Rating Modal Box Css  */

/* Single Blog Css  */

.comment_count a,
.make_bookmark a {
  color: #14b8a6;
  transition: color 0.3s ease;
}

.comment_count a:hover,
.make_bookmark a:hover {
  color: #0d9488;
}

/* ===== SHOW PAGE HERO SECTION ===== */
/* ===== NOVEL DETAILS CARD - PROFESSIONAL LAYOUT ===== */
.novel-details-card {
  background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
  border-radius: 2rem;
  box-shadow: 0 2.5rem 6rem rgba(0, 0, 0, 0.35);
  margin: 3rem 0;
  padding: 3rem;
  overflow: hidden;
}

.novel-details-inner {
  display: grid;
  grid-template-columns: 22rem 1fr;
  gap: 3rem;
  align-items: start;
}

/* Cover Image */
.novel-cover-wrap {
  position: relative;
  width: 100%;
}

.novel-cover-img {
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.novel-cover-img:hover {
  transform: scale(1.02);
  box-shadow: 0 2rem 5rem rgba(20, 184, 166, 0.2);
}

.novel-status-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  padding: 0.6rem 1.4rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Novel Info */
.novel-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.novel-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}

.novel-alt-title {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
  margin: -1rem 0 0 0;
  font-style: italic;
}

/* Rating */
.novel-rating-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.novel-rating-display {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.novel-rating-display .ratingbox {
  display: flex;
  gap: 0.4rem;
  font-size: 1.8rem;
}

.novel-rating-display .ratingbox i {
  color: #fbbf24;
}

.rating-score {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fbbf24;
}

.rating-give-btn {
  background: transparent;
  border: 2px solid rgba(20, 184, 166, 0.5);
  color: #14b8a6;
  padding: 0.6rem 1.6rem;
  border-radius: 2rem;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rating-give-btn:hover {
  background: #14b8a6;
  color: #ffffff;
  border-color: #14b8a6;
}

.rating-label {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Meta Grid */
.novel-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.meta-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1rem;
}

.meta-label {
  font-size: 1.2rem;
  color: #14b8a6;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.meta-label i {
  font-size: 1.1rem;
}

.meta-value {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Genres */
.novel-genres-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.genre-pill {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background: rgba(20, 184, 166, 0.15);
  color: #14b8a6;
  border-radius: 2rem;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.genre-pill:hover {
  background: #14b8a6;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Stats Row */
.novel-stats-row {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
}

.stat-item i {
  color: #14b8a6;
  font-size: 1.6rem;
}

.stat-item a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.stat-item a:hover {
  color: #14b8a6;
}

.stat-item .bookmark-active {
  color: #14b8a6;
}

/* Action Buttons */
.novel-action-btns {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.4rem;
  border-radius: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.action-btn.primary {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  color: #ffffff;
  box-shadow: 0 0.8rem 2rem rgba(20, 184, 166, 0.3);
}

.action-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 1.2rem 3rem rgba(20, 184, 166, 0.4);
  color: #ffffff;
}

.action-btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.action-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  color: #ffffff;
}

.action-btn.disabled {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
  cursor: not-allowed;
}

/* ===== SUMMARY BOX MODERN ===== */
.summarybox {
  background: linear-gradient(145deg, 
      rgba(30, 41, 59, 0.9) 0%, 
      rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid rgba(20, 184, 166, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  margin: 25px 0px;
  padding: 25px;
  border-radius: 14px;
  font-family: argon;
}

.summaryheading {
  color: #ffffff;
  margin-bottom: 15px;
}

.summaryheading i {
  color: #14b8a6;
}

.summaryheading h4 {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 600;
}

.summaryheading hr {
  border-color: rgba(20, 184, 166, 0.3);
  margin-top: 12px;
}

.summarycontent {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.5rem;
  line-height: 1.8;
}

.related_content_title {
  font-size: 13px;
  color: #ffffff;
}

.poston {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

a {
  text-decoration: none;
  color: var(--black);
}

/* ===== CHAPTER LIST MODERN ===== */
.chaptercontainer {
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
  max-height: 500px;
  overflow-y: auto;
  padding: 10px 5px;
  padding-right: 10px;
  overflow-x: hidden;
}

/* Custom scrollbar for chapter container */
.chaptercontainer::-webkit-scrollbar {
  width: 6px;
}

.chaptercontainer::-webkit-scrollbar-track {
  background: rgba(30, 41, 59, 0.5);
  border-radius: 3px;
}

.chaptercontainer::-webkit-scrollbar-thumb {
  background: #14b8a6;
  border-radius: 3px;
}

.chaptercontainer::-webkit-scrollbar-thumb:hover {
  background: #0d9488;
}

.showchapter {
  font-size: 1.4rem;
  margin: 0;
  padding: 14px 18px;
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: 10px;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.showchapter:hover {
  background: rgba(20, 184, 166, 0.15);
  border-color: rgba(20, 184, 166, 0.4);
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.15);
}

.showchapter a {
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s ease;
  flex: 1;
}

.showchapter a:hover {
  color: #14b8a6;
}

.showchapter .poston {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.showchapter .paid {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.showchapter .paid strong {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0f172a;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  white-space: nowrap;
}

.fa-lock {
  font-size: 1.4rem;
  color: #fbbf24;
}

/* ===== GENRES SIDEBAR MODERN ===== */
.genres {
  background: linear-gradient(145deg, 
      rgba(30, 41, 59, 0.9) 0%, 
      rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid rgba(20, 184, 166, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: 20px;
  margin: 25px 0px;
  border-radius: 14px;
}

.genresheader {
  color: #ffffff;
  margin-bottom: 15px;
}

.genresheader i {
  color: #14b8a6;
}

.genresheader h3 {
  color: #ffffff;
  font-size: 1.6rem;
}

.genresheader hr {
  border-color: rgba(20, 184, 166, 0.3);
}

.genre_label {
  text-align: center;
  margin: 6px 0px;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.2);
  padding: 8px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.genre_label:hover {
  background: rgba(20, 184, 166, 0.2);
  border-color: rgba(20, 184, 166, 0.4);
  transform: translateY(-2px);
}

.genre_label a {
  color: #14b8a6;
  font-size: 1.2rem;
}

.genre_label i {
  font-size: 13px;
  color: #14b8a6;
}

/* ===== COMMENT SECTION MODERN ===== */
.card,
#commentform textarea {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(20, 184, 166, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  border-radius: 12px;
}

.card textarea {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(20, 184, 166, 0.15);
  color: #ffffff;
}

.card textarea:focus {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(20, 184, 166, 0.4);
  box-shadow: 0 0 15px rgba(20, 184, 166, 0.1);
  color: #ffffff;
}

.commentbox {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: 10px;
  padding: 15px;
  margin: 10px 0;
  box-shadow: none;
}

.childstarcontainer {
  color: #fbbf24;
}

.ratingcontainer {
  color: #fbbf24;
  font-weight: 600;
}

.ratingbox {
  color: #fbbf24;
}

.ratingbox i {
  color: #fbbf24;
}

.summary {
  text-indent: 75px;
  white-space: pre-wrap;
}

pre {
  display: block;
  font-size: 1em;
  font-family: argon;
  overflow: auto;
  margin-top: 0;
  margin-bottom: 1.6rem;
  text-wrap: wrap !important;
}

.commentformbtn {
  background: var(--primarycolor);
  font-size: 1.6rem;
}

/* End Single Blog Css  */

/* Start Star Css  */

.starcard {
  width: 250px;
  height: 300px;
  /* background: var(--bg-color); */
  background-color: var(--primarycolor);
  box-shadow: var(--box-shadow);
  margin: 20px;

  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.starcardimg {
  color: var(--black);
  font-size: 50px;
}

.packagename {
  width: 150px;
  height: 40px;
  /* background-color: var(--bg-color); */
  background-color: var(--primarycolor);
  box-shadow: var(--box-shadow);
  text-align: center;
  line-height: 40px;
  /* margin-top: 20px; */
}

.starbuy {
  width: 150px;
  height: 40px;

  text-align: center;
  line-height: 40px;
  border-radius: 50px;
  background-color: var(--bg-color);
  box-shadow: var(--box-shadow);
  margin-bottom: 10px;
}

.paymentinformationbox {
  background-color: var(--primarycolor);
  box-shadow: var(--box-shadow);
  border-radius: 50px;
  padding: 20px;
  font-size: 14px;
  margin: 20px;

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

/* Start Star Order Section  */
#yourOrderdiv {
  background-color: var(--primarycolor);
  box-shadow: var(--box-shadow);
  padding: 10px;
}

.starorderContainer {
  background-color: var(--bg-color);
  box-shadow: var(--box-shadow);
  height: auto;
}

#image-preview img {
  width: 150px;
  height: 250px;
}

.orderconfirmbtn {
  background-color: var(--primarycolor);
}

.orderconfirmbtn:hover {
  background-color: var(--primarycolor);
}

/* End Star Order Section  */

.showtext {
  font-size: 12px;
}

/*  services section*/
.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 30px;
  font-weight: bold;
  color: white;
}

.swiper-button-next,
.swiper-button-prev {
  opacity: 80%;
  transition: 0.6s;
  font-size: 100px;
  color: var(--fontcolorwhite);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 80%;
}

/* End Star Order Css */

/* Start Author Profile Section  */

.authorprofilediv {
  width: 300px;
  height: 200px;

  margin: 10px;
  padding: 10px;
  background: var(--primarycolor);

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

  box-shadow: var(--box-shadow);
}

.authorphotodiv {
  display: flex;
  justify-content: center;
  align-items: center;
}

.authorbutton {
  background: var(--bg-color);
  border: none;
  width: 100px;
  height: 30px;

  /* border-radius: 50px; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.authorbutton:hover {
  background: var(--bg-color);
}

.authorbutton:focus {
  transform: scale(0.98);
}

.authorphotodiv img {
  width: 75px;
  height: 75px;
}

/* End Author Profile Section  */

/* password reset section  */

.formcontainer {
  width: 500px;
  height: auto;

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

.userprofile .formcontainer {
  width: unset;
  display: block;
}

.emailresetform {
  width: 400px;
  height: 300px;
  padding: 50px;
}


#pwresetbtn {
  width: 200px;
  margin: auto;
  background: var(--primarycolor);
}

/* End Password Reset Section  */

/* Start Comment Section  */
.commenttext {
  color: #000;
}

/* End Comment Section  */

/* Start Social Btn   */
.social_btn img {
  width: 30px;
  height: 30px;
}

.social_box {
  display: flex;
  justify-content: center;
  gap: 30px;
}

/* End Social Btn  */

/* Star Section  */
.orderAlertText {
  font-size: 24px;
}

/* End Star Section  */

/* ========================================== */
/* Professional Genre Component Redesign */
/* ========================================== */

/* Genre Section Container */
.genre-section-modern {
  background: linear-gradient(135deg, var(--bg-color) 0%, rgba(176, 226, 255, 0.8) 100%);
  border-radius: 20px;
  padding: 3.2rem;
  margin: 3.2rem 0;
  box-shadow: 0 10px 30px rgba(0, 198, 173, 0.1);
  border: 1px solid rgba(0, 198, 173, 0.2);
  position: relative;
  overflow: hidden;
}

.genre-section-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primarycolor), #00a693, var(--primarycolor));
  border-radius: 20px 20px 0 0;
}

/* Modern Header */
.genre-header-modern {
  text-align: center;
  margin-bottom: 3.2rem;
  position: relative;
}

.genre-title-modern {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  padding: 1.6rem 3.2rem;
  background: linear-gradient(135deg, var(--primarycolor), #00a693);
  border-radius: 50px;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(0, 198, 173, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.genre-title-modern::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;
}

.genre-title-modern:hover::before {
  left: 100%;
}

.genre-title-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 198, 173, 0.4);
}

/* Genre Grid Container */
.genre-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.6rem;
  padding: 1.6rem 0;
}

/* Individual Genre Tags */
.genre-tag-modern {
  background: linear-gradient(135deg, var(--primarycolor), #00a693);
  border-radius: 25px;
  padding: 1.28rem 2.4rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 198, 173, 0.2);
  border: 2px solid transparent;
}

.genre-tag-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 25px;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.genre-tag-modern:hover::before {
  opacity: 1;
}

.genre-tag-modern:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 198, 173, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.genre-tag-modern a {
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.52rem;
  display: block;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.genre-tag-modern:hover a {
  color: var(--black);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Empty State */
.genre-empty-modern {
  text-align: center;
  padding: 4.8rem 3.2rem;
  color: var(--black);
  font-size: 1.76rem;
  opacity: 0.7;
}

.genre-empty-modern::before {
  content: 'ðŸ“š';
  display: block;
  font-size: 4.8rem;
  margin-bottom: 1.6rem;
}

/* Loading Animation */
.genre-loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(0, 198, 173, 0.3);
  border-radius: 50%;
  border-top-color: var(--primarycolor);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */


/* Accessibility Improvements */
.genre-tag-modern:focus-within {
  outline: 3px solid rgba(0, 198, 173, 0.5);
  outline-offset: 2px;
}

.genre-tag-modern a:focus {
  outline: none;
}

/* Dark Mode Support */
body.active .genre-section-modern {
  background: linear-gradient(135deg, var(--bg-color) 0%, rgba(66, 76, 85, 0.8) 100%);
  border-color: rgba(24, 84, 68, 0.3);
}

body.active .genre-title-modern {
  background: linear-gradient(135deg, var(--primarycolor), #0f3d35);
}

body.active .genre-tag-modern {
  background: linear-gradient(135deg, var(--primarycolor), #0f3d35);
}

/* End Professional Genre Component Redesign */

/* ========================================== */
/* Professional Tag Cloud Component Redesign */
/* ========================================== */

/* Tag Cloud Main Container */
.tagcloud-section-modern {
  background: linear-gradient(135deg,
      rgba(15, 23, 42, 0.95) 0%,
      rgba(30, 41, 59, 0.95) 50%,
      rgba(15, 23, 42, 0.95) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 1.6rem;
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.2);
  padding: 60px 40px;
  margin: 2.4rem 0;
  position: relative;
  overflow: hidden;
}


.tagcloud-title-modern {
  font-size: 2.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;

  /* Teal glow effect matching footer theme */
  text-shadow:
    0 0 5px rgba(20, 184, 166, 0.5),
    0 0 10px rgba(20, 184, 166, 0.4),
    0 0 15px rgba(20, 184, 166, 0.3),
    0 0 20px rgba(20, 184, 166, 0.2);

  /* Gradient text effect with footer colors */
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.9), #14b8a6, rgba(255, 255, 255, 0.9));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  /* Animation */
  animation: neonPulse 2s ease-in-out infinite alternate, gradientShift 3s ease-in-out infinite;
}

/* Teal pulse animation matching footer theme */
@keyframes neonPulse {
  from {
    text-shadow:
      0 0 5px rgba(20, 184, 166, 0.5),
      0 0 10px rgba(20, 184, 166, 0.4),
      0 0 15px rgba(20, 184, 166, 0.3),
      0 0 20px rgba(20, 184, 166, 0.2);
  }

  to {
    text-shadow:
      0 0 10px rgba(20, 184, 166, 0.8),
      0 0 20px rgba(20, 184, 166, 0.6),
      0 0 30px rgba(20, 184, 166, 0.4),
      0 0 40px rgba(20, 184, 166, 0.3);
  }
}

/* Gradient shift animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Hover effect for extra interactivity */
.tagcloud-title-modern:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}


/* Tag Cloud Content Area */
.tagcloud-content-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 1.28rem;
  justify-content: flex-start;
  align-items: center;
  min-height: 60px;
}

/* Individual Tag Styles */
.tag-item-modern {
  background: rgba(25, 35, 55, 0.4);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 8px;
  padding: 0.96rem 1.92rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: start;
  min-width: fit-content;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.tag-item-modern:hover::before {
  opacity: 1;
}

.tag-item-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.tag-item-modern a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.44rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  text-align: center;
}

.tag-item-modern:hover a {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Authentication Section */
.auth-section-modern {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.auth-button-modern {
  background: linear-gradient(135deg, var(--primarycolor), #00a693);
  border-radius: 25px;
  padding: 1.28rem 2.88rem;
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
  font-size: 1.52rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 198, 173, 0.25);
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}

.auth-button-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border-radius: 25px;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.auth-button-modern:hover::before {
  opacity: 1;
}

.auth-button-modern:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 198, 173, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--black);
  text-decoration: none;
}

.auth-button-modern i {
  margin-right: 0.8rem;
  font-size: 1.44rem;
}

/* Empty State */
.tagcloud-empty-modern {
  text-align: center;
  padding: 3.2rem;
  color: var(--text-color);
  font-size: 1.6rem;
  opacity: 0.7;
  font-style: italic;
}

.tagcloud-empty-modern::before {
  content: '';
  display: block;
  font-size: 4rem;
  margin-bottom: 0.8rem;
}

/* Responsive Design */



/* Dynamic Text Handling */
.tag-item-modern {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tag-item-modern a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

/* Long text support */


/* Accessibility Improvements */
.tag-item-modern:focus-within,
.auth-button-modern:focus {
  outline: 3px solid rgba(20, 184, 166, 0.5);
  outline-offset: 2px;
}

.tag-item-modern a:focus,
.auth-button-modern:focus {
  outline: none;
}

/* Dark Mode Support */
body.active .tagcloud-section-modern {
  background: linear-gradient(135deg,
      rgba(10, 15, 25, 0.95) 0%,
      rgba(20, 30, 45, 0.95) 50%,
      rgba(10, 15, 25, 0.95) 100%);
  border-color: rgba(20, 184, 166, 0.4);
}

body.active .tag-item-modern,
body.active .auth-button-modern {
  background: rgba(15, 25, 40, 0.6);
  border-color: rgba(20, 184, 166, 0.4);
}

/* Animation for loading state */
.tagcloud-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3.2rem;
}

.tagcloud-spinner {
  width: 30px;
  height: 30px;
  border: 3px solid rgba(0, 198, 173, 0.3);
  border-radius: 50%;
  border-top-color: var(--primarycolor);
  animation: tagcloud-spin 1s ease-in-out infinite;
}

@keyframes tagcloud-spin {
  to {
    transform: rotate(360deg);
  }
}

/* End Professional Tag Cloud Component Redesign */

/* Start Modified CSS  */
.lastestupdatecontainer {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.6rem;
  place-items: center;
}


/* End Modified CSS */

/* ===== PROFESSIONAL FOOTER STYLES ===== */

/* Main Footer Container */
.footer-modern {
  background: linear-gradient(135deg,
      rgba(15, 23, 42, 0.95) 0%,
      rgba(30, 41, 59, 0.95) 50%,
      rgba(15, 23, 42, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-top: 2px solid rgba(20, 184, 166, 0.3);
  position: relative;
  margin-top: 6.4rem;
  overflow: hidden;
  padding: 0px 0px;
}

.footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(20, 184, 166, 0.6) 50%,
      transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
}

/* Footer Content */
.footer-content {
  padding: 3.2rem 0 1.6rem;
  position: relative;
  z-index: 2;
}

.footer-section {
  height: 100%;
  padding: 1.6rem;
  background: rgba(30, 41, 59, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Company Logo & Info */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}

.logo-container {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(20, 184, 166, 0.3);
  transition: all 0.3s ease;
}

.logo-container:hover {
  border-color: rgba(20, 184, 166, 0.6);
  transform: scale(1.05);
}

.footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-name {
  color: #ffffff;
  font-size: 1.92rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 0%, #14b8a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.company-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.36rem;
  line-height: 1.5;
  margin-bottom: 1.6rem;
}

/* Footer Stats */
.footer-stats {
  display: flex;
  gap: 2.4rem;
  margin-top: 1.2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: #14b8a6;
  text-shadow: 0 0 10px rgba(20, 184, 166, 0.3);
}

.stat-label {
  display: block;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.32rem;
}

/* Footer Titles */
.footer-title {
  color: #ffffff;
  font-size: 1.76rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
  position: relative;
  padding-bottom: 0.64rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #14b8a6, transparent);
  border-radius: 2px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1.2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1.44rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 0;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.footer-links a:hover {
  color: #14b8a6;
  transform: translateX(5px);
  text-shadow: 0 0 10px rgba(20, 184, 166, 0.3);
}

.footer-links a i {
  width: 16px;
  font-size: 1.36rem;
  opacity: 0.7;
}

/* Contact Info */
.contact-info {
  margin-bottom: 2.4rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  padding: 0.8rem;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(20, 184, 166, 0.2);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(20, 184, 166, 0.15);
  border-color: rgba(20, 184, 166, 0.3);
}

.contact-item i {
  color: #14b8a6;
  font-size: 1.6rem;
  width: 20px;
  text-align: center;
}

.contact-item span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.44rem;
}

/* Social Media */
.social-media {
  margin-bottom: 2.4rem;
}

.social-title {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.2rem;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-size: 1.6rem;
}

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

.social-link:hover::before {
  left: 100%;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-link.facebook:hover {
  border-color: #1877f2;
  color: #1877f2;
  box-shadow: 0 10px 25px rgba(24, 119, 242, 0.2);
}

.social-link.telegram:hover {
  border-color: #0088cc;
  color: #0088cc;
  box-shadow: 0 10px 25px rgba(0, 136, 204, 0.2);
}

.social-link.email:hover {
  border-color: #14b8a6;
  color: #14b8a6;
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.2);
}

.social-link i {
  font-size: 1.76rem;
  width: 20px;
  text-align: center;
}

/* Newsletter */
.newsletter {
  margin-top: 1.2rem;
}

.newsletter-title {
  color: #ffffff;
  font-size: 1.52rem;
  font-weight: 600;
  margin-bottom: 0.64rem;
}

.newsletter-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.28rem;
  margin-bottom: 1.2rem;
}

.newsletter-form {
  display: flex;
  gap: 0.8rem;
  background: rgba(30, 41, 59, 0.5);
  padding: 0.4rem;
  border-radius: 12px;
  border: 1px solid rgba(20, 184, 166, 0.3);
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1.2rem 1.6rem;
  color: #ffffff;
  font-size: 1.44rem;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
  border: none;
  padding: 1.2rem 1.6rem;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-btn:hover {
  background: linear-gradient(135deg, #0d9488, #0f766e);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(20, 184, 166, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(15, 23, 42, 0.8);
  border-top: 1px solid rgba(20, 184, 166, 0.2);
  padding: 1.6rem;
  margin-top: 2.4rem;
}

.copyright p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.44rem;
  margin: 0;
  text-align: center;
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  margin-top: 0.8rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1.44rem;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #14b8a6;
  text-shadow: 0 0 10px rgba(20, 184, 166, 0.3);
}

.footer-bottom-links .separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.28rem;
  margin: 0 0.32rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 3.2rem;
  right: 3.2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #14b8a6, #0d9488);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 1000;
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, #0d9488, #0f766e);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 35px rgba(20, 184, 166, 0.4);
}

.back-to-top i {
  font-size: 1.92rem;
}

/* Responsive Design */


/* Dark Mode Enhancements */

/* Animation Keyframes */
@keyframes shimmer {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

/* Print Styles */
@media print {

  .footer-modern,
  .back-to-top {
    display: none !important;
  }
}


/* ========================================
   MODERN IMPRESSIVE PAGINATION STYLES
   ======================================== */

/* Pagination Container */
.paginationcontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3.2rem 0;
  padding: 1.6rem;
}

/* Navigation wrapper - flex column layout */
.paginationcontainer nav {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 1.6rem;
  width: 100%;
}

/* Results text styling */
.paginationcontainer nav div:first-child p {
  margin: 0;
  padding: 0.8rem 1.6rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 198, 173, 0.2);
  border-radius: 8px;
  color: var(--black);
  font-size: 1.44rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 198, 173, 0.1);
}

/* Hide the flex-between wrapper and show both mobile and desktop versions */
.paginationcontainer nav>div {
  display: flex !important;
  justify-content: center !important;
  width: 100%;
}

/* Ensure pagination is always visible and centered */
.paginationcontainer .d-none.d-sm-flex {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 1.6rem;
}

/* Hide mobile-only pagination to avoid duplication */
.paginationcontainer .d-sm-none {
  display: none !important;
}

/* Override Bootstrap Pagination */
.pagination {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
  background: none;
  border: none;
}

/* Pagination Items */
.page-item {
  margin: 0;
}

.page-item .page-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
  padding: 0;
  margin: 0 2px;

  /* Glassmorphism Effect */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(0, 198, 173, 0.3);
  border-radius: 12px;

  color: var(--black);
  font-weight: 600;
  font-size: 1.44rem;
  text-decoration: none;

  /* Shadows and Glow */
  box-shadow:
    0 4px 15px rgba(0, 198, 173, 0.1),
    inset 0 1px 2px rgba(255, 255, 255, 0.2);

  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* Hover Effects */
.page-item .page-link:hover {
  background: rgba(0, 198, 173, 0.15);
  border-color: rgba(0, 198, 173, 0.6);
  color: #00c6ad;
  transform: translateY(-2px) scale(1.05);

  box-shadow:
    0 8px 25px rgba(0, 198, 173, 0.25),
    inset 0 1px 2px rgba(255, 255, 255, 0.3),
    0 0 20px rgba(0, 198, 173, 0.2);

  /* Neon glow on hover */
  text-shadow: 0 0 10px rgba(0, 198, 173, 0.5);
}

/* Active Page */
.page-item.active .page-link {
  background: linear-gradient(135deg, #00c6ad, #00a693);
  border-color: #00c6ad;
  color: white;

  box-shadow:
    0 6px 20px rgba(0, 198, 173, 0.4),
    inset 0 1px 2px rgba(255, 255, 255, 0.2),
    0 0 25px rgba(0, 198, 173, 0.3);

  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.page-item.active .page-link:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow:
    0 8px 30px rgba(0, 198, 173, 0.5),
    inset 0 1px 2px rgba(255, 255, 255, 0.3),
    0 0 30px rgba(0, 198, 173, 0.4);
}

/* Disabled State */
.page-item.disabled .page-link {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 198, 173, 0.1);
  color: rgba(255, 253, 253, 0.5);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.page-item.disabled .page-link:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 198, 173, 0.1);
  color: rgba(0, 0, 0, 0.3);
  transform: none;
  box-shadow: none;
  text-shadow: none;
}

/* Previous/Next Buttons */
.page-item:first-child .page-link,
.page-item:last-child .page-link {
  min-width: 50px;
  font-weight: 700;
  border-color: rgba(0, 198, 173, 0.1);
  border-color: rgba(0, 198, 173, 0.4);
  color: rgba(255, 253, 253, 0.5);
}

.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
  background: rgba(0, 198, 173, 0.2);
  border-color: rgba(0, 198, 173, 0.7);
}

/* Shimmer Effect for Active Page */
.page-item.active .page-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* Responsive Design */


/* Dark Mode Support */

/* Loading Animation for Pagination */
.pagination-loading {
  opacity: 0.6;
  pointer-events: none;
}

.pagination-loading .page-link {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* End Modern Impressive Pagination Styles */

/* Register/Login Page Styles - Footer Theme Integration */
.register-page-wrapper {
  min-height: 100vh;
  /* background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.2rem 1.6rem;
  position: relative;
  overflow: hidden;
}

.register-page-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.register-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

@keyframes shimmer {

  0%,
  100% {
    background-position: 200% 0;
  }

  50% {
    background-position: -200% 0;
  }
}

.register-header {
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(32, 201, 151, 0.1));
  padding: 4.8rem 3.2rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.register-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  animation: headerShine 4s ease-in-out infinite;
}

@keyframes headerShine {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

.register-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.2rem;
  position: relative;
  z-index: 2;
}

.brand-logo-wrapper {
  position: relative;
  margin-bottom: 2.4rem;
}

.logo-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0891b2, #20c997);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 30px rgba(8, 145, 178, 0.4),
    0 0 60px rgba(8, 145, 178, 0.2),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 3;
}

.brand-logo-img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.brand-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0891b2, #20c997);
  opacity: 0.3;
  filter: blur(20px);
  animation: pulse 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

.brand-text {
  text-align: center;
}

.brand-name {
  color: #ffffff;
  font-size: 2.88rem;
  font-weight: 700;
  margin: 0 0 0.8rem 0;
  background: linear-gradient(135deg, #0891b2, #20c997, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(8, 145, 178, 0.3);
}

.brand-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.44rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.register-welcome {
  position: relative;
  z-index: 2;
}

.welcome-title {
  margin-bottom: 1.6rem;
  position: relative;
  display: inline-block;
}

.welcome-text {
  color: #ffffff;
  font-size: 3.2rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, #ffffff, #0891b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-underline {
  height: 3px;
  background: linear-gradient(135deg, #0891b2, #20c997);
  border-radius: 2px;
  margin: 0 auto;
  width: 60px;
  position: relative;
  overflow: hidden;
}

.title-underline::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: underlineShine 2s ease-in-out infinite;
}

@keyframes underlineShine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.welcome-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0;
  max-width: 400px;
  margin: 0 auto;
  text-align: left;
}

.register-form-section {
  padding: 3.2rem;
}

.form-group {
  margin-bottom: 2.4rem;
}

.form-label {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: block;
  font-size: 1.44rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-wrapper {
  position: relative;
  margin-bottom: 0.8rem;
}

.register-page-wrapper .form-input {
  width: 100%;
  padding: 15px 20px 15px 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  border-color: #20c997;
  box-shadow: 0 0 0 3px rgba(32, 201, 151, 0.2);
  transform: translateY(-2px);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.76rem;
  transition: all 0.3s ease;
}

.input-wrapper:focus-within .input-icon {
  color: #20c997;
}

/* Password Toggle Styles */
.password-toggle {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.76rem;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.password-toggle:hover {
  color: #20c997;
  transform: translateY(-50%) scale(1.1);
}

.password-toggle:focus {
  outline: none;
  color: #20c997;
}

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

.validation-message {
  margin-top: 0.8rem;
}

.validation-message .text-danger {
  color: #ff6b6b !important;
  font-size: 1.28rem;
  margin: 0;
}

.password-requirements {
  margin-top: 1.6rem;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.requirement-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  font-size: 1.36rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.requirement-item:last-child {
  margin-bottom: 0;
}

.requirement-icon {
  width: 16px;
  height: 16px;
  margin-right: 0.8rem;
  color: #ff6b6b;
  transition: all 0.3s ease;
}

.requirement-item.valid .requirement-icon {
  color: #20c997;
}

.requirement-item.valid {
  color: rgba(32, 201, 151, 0.8);
}

.file-upload-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
}

.file-input {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.file-upload-label:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #20c997;
  color: #20c997;
  transform: translateY(-2px);
}

.file-upload-label i {
  margin-right: 0.8rem;
  font-size: 1.92rem;
}

.social-login-section {
  margin: 3.2rem 0;
}

.divider {
  position: relative;
  text-align: center;
  margin-bottom: 2.4rem;
}

.divider-text {
  padding: 0 1.6rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.36rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-buttons {
  display: flex;
  justify-content: center;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  min-width: 140px;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  text-decoration: none;
}

.social-btn img {
  width: 20px;
  height: 20px;
  margin-right: 0.8rem;
}

.form-actions {
  margin: 3.2rem 0 2.4rem;
}

.register-btn {
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(135deg, #20c997, #17a2b8);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(32, 201, 151, 0.3);
}

.register-btn:hover {
  background: linear-gradient(135deg, #17a2b8, #20c997);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(32, 201, 151, 0.4);
}

.register-btn:active {
  transform: translateY(-1px);
}

.register-btn i {
  margin-right: 0.8rem;
  font-size: 1.76rem;
}

.login-link {
  text-align: center;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.login-link p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 1.44rem;
}

.login-link-text {
  color: #20c997;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.login-link-text:hover {
  color: #17a2b8;
  text-decoration: underline;
}

/* Responsive Design */

/* Login Form Styles - Matching Register Form Design */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2.4rem 0;
  font-size: 2.56rem;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.remember-me input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--teal-accent);
  cursor: pointer;
}

.remember-me label {
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  margin: 0;
  font-size: 1.6rem;
}

.forgot-password {
  color: var(--brand-text-color);
  text-decoration: none;
  font-size: 1.6rem;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: var(--teal-light);
  text-decoration: underline;
}

.form-footer {
  text-align: center;
  margin-top: 3.2rem;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-footer p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 2.56rem;
}

.login-link {
  color: var(--teal-accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.login-link:hover {
  color: var(--teal-light);
  text-decoration: underline;
}

.social-login {
  margin-top: 3.2rem;
}

.divider {
  text-align: center;
  margin: 2.4rem 0;
  position: relative;
}

.divider span {
  background: var(--card-bg);
  padding: 0 1.6rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
}

.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.28rem;
  width: 100%;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: var(--text-color);
  text-decoration: none;
  font-size: 2.56rem;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.google-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.google-btn img {
  width: 20px;
  height: 20px;
}

/* ========================================== */
/* Carousel Header Component - Reusable Design */
/* ========================================== */

.carousel-header {
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(32, 201, 151, 0.1));
  padding: 3.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 3.2rem;
}

.carousel-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  animation: headerShine 4s ease-in-out infinite;
}

.carousel-brand {
  display: flex;
  align-items: center;
  margin-bottom: 2.4rem;
  position: relative;
  z-index: 2;
}

.carousel-logo-wrapper {
  position: relative;
  margin-right: 2.4rem;
}

.carousel-logo-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0891b2, #20c997);
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 20px rgba(8, 145, 178, 0.4),
    0 0 40px rgba(8, 145, 178, 0.2),
    inset 0 0 15px rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 3;
}

.carousel-logo-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.carousel-glow {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0891b2, #20c997);
  opacity: 0.3;
  filter: blur(15px);
  animation: pulse 3s ease-in-out infinite;
  z-index: 1;
}

.carousel-brand-text {
  flex: 1;
}

.carousel-brand-name {
  color: #ffffff;
  font-size: 2.56rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #0891b2, #20c997, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(8, 145, 178, 0.3);
}

.carousel-welcome {
  position: relative;
  z-index: 2;
  text-align: left;
}

.carousel-title {
  margin-bottom: 1.6rem;
  position: relative;
  display: block;
  text-align: left;
}

.carousel-text {
  color: #ffffff;
  font-size: 2.88rem;
  font-weight: 600;
  display: block;
  margin-bottom: 1.6rem;
  background: linear-gradient(135deg, #ffffff, #0891b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
}

.carousel-underline {
  height: 3px;
  background: linear-gradient(135deg, #0891b2, #20c997);
  border-radius: 2px;
  width: 80px;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.carousel-underline::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: underlineShine 2s ease-in-out infinite;
}

/* ========================================== */
/* Footer-Themed Carousel Components */
/* ========================================== */

.carousel-container-themed {
  background: linear-gradient(135deg,
      rgba(15, 23, 42, 0.95) 0%,
      rgba(30, 41, 59, 0.95) 50%,
      rgba(15, 23, 42, 0.95) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 12px;
  padding: 2.4rem 30px;
  margin-bottom: 3.2rem;
  position: relative;
  overflow: hidden;
}

.carousel-container-themed::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.1), transparent);
  animation: footerShine 4s ease-in-out infinite;
}

.cardcontainer-themed {
  width: 100%;
  max-width: 300px;
  min-width: 290px;
  min-height: 203px;
  margin: 2px;
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid rgba(20, 184, 166, 0.15);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.cardcontainer-themed:hover {
  background: rgba(30, 41, 59, 0.5);
  border-color: rgba(20, 184, 166, 0.4);
  transform: translateY(-2px);
}

.image-content-themed {
  width: 100%;
  max-width: 130px;
  height: 201px;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
  position: relative;
}

.image-content-themed a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-content-themed::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(20, 184, 166, 0.1) 100%);
  pointer-events: none;
}

.card-content-themed {
  width: calc(100% - 133px);
  font-size: 12px;
  background: linear-gradient(135deg,
      rgba(30, 41, 59, 0.8) 0%,
      rgba(15, 23, 42, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 12px 12px 0;
  padding: 0.8rem;
}

.storytitle-themed {
  width: 90%;
  text-align: left;
  margin: 10px auto;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 13px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.storyreleasedate-themed {
  width: 90%;
  margin: 10px auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.chaptercontainer-themed {
  width: calc(100% - 20px);
  margin: 0 auto;
}

.chapter-themed {
  width: 75%;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 8px;
  text-align: center;
  margin: 5px auto;
  padding: 0.4rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  transition: all 0.3s ease;
}

.chapter-themed:hover {
  background: rgba(20, 184, 166, 0.2);
  border-color: rgba(20, 184, 166, 0.4);
  color: #14b8a6;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(20, 184, 166, 0.2);
}

.slick-button-themed {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  color: #14b8a6;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.slick-button-themed.slick-prev {
  left: 20px;
}

.slick-button-themed.slick-next {
  right: 20px;
}

.slick-track {
  display: flex;
  gap: 20px;
}

.swiper-button-next-themed:hover,
.swiper-button-prev-themed:hover,
.slick-button-themed:hover {
  background: rgba(20, 184, 166, 0.2);
  border-color: rgba(20, 184, 166, 0.5);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}



.slick-carousel-themed .slick-dots li button {
  background: rgba(20, 184, 166, 0.3);
  border: 1px solid rgba(20, 184, 166, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.swiper-pagination-themed .swiper-pagination-bullet-active,
.slick-carousel-themed .slick-dots li.slick-active button {
  background: #14b8a6;
  border-color: #14b8a6;
  box-shadow: 0 0 10px rgba(20, 184, 166, 0.5);
}

/* Slick Slider specific styles */
.slick-carousel-themed {
  position: relative;
}

.slick-carousel-themed .slick-dots {
  bottom: -50px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 20px;
}

.slick-carousel-themed .slick-dots li {
  margin: 0;
  width: 12px;
  height: 12px;
}

.slick-carousel-themed .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 1px solid rgba(20, 184, 166, 0.5);
  outline: none;
  background: rgba(20, 184, 166, 0.3);
}

.slick-carousel-themed .slick-dots li button:hover,
.slick-carousel-themed .slick-dots li button:focus {
  outline: none;
}

.slick-carousel-themed .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #14b8a6;
}

/* Ensure proper spacing for slick slider */
.slick-carousel-themed .slick-slide {
  padding: 0 10px;
}

.slick-carousel-themed .slick-list {
  margin: 0 -10px;
}

/* Hide default slick arrows and use custom ones */
/* .slick-carousel-themed .slick-arrow {
    display: none !important;
} */

/* Responsive adjustments for slick buttons */
@media (max-width: 768px) {

  .slick-button-themed {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .slick-button-themed {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

@keyframes footerShine {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

/* About Page Footer Theme Styling */
.about-page-themed {
  border-radius: 15px;
  color: #e2e8f0;
  position: relative;
  overflow: hidden;
}

.about-header-box-themed {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98));
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid rgba(20, 184, 166, 0.3);
  border-radius: 20px;
  padding: 3.2rem;
  margin-bottom: 3.2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-header-box-themed::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.1), transparent);
  transition: left 0.5s;
}

.about-header-box-themed:hover::before {
  left: 100%;
}

.about-header-title-themed {
  color: #14b8a6;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  text-shadow: 0 0 20px rgba(20, 184, 166, 0.3);
}

.about-header-subtitle-themed {
  color: #cbd5e1;
  font-size: 1.92rem;
  font-weight: 300;
  opacity: 0.9;
}

.accordion-themed {
  background: transparent;
  border: none;
}

.accordion-item-themed {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 15px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item-themed:hover {
  border-color: rgba(20, 184, 166, 0.4);
  box-shadow: 0 5px 20px rgba(20, 184, 166, 0.1);
}

.accordion-header-themed {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(20, 184, 166, 0.05));
  color: #14b8a6;
  font-weight: 600;
  font-size: 2.08rem;
  padding: 1.92rem 2.4rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.accordion-header-themed::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.1), transparent);
  transition: left 0.5s;
}

.accordion-header-themed:hover::before {
  left: 100%;
}

.accordion-header-themed:hover {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(20, 184, 166, 0.08));
  color: #0d9488;
}

.accordion-content-themed {
  background: rgba(15, 23, 42, 0.5);
  color: #e2e8f0;
  padding: 2.4rem;
  line-height: 1.7;
  font-size: 1.6rem;
}

.contact-form-themed {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid rgba(20, 184, 166, 0.3);
  border-radius: 20px;
  padding: 3.2rem;
  margin-top: 3.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form-title-themed {
  color: #14b8a6;
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3.2rem;
  text-shadow: 0 0 15px rgba(20, 184, 166, 0.3);
}

.form-group-themed {
  margin-bottom: 2.4rem;
}

.form-label-themed {
  color: #cbd5e1;
  font-weight: 500;
  margin-bottom: 0.8rem;
  display: block;
}

.form-input-themed {
  background: rgba(15, 23, 42, 0.8);
  border: 2px solid rgba(20, 184, 166, 0.3);
  border-radius: 10px;
  color: #e2e8f0;
  padding: 1.28rem 1.6rem;
  width: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.form-input-themed:focus {
  outline: none;
  border-color: #14b8a6;
  box-shadow: 0 0 15px rgba(20, 184, 166, 0.3);
  background: rgba(15, 23, 42, 0.9);
}

.form-input-themed::placeholder {
  color: #64748b;
}

.contact-btn-themed {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  padding: 1.28rem 3.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-btn-themed::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;
}

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

.contact-btn-themed:hover {
  background: linear-gradient(135deg, #0d9488, #0f766e);
  box-shadow: 0 5px 20px rgba(20, 184, 166, 0.4);
  transform: translateY(-2px);
}

.about-footer-themed {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98));
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 2px solid rgba(20, 184, 166, 0.3);
  padding: 4.8rem 0 3.2rem;
  margin-top: 4.8rem;
  text-align: center;
  color: #e2e8f0;
}

.about-footer-logo-themed {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(20, 184, 166, 0.5);
  margin: 0 auto 1.6rem;
  transition: all 0.3s ease;
}

.about-footer-logo-themed:hover {
  border-color: #14b8a6;
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.4);
}

.about-footer-title-themed {
  color: #14b8a6;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
}

.about-footer-social-themed {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin: 3.2rem 0;
}

.about-footer-social-link-themed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(20, 184, 166, 0.1);
  border: 2px solid rgba(20, 184, 166, 0.3);
  border-radius: 50%;
  color: #14b8a6;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-footer-social-link-themed:hover {
  background: rgba(20, 184, 166, 0.2);
  border-color: #14b8a6;
  color: #0d9488;
  box-shadow: 0 0 15px rgba(20, 184, 166, 0.3);
  transform: translateY(-2px);
}

.about-footer-bottom-themed {
  border-top: 1px solid rgba(20, 184, 166, 0.2);
  padding-top: 2.4rem;
  margin-top: 3.2rem;
  color: #94a3b8;
  font-size: 1.44rem;
}

.about-footer-links-themed {
  display: flex;
  justify-content: center;
  gap: 3.2rem;
  margin-bottom: 1.6rem;
}

.about-footer-link-themed {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-footer-link-themed:hover {
  color: #14b8a6;
}

/* New About Page Redesign Styles */


/* Hero Banner */
.about-hero-banner-themed {
  padding: 8rem 0;
  overflow: hidden;
  text-align: center;
}

@keyframes twinkle {
  0% {
    opacity: 0.3;
  }

  100% {
    opacity: 0.8;
  }
}

.about-hero-title-themed {
  color: #14b8a6;
  font-size: 5.6rem;
  font-weight: 800;
  margin-bottom: 2.4rem;
  text-shadow: 0 0 30px rgba(20, 184, 166, 0.4);
  position: relative;
  z-index: 2;
}

.about-hero-subtitle-themed {
  color: #cbd5e1;
  font-size: 2.24rem;
  font-weight: 300;
  margin-bottom: 3.2rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.about-hero-decoration-themed {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  position: relative;
  z-index: 2;
}

.about-hero-decoration-themed i {
  color: #14b8a6;
  font-size: 2.4rem;
  animation: pulse 2s ease-in-out infinite alternate;
}

.about-hero-decoration-themed i:nth-child(2) {
  animation-delay: 0.5s;
}

.about-hero-decoration-themed i:nth-child(3) {
  animation-delay: 1s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* Content Sections */
.about-content-section-themed {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 20px;
  padding: 4rem;
  margin-bottom: 3.2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.about-content-section-themed:hover {
  border-color: rgba(20, 184, 166, 0.4);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.1);
  transform: translateY(-5px);
}

.about-section-header-themed {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 2.4rem;
}

.about-section-icon-themed {
  font-size: 3.2rem;
  filter: drop-shadow(0 0 10px rgba(20, 184, 166, 0.3));
}

.about-section-title-themed {
  color: #14b8a6;
  font-size: 3.52rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 0 15px rgba(20, 184, 166, 0.3);
}

.about-section-content-themed {
  color: #e2e8f0;
  line-height: 1.8;
  font-size: 1.76rem;
}

.about-section-content-themed p {
  margin-bottom: 1.92rem;
}

/* Feature List */
.about-feature-list-themed {
  list-style: none;
  padding: 0;
  margin: 2.4rem 0;
}

.about-feature-list-themed li {
  background: rgba(20, 184, 166, 0.05);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 10px;
  padding: 1.6rem;
  margin-bottom: 1.28rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-feature-list-themed li::before {
  content: '✨';
  position: absolute;
  left: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.92rem;
}

.about-feature-list-themed li {
  padding-left: 4.8rem;
}

.about-feature-list-themed li:hover {
  background: rgba(20, 184, 166, 0.1);
  border-color: rgba(20, 184, 166, 0.3);
  transform: translateX(10px);
}

/* Mission Card */
.about-mission-card-themed {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(20, 184, 166, 0.05));
  border: 2px solid rgba(20, 184, 166, 0.3);
  border-radius: 15px;
  padding: 3.2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-mission-card-themed::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(20, 184, 166, 0.1), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.about-mission-text-themed {
  color: #e2e8f0;
  font-size: 1.92rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 2;
}

/* Community Grid */
.about-community-grid-themed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.4rem;
  margin-top: 2.4rem;
}

.about-community-item-themed {
  background: rgba(20, 184, 166, 0.05);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 12px;
  padding: 2.4rem;
  text-align: center;
  transition: all 0.3s ease;
}

.about-community-item-themed:hover {
  background: rgba(20, 184, 166, 0.1);
  border-color: rgba(20, 184, 166, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.1);
}

.about-community-item-themed h4 {
  color: #14b8a6;
  font-size: 2.08rem;
  font-weight: 600;
  margin-bottom: 1.28rem;
}

.about-community-item-themed p {
  color: #cbd5e1;
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0;
}

/* Process Grid */
.about-process-grid-themed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.4rem;
  margin-top: 2.4rem;
}

.about-process-step-themed {
  background: rgba(20, 184, 166, 0.05);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 12px;
  padding: 2.4rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.about-process-step-themed:hover {
  background: rgba(20, 184, 166, 0.1);
  border-color: rgba(20, 184, 166, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.1);
}

.about-step-number-themed {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #14b8a6, #0d9488);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 auto 1.6rem;
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.about-process-step-themed h4 {
  color: #14b8a6;
  font-size: 1.92rem;
  font-weight: 600;
  margin-bottom: 1.28rem;
}

.about-process-step-themed p {
  color: #cbd5e1;
  font-size: 1.52rem;
  line-height: 1.6;
  margin: 0;
}

/* Enhanced Contact Form */
.contact-form-subtitle-themed {
  color: #cbd5e1;
  font-size: 1.76rem;
  text-align: center;
  margin-bottom: 3.2rem;
  opacity: 0.9;
}

.contact-btn-themed {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #14b8a6, #0d9488);
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 600;
  font-size: 1.76rem;
  padding: 1.6rem 3.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.contact-btn-themed::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;
}

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

.contact-btn-themed:hover {
  background: linear-gradient(135deg, #0d9488, #0f766e);
  box-shadow: 0 6px 25px rgba(20, 184, 166, 0.4);
  transform: translateY(-3px);
}

/* Star Packages Styles - PC Version */
.star-packages-header {
  text-align: center;
  margin-bottom: 6.4rem;
}

.packages-title {
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--white-text-color);
  margin-bottom: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.packages-subtitle {
  font-size: 1.92rem;
  color: var(--text-color);
  opacity: 0.8;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3.2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.package-card {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(0, 198, 173, 0.1) 0%, rgba(0, 198, 173, 0.05) 100%);
  border: 2px solid rgba(0, 198, 173, 0.3);
  padding: 3.2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  overflow: hidden;

  display: flex;
  flex-direction: column;
}

.help-faq-card.package-card{
  max-width: 100%;
}

.help-contact-card.payment-card{
  flex-direction: column;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 198, 173, 0.1) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}



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

.package-card:hover {
  transform: translateY(-10px);
  border-color: var(--primarycolor);
  box-shadow: 0 20px 40px rgba(0, 198, 173, 0.2);
}

.package-header {
  margin-bottom: 4rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(0, 198, 173, 0.2);
}

.package-name {
  font-size: 1.92rem;
  font-weight: 600;
  color: var(--white-text-color);
  margin-bottom: 1.28rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-description {
  color: var(--text-color);
  opacity: 0.9;
  font-size: 1.52rem;
  margin: 0;
  line-height: 1.4;
}

.package-content {
  margin-bottom: 4rem;
}

.package-features {
  text-align: left;
  margin-bottom: 3.2rem;
  padding: 0 0.8rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 2.4rem;
  color: var(--text-color);
  padding: 0.8rem 0;
  border-radius: 8px;
  transition: all 0.2s ease;
  gap: 10px;
}

.feature-item:hover {
  background: rgba(0, 198, 173, 0.05);
  padding-left: 0.8rem;
}

.feature-item i {
  color: var(--primarycolor);
  margin-right: 1.92rem;
  font-size: 1.76rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 1.52rem;
  line-height: 1;
  font-weight: 500;
}

.package-footer {
  margin-top: auto;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(0, 198, 173, 0.15);
}

.package-price {
  margin-bottom: 3.2rem;
}

.price {
  font-size: 1.92rem;
  font-weight: 600;
  color: var(--primarycolor);
  display: block;
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 4px rgba(0, 198, 173, 0.3);
}

.price-usd {
  font-size: 1.6rem;
  font-weight: 500;
  color: #666;
  display: block;
  margin-bottom: 0.8rem;
}

.purchase-btn {
  background: linear-gradient(135deg, var(--primarycolor) 0%, #00b8a3 100%);
  color: white;
  border: none;
  padding: 1.6rem 4rem;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 198, 173, 0.3);
  display: block;
}

/* Modern flat design toast notifications */
.toastify.toast-success,
.toastify.toast-warning,
.toastify.toast-danger {
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  z-index: 9999 !important;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
  padding: 18px 24px;
  min-width: 320px;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  transform: translateX(0);
}

.toastify.toast-success:hover,
.toastify.toast-warning:hover,
.toastify.toast-danger:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.toast-close {
  position: absolute;
  right: 12px;
  top: 12px;
}

.toastify.toast-success {
  background: linear-gradient(135deg, rgba(0, 198, 173, 0.1) 0%, rgba(0, 198, 173, 0.05) 100%);
  color: #ffffff;
  backdrop-filter: blur(10px);
  border-left: 5px solid #00a693;
}

.toastify.toast-warning {
  background: linear-gradient(
    135deg,
    rgba(255, 228, 168, 0.4) 0%,
    rgba(255, 228, 168, 0.15) 100%
  );
  backdrop-filter: blur(10px);
  color: #ffffff;
  border-left: 5px solid #f57c00;
}

.toastify.toast-danger {
  background: linear-gradient(135deg, rgba(255, 71, 87, 0.1) 0%, rgba(255, 71, 87, 0.05) 100%);
  color: #ffffff;
  backdrop-filter: blur(10px);
  border-left: 5px solid #d32f2f;
}

/* Alert Notice Styling */
.alert-notice {
  background: rgba(255, 71, 87, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 71, 87, 0.2);
  border-radius: 10px;
  padding: 1.6rem 2.4rem;
  margin-bottom: 3.2rem;
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.1);
}

.alert-content {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.alert-content i {
  color: var(--text-color) !important;
  font-size: 2.4rem;
  flex-shrink: 0;
}

.alert-content .svg-inline--fa,
.star-order-modal-header .svg-inline--fa {
  color: rgba(255, 71, 87, 1) !important;
}

.alert-content p {
  color: white;
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
}

/* Payment Section Styling */
.payment-section {
  margin-top: 4.8rem;
  padding: 3.2rem 0;
  border-top: 1px solid rgba(0, 198, 173, 0.2);
}

.payment-title {
  text-align: center;
  font-size: 3.2rem;
  color: var(--primarycolor);
  margin-bottom: 3.2rem;
  font-weight: 700;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.6rem;
}

.payment-method {
  background: linear-gradient(135deg, rgba(0, 198, 173, 0.1) 0%, rgba(0, 198, 173, 0.05) 100%);
  border: 2px solid rgba(0, 198, 173, 0.3);
  border-radius: 8px;
  padding: 2.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.payment-method::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 198, 173, 0.1) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.payment-method:hover {
  background: linear-gradient(135deg, rgba(0, 198, 173, 0.15) 0%, rgba(0, 198, 173, 0.08) 100%);
  border-color: var(--primarycolor);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 198, 173, 0.15);
}

.payment-method:hover::before {
  opacity: 1;
}

.payment-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.payment-name {
  font-size: 1.92rem;
  font-weight: 700;
  color: var(--primarycolor);
}

.payment-account {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-color);
}

.payment-note {
  font-size: 1.44rem;
  color: #ff6b6b;
  font-style: italic;
}

/* ===== BOOTSTRAP MODAL STYLING (Dark Theme) ===== */
/* Only style the content, don't override Bootstrap's modal behavior */

/* Modal backdrop blur effect */
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(5px);
}

.modal-backdrop.show {
  opacity: 1 !important;
}

.modal-content {
  background: linear-gradient(145deg, 
      rgba(30, 41, 59, 0.98) 0%, 
      rgba(15, 23, 42, 0.99) 100%) !important;
  border: 1px solid rgba(20, 184, 166, 0.25) !important;
  border-radius: 16px !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5) !important;
  color: #ffffff;
}

.modal-header {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  color: #ffffff;
  padding: 1.5rem 2rem;
  border-radius: 16px 16px 0 0 !important;
  border-bottom: none !important;
}

.modal-header .modal-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.modal-header .btn-close:hover {
  opacity: 1;
}

.modal-body {
  padding: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.4rem;
}

.modal-body .modal-title {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.modal-body p {
  color: rgba(255, 255, 255, 0.8);
}

.modal-body a {
  color: #14b8a6;
}

.modal-body a:hover {
  color: #0d9488;
}

.modal-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(20, 184, 166, 0.2) !important;
  gap: 12px;
}

/* Rating Widget in Modal */
.widget {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.widget label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 18px;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 25px;
  color: #fbbf24;
  cursor: pointer;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.widget label:hover {
  background: rgba(20, 184, 166, 0.15);
  border-color: rgba(20, 184, 166, 0.4);
}

.widget input[type="radio"] {
  display: none;
}

.widget input[type="radio"]:checked + label {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  border-color: #14b8a6;
  color: #ffffff;
}

/* Modal Buttons */
.modalbtn {
  padding: 12px 28px !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  font-size: 1.4rem !important;
  cursor: pointer;
  transition: all 0.3s ease !important;
}

.modalbtn.btn-danger,
.modal .btn-danger {
  background: rgba(239, 68, 68, 0.2) !important;
  border: 1px solid rgba(239, 68, 68, 0.4) !important;
  color: #f87171 !important;
}

.modalbtn.btn-danger:hover,
.modal .btn-danger:hover {
  background: rgba(239, 68, 68, 0.3) !important;
  border-color: rgba(239, 68, 68, 0.6) !important;
  transform: translateY(-2px);
}

.modalbtn.btn-success,
.modal .btn-success,
.commentformbtn.modalbtn {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%) !important;
  border: none !important;
  color: #ffffff !important;
}

.modalbtn.btn-success:hover,
.modal .btn-success:hover,
.commentformbtn.modalbtn:hover {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
}

/* Cost Message in Purchase Modal */
.costmessage {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 15px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 10px;
  margin-top: 10px;
}

/* Error Modal Body */
#purchaseErrormodalbody {
  font-size: 1.5rem;
  text-align: center;
  padding: 30px 20px;
}

#purchaseErrormodalbody a {
  color: #14b8a6;
  font-weight: 600;
}

#purchaseErrormodalbody a:hover {
  color: #0d9488;
  text-decoration: underline;
}

/* Professional Menu Boxes Design */
.menu-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3.2rem;
  padding: 3.2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-box {
  width: 100%;
  max-width: 180px;
  background: linear-gradient(135deg, rgba(0, 198, 173, 0.1) 0%, rgba(0, 198, 173, 0.05) 100%);
  border: 2px solid rgba(0, 198, 173, 0.3);
  padding: 10px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  overflow: hidden;
  text-decoration: none;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.menu-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 198, 173, 0.1) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.menu-box:hover::before {
  opacity: 1;
}

.menu-box:hover {
  transform: translateY(-8px);
  border-color: var(--primarycolor);
  box-shadow: 0 20px 40px rgba(0, 198, 173, 0.2);
  color: var(--white-text-color);
}

.menu-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 2.4rem;
  filter: brightness(0) saturate(100%) invert(85%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(95%);
  transition: all 0.3s ease;
}

.menu-box:hover .menu-icon {
  filter: brightness(0) saturate(100%) invert(70%) sepia(98%) saturate(2618%) hue-rotate(158deg) brightness(91%) contrast(101%);
  transform: scale(1.1);
}

.menu-box {
  font-size: 1.76rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Menu Header Styling */
.cmn-header {
  color: var(--white-text-color);
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.cmn-header::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primarycolor), var(--brand-text-color));
  border-radius: 2px;
}

/* Content Container */
.content-less {
  padding: 4.8rem 1.6rem;
  min-height: 80vh;
}

.payment-instructions {
  margin-top: 2.4rem;
  padding: 2.4rem;
  background: linear-gradient(135deg, rgba(0, 198, 173, 0.1) 0%, rgba(0, 198, 173, 0.05) 100%);
  border-radius: 10px;
  border: 2px solid rgba(0, 198, 173, 0.2);
}

.payment-instructions h4 {
  color: var(--primarycolor);
  margin-bottom: 1.6rem;
  font-size: 1.92rem;
}

.payment-instructions ol {
  margin: 0;
  padding-left: 2.4rem;
}

.payment-instructions li {
  margin-bottom: 0.8rem;
  color: #333;
  line-height: 1.5;
  background: linear-gradient(135deg, #00b8a3 0%, var(--primarycolor) 100%);
}

.price-period {
  font-size: 1.6rem;
  color: var(--text-color);
  opacity: 0.7;
}

.features-section {
  margin-top: 9.6rem;
  text-align: center;
}

.features-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--white-text-color);
  margin-bottom: 4.8rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3.2rem;
  place-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.feature-card {
  width: 100%;
  max-width: 300px;
  min-height: 307px;
  background: linear-gradient(135deg, rgba(0, 198, 173, 0.1) 0%, rgba(0, 198, 173, 0.05) 100%);
  border: 1px solid rgba(0, 198, 173, 0.2);
  padding: 3.2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primarycolor);
  box-shadow: 0 10px 30px rgba(0, 198, 173, 0.15);
}

.feature-icon {
  font-size: 4.8rem;
  color: var(--primarycolor);
  margin-bottom: 1.6rem;
}

.feature-card h3 {
  font-size: 2.08rem;
  color: var(--white-text-color);
  margin-bottom: 1.6rem;
}

.feature-card p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
}

/* Orders Table Styles */
.orders-filter-card {
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--bgt-color) 100%);
  border: 1px solid rgba(0, 198, 173, 0.2);
  border-radius: 16px;
  padding: 3.2rem;
  margin-bottom: 3.2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.orders-filter-form .filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  align-items: end;
}

.filter-group {
  flex: 1;
  min-width: 200px;
}

.filter-label {
  display: block;
  color: var(--white-text-color);
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: 1.44rem;
}

.filter-label i {
  color: var(--primarycolor);
  margin-right: 0.8rem;
}

.filter-input {
  width: 100%;
  padding: 1.2rem 1.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 198, 173, 0.3);
  border-radius: 8px;
  color: var(--white-text-color);
  font-size: 1.52rem;
  transition: all 0.3s ease;
}

.filter-input:focus {
  outline: none;
  border-color: var(--primarycolor);
  box-shadow: 0 0 0 3px rgba(0, 198, 173, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.filter-actions {
  display: flex;
  gap: 1.6rem;
  flex-shrink: 0;
}

.btn-filter, .btn-clear {
  padding: 1.2rem 2.4rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: none;
  cursor: pointer;
  font-size: 1.44rem;
}

.btn-filter {
  background: linear-gradient(135deg, var(--primarycolor) 0%, #00a693 100%);
  color: white;
}

.btn-filter:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 198, 173, 0.3);
}

.btn-clear {
  background: rgba(255, 71, 87, 0.1);
  color: #ff4757;
  border: 1px solid rgba(255, 71, 87, 0.3);
}

.btn-clear:hover {
  background: rgba(255, 71, 87, 0.2);
  transform: translateY(-2px);
}

/* Orders Table Container */
.orders-table-container {
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--bgt-color) 100%);
  border: 1px solid rgba(0, 198, 173, 0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.table-responsive-wrapper {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primarycolor) rgba(255, 255, 255, 0.1);
}

.table-responsive-wrapper::-webkit-scrollbar {
  height: 8px;
}

.table-responsive-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.table-responsive-wrapper::-webkit-scrollbar-thumb {
  background: var(--primarycolor);
  border-radius: 4px;
}

.orders-table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  font-size: 1.44rem;
}

.orders-table thead {
  background: linear-gradient(135deg, rgba(0, 198, 173, 0.2) 0%, rgba(0, 198, 173, 0.1) 100%);
}

.orders-table th {
  padding: 2rem 1.6rem;
  text-align: left;
  font-weight: 700;
  color: var(--white-text-color);
  border-bottom: 2px solid rgba(0, 198, 173, 0.3);
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 1.28rem;
  letter-spacing: 0.5px;
}

.orders-table th i {
  color: var(--primarycolor);
  margin-right: 0.8rem;
}

.orders-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.orders-table tbody tr:hover {
  background: rgba(0, 198, 173, 0.05);
  transform: scale(1.01);
}

.orders-table td {
  padding: 1.6rem;
  color: var(--white-text-color);
  vertical-align: middle;
}

/* Order ID Badge */
.order-id-badge {
  background: linear-gradient(135deg, rgba(0, 198, 173, 0.2) 0%, rgba(0, 198, 173, 0.1) 100%);
  color: white;
  padding: 0.64rem 1.28rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.28rem;
  display: inline-block;
}

/* Package Info */
.package-info .package-name {
  font-weight: 600;
  color: var(--brand-text-color);
}

/* Stars Info */
.stars-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.star-amount {
  font-weight: 700;
  color: #ffd700;
  font-size: 1.6rem;
}

.star-icon {
  color: #ffd700;
  font-size: 1.44rem;
}

/* Payment Method */
.payment-method {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.48rem 1.28rem;
  border-radius: 12px;
  font-size: 1.28rem;
  font-weight: 600;
  text-transform: capitalize;
}

/* Status Badges */
.status-badge {
  padding: 0.64rem 1.28rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.28rem;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  text-transform: capitalize;
}

.status-pending {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-approved {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-rejected {
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Date Info */
.date-info {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}

.date-main {
  font-weight: 600;
  color: var(--white-text-color);
}

.date-time {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Description */
.description-text {
  max-width: 200px;
  word-wrap: break-word;
  line-height: 1.4;
}

/* No Orders Message */
.no-orders-message {
  text-align: center;
  padding: 6.4rem 3.2rem;
  color: var(--white-text-color);
}

.no-orders-icon {
  font-size: 6.4rem;
  color: var(--primarycolor);
  margin-bottom: 2.4rem;
  opacity: 0.7;
}

.no-orders-message h3 {
  font-size: 2.88rem;
  margin-bottom: 1.6rem;
  color: var(--white-text-color);
}

.no-orders-message p {
  font-size: 1.76rem;
  margin-bottom: 3.2rem;
  opacity: 0.8;
}

.btn-explore {
  background: linear-gradient(135deg, var(--primarycolor) 0%, #00a693 100%);
  color: white;
  padding: 1.6rem 3.2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
}

.btn-explore:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 198, 173, 0.3);
  color: white;
  text-decoration: none;
}

/* Pagination Styling */
.orders-pagination {
  padding: 2.4rem;
  display: flex;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.orders-pagination .pagination {
  margin: 0;
}

.orders-pagination .page-link {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 198, 173, 0.3);
  color: var(--white-text-color);
  padding: 0.8rem 1.2rem;
  margin: 0 0.32rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.orders-pagination .page-link:hover {
  background: var(--primarycolor);
  border-color: var(--primarycolor);
  color: white;
}

.orders-pagination .page-item.active .page-link {
  background: var(--primarycolor);
  border-color: var(--primarycolor);
  color: white;
}

/* ===== BEAUTIFUL STAR ORDER FORM STYLES ===== */

/* Main Container */
.star-order-container {
  background: linear-gradient(135deg, rgba(0, 198, 173, 0.08) 0%, rgba(23, 162, 184, 0.05) 100%);
  border: 1px solid rgba(0, 198, 173, 0.2);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  overflow: hidden;
  position: relative;
}

.star-order-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primarycolor), #17a2b8, var(--primarycolor));
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Header Section */
.order-form-header {
  background: linear-gradient(135deg, var(--primarycolor) 0%, #17a2b8 100%);
  padding: 4.8rem 3.2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.order-form-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.star-icon-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 1.6rem;
}

.star-icon-large {
  font-size: 6.4rem;
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

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

.order-form-title {
  color: white;
  font-size: 4rem;
  font-weight: 700;
  margin: 0 0 0.8rem 0;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.order-form-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.76rem;
  margin: 0;
  position: relative;
  z-index: 2;
  font-weight: 300;
}

/* Form Styling */
.star-order-form {
  padding: 4rem;
}

/* Package Info Card */
.package-info-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 3.2rem;
  margin-bottom: 3.2rem;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.package-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primarycolor), transparent);
}

.package-header {
  /* display: flex; */
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-icon {
  font-size: 2.4rem;
  color: var(--primarycolor);
}

.package-label {
  font-size: 1.92rem;
  font-weight: 600;
  color: var(--text-color);
}

.form-group {
  margin-bottom: 2.4rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
}

.form-label i {
  color: var(--primarycolor);
  font-size: 1.76rem;
}

.form-input {
  width: 100%;
  padding: 1.6rem 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-color);
  font-size: 1.6rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-input:focus {
  outline: none;
  border-color: var(--primarycolor);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(0, 198, 173, 0.1);
}

.readonly-input {
  cursor: not-allowed;
  opacity: 0.8;
}

.star-amount-display {
  position: relative;
}

.star-suffix {
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.92rem;
  pointer-events: none;
}

/* Payment Section */
.payment-section {
  margin-bottom: 3.2rem;
}

.payment-label {
  font-size: 1.92rem;
  margin-bottom: 2.4rem;
  color: var(--text-color);
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}

.payment-option {
  position: relative;
}

.payment-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-card {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 2.4rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.payment-cards-grid .payment-card{
  display: block;
}

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

.payment-card:hover::before {
  left: 100%;
}

.payment-card:hover {
  transform: translateY(-4px);
  border-color: var(--primarycolor);
  box-shadow: 0 8px 25px rgba(0, 198, 173, 0.15);
  background: linear-gradient(135deg, rgba(0, 198, 173, 0.1) 0%, rgba(0, 198, 173, 0.05) 100%);
}

.payment-card.active {
  border-color: var(--primarycolor);
  background: linear-gradient(135deg, rgba(0, 198, 173, 0.15) 0%, rgba(0, 198, 173, 0.08) 100%);
  box-shadow: 0 8px 25px rgba(0, 198, 173, 0.2);
}

.payment-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: white;
  flex-shrink: 0;
}

.kpay-icon {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.wave-icon {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.paypal-icon {
  background: linear-gradient(135deg, #0070ba, #003087);
}

.payment-info {
  flex: 1;
}

.payment-name {
  display: block;
  font-weight: 700;
  font-size: 1.76rem;
  color: var(--text-color);
  margin-bottom: 0.4rem;
}

.payment-desc {
  display: block;
  font-size: 1.44rem;
  color: rgba(255, 255, 255, 0.6);
}

.payment-check {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.payment-card.active .payment-check {
  background: var(--primarycolor);
  border-color: var(--primarycolor);
  color: white;
}

/* Verification Section */
.verification-section {
  margin-bottom: 3.2rem;
}

.required-badge {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-left: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.file-upload-wrapper {
  position: relative;
  margin-bottom: 1.6rem;
}

.file-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4.8rem 3.2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 3px dashed rgba(0, 198, 173, 0.3);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.file-upload-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(0, 198, 173, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.file-upload-label:hover::before {
  opacity: 1;
}

.file-upload-label:hover {
  border-color: var(--primarycolor);
  background: linear-gradient(135deg, rgba(0, 198, 173, 0.1) 0%, rgba(0, 198, 173, 0.05) 100%);
  transform: translateY(-2px);
}

.file-upload-label.file-selected {
  border-color: var(--primarycolor);
  background: linear-gradient(135deg, rgba(0, 198, 173, 0.15) 0%, rgba(0, 198, 173, 0.08) 100%);
}

.upload-icon {
  font-size: 4.8rem;
  color: var(--primarycolor);
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 2;
}

.upload-text {
  text-align: center;
  position: relative;
  z-index: 2;
}

.upload-title {
  display: block;
  font-size: 1.92rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.8rem;
}

.upload-subtitle {
  display: block;
  font-size: 1.44rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Image Preview */
.image-preview-container {
  margin-top: 1.6rem;
}

.image-preview {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.6rem;
  backdrop-filter: blur(10px);
}

.preview-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.6rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.file-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}

.file-name {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-color);
  font-weight: 500;
}

.file-name i {
  color: var(--primarycolor);
}

.file-size {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.44rem;
}

.remove-file {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.remove-file:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

/* Submit Section */
.submit-section {
  text-align: center;
}

.order-submit-btn {
  width: 100%;
  padding: 2rem 3.2rem;
  background: linear-gradient(135deg, var(--primarycolor) 0%, #17a2b8 100%);
  border: none;
  border-radius: 16px;
  color: white;
  font-size: 1.76rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(0, 198, 173, 0.3);
}

.order-submit-btn::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;
}

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

.order-submit-btn:hover {
  background: linear-gradient(135deg, #17a2b8 0%, var(--primarycolor) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 198, 173, 0.4);
}

.order-submit-btn:active {
  transform: translateY(-1px);
}

.order-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-content, .btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.btn-loading {
  display: none;
}

.btn-icon {
  font-size: 1.92rem;
}

.order-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2.4rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.44rem;
}

.order-security i {
  color: var(--primarycolor);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.package-info-card,
.payment-section,
.verification-section,
.submit-section {
  animation: fadeInUp 0.6s ease forwards;
}

.payment-section {
  animation-delay: 0.1s;
}

.verification-section {
  animation-delay: 0.2s;
}

.submit-section {
  animation-delay: 0.3s;
}

/* ========================================== */
/* Modern Professional Profile Page Styles */
/* ========================================== */

/* Profile Page Container */
.userprofile {
  min-height: 100vh;
  padding: 3.2rem 0;
  position: relative;
}

/* Profile Header Section */
.profile-header-modern {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  padding: 3.2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  margin-bottom: 3.2rem;
  position: relative;
  overflow: hidden;
  animation: slideInFromTop 0.8s ease-out;
}

.profile-header-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.1), transparent);
  transition: left 0.5s ease;
}

.profile-header-modern:hover::before {
  left: 100%;
}

/* Profile Image Container */
.profileimagecontainer {
  width: 120px !important;
  height: 120px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.3), rgba(0, 198, 173, 0.3));
  border: 3px solid rgba(20, 184, 166, 0.5);
  padding: 4px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.2);
}

.profileimagecontainer:hover {
  transform: scale(1.05) rotate(2deg);
  border-color: rgba(20, 184, 166, 0.8);
  box-shadow: 0 15px 40px rgba(20, 184, 166, 0.3);
}

.profileimagecontainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.profileimagecontainer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.profileimagecontainer:hover::after {
  opacity: 1;
}

/* Profile Info Section */
.profile-info-modern {
  flex: 1;
  color: rgba(255, 255, 255, 0.9);
}

.profile-name-modern {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, #ffffff, rgba(20, 184, 166, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.profile-email-modern {
  font-size: 1.76rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.6rem;
}

/* Star Container Enhancement */
.starcontainer {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(0, 198, 173, 0.2)) !important;
  border: 2px solid rgba(20, 184, 166, 0.4) !important;
  border-radius: 25px !important;
  padding: 10px 1.6rem !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  backdrop-filter: blur(10px) !important;
  position: relative !important;
  overflow: hidden !important;
}

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

.starcontainer:hover::before {
  left: 100%;
}

/* Form Container Styles */
.formcontainer {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%) !important;
  border: 2px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px !important;
  padding: 3.2rem !important;
  backdrop-filter: blur(15px) !important;
  margin-bottom: 3.2rem !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  animation: slideInFromBottom 0.8s ease-out !important;
}

.formcontainer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.05), transparent);
  transition: left 0.5s ease;
}

.formcontainer:hover::before {
  left: 100%;
}

/* Form Headers */
.form-header-modern {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 3.2rem;
  padding-bottom: 1.6rem;
  border-bottom: 2px solid rgba(20, 184, 166, 0.2);
}

.form-header-modern h4 {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin: 0;
  font-size: 2.4rem;
}

.form-header-modern i {
  color: var(--primarycolor);
  font-size: 2.4rem;
}

/* Form Elements */
.form-group-modern {
  margin-bottom: 2.4rem;
}

.form-label-modern {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
}

.form-input-modern {
  width: 100%;
  padding: 1.6rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.6rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(5px);
}

.form-input-modern:focus {
  outline: none;
  border-color: var(--primarycolor);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
  transform: translateY(-2px);
}

.form-input-modern::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* File Input Styling */
.file-input-modern {
  position: relative;
  display: inline-block;
  width: 100%;
}

.file-input-modern input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-input-label-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding: 2.4rem;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(0, 198, 173, 0.1));
  border: 2px dashed rgba(20, 184, 166, 0.4);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.file-input-label-modern:hover {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(0, 198, 173, 0.15));
  border-color: rgba(20, 184, 166, 0.6);
  transform: translateY(-2px);
}

.file-input-label-modern i {
  font-size: 2.4rem;
  color: var(--primarycolor);
}

/* Button Styles */
.btn-modern {
  padding: 1.6rem 3.2rem;
  background: linear-gradient(135deg, var(--primarycolor), rgba(0, 198, 173, 0.8));
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(20, 184, 166, 0.3);
}

.btn-modern::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-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(20, 184, 166, 0.4);
}

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

.btn-modern:active {
  transform: translateY(-1px);
}

/* Profile Items List */
.profile-items-modern {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profileitem {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%) !important;
  border: 2px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  padding: 1.6rem 2.4rem !important;
  margin-bottom: 1.6rem !important;
  color: rgba(255, 255, 255, 0.9) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  backdrop-filter: blur(10px) !important;
  position: relative !important;
  overflow: hidden !important;
}

.profileitem::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.1), transparent);
  transition: left 0.5s ease;
}

.profileitem:hover {
  border-color: rgba(20, 184, 166, 0.3) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(20, 184, 166, 0.1) !important;
}

.profileitem:hover::before {
  left: 100%;
}

/* Password Text Styling */
.passwordtext {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 1.44rem !important;
  margin-top: 0.8rem !important;
}

/* Table Styling */
.tablediv {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.4rem;
  backdrop-filter: blur(15px);
  overflow-x: auto;
  margin-top: 3.2rem;
}

.tablediv table {
  width: 100%;
  border-collapse: collapse;
}

.tablediv th,
.tablediv td {
  padding: 1.6rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.tablediv th {
  background: rgba(20, 184, 166, 0.1);
  font-weight: 600;
  color: var(--primarycolor);
}

/* Cancel Order Button */
.cancelorderbtn {
  background: linear-gradient(135deg, rgba(255, 71, 87, 0.2), rgba(255, 71, 87, 0.1)) !important;
  border: 2px solid rgba(255, 71, 87, 0.3) !important;
  border-radius: 8px !important;
  color: #ff4757 !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(5px) !important;
}

.cancelorderbtn:hover {
  background: linear-gradient(135deg, rgba(255, 71, 87, 0.3), rgba(255, 71, 87, 0.2)) !important;
  border-color: rgba(255, 71, 87, 0.5) !important;
  transform: scale(1.05) !important;
}

/* Animations */
@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Profile Page Specific Overrides */
.userprofile .formcontainer {
  animation-delay: 0.2s;
}

.userprofile .formcontainer:nth-child(3) {
  animation-delay: 0.4s;
}

.userprofile .formcontainer:nth-child(4) {
  animation-delay: 0.6s;
}

/* Author Profile Card Start  */
.authorprofilediv {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    margin: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    max-width: 300px;
}

.authorprofilediv:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.authorphotodiv {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid var(--primary-color);
    background: var(--bg-secondary);
}

.authorphotodiv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.authorprofilediv > div:nth-child(3) {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
    word-break: break-word;
}

.authorbutton {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: var(--border-radius-md);
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.authorbutton:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.authorbutton a {
    color: white !important;
    font-size: 14px;
}

.authorbutton:hover a {
    color: white !important;
}
/* Authro Profile Card End */

/* Author Profile Page Styles */
.author-profile-container {
  min-height: 100vh;
  background: var(--bg-gradient);
  color: var(--text-color);
  padding: 0 20px;
}

/* Hero Section */
.author-hero-section {
  padding: 6.4rem 0 4.8rem;
  position: relative;
  overflow: hidden;
}

.author-hero-content {
  display: flex;
  align-items: center;
  gap: 4.8rem;
  position: relative;
  z-index: 2;
}

.author-avatar-section {
  position: relative;
  flex-shrink: 0;
}

.author-avatar-large {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 4px solid var(--primarycolor);
  box-shadow: 0 10px 30px rgba(0, 198, 173, 0.3);
  position: relative;
  overflow: hidden;
}

.author-status-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--primarycolor);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.92rem;
  box-shadow: 0 4px 12px rgba(0, 198, 173, 0.4);
}

.author-basic-info {
  flex: 1;
}

.author-name-hero {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, var(--primarycolor), #20c997);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.author-email-hero {
  font-size: 1.92rem;
  color: var(--white-text-color);
  margin-bottom: 3.2rem;
}

.author-stats {
  display: flex;
  gap: 4.8rem;
  margin-bottom: 3.2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  color: var(--primarycolor);
  line-height: 1;
}

.stat-label {
  font-size: 1.44rem;
  color: var(--white-text-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.author-actions-hero {
  display: flex;
  gap: 1.6rem;
}

.btn-author-primary,
.btn-author-secondary {
  padding: 1.6rem 3.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  border: 2px solid;
}

.btn-author-secondary img{
  width: 15px;
  height: 13px;
}

.btn-author-primary {
  background: var(--primarycolor);
  color: white;
  border-color: var(--primarycolor);
}

.btn-author-primary:hover {
  background: transparent;
  color: var(--primarycolor);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 198, 173, 0.3);
}

.btn-author-secondary {
  background: transparent;
  color: var(--primarycolor);
  border-color: var(--primarycolor);
}

.btn-author-secondary:hover {
  background: var(--primarycolor);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 198, 173, 0.3);
}

/* Main Content */
.author-main-content {
  padding: 6.4rem 0;
}

/* Professional Cards with Package Card Effect */
.author-info-card-professional,
.author-stories-card-professional {
  width: 100%;
  background: linear-gradient(135deg, rgba(0, 198, 173, 0.1) 0%, rgba(0, 198, 173, 0.05) 100%);
  border: 2px solid rgba(0, 198, 173, 0.3);
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.author-info-card-professional::before,
.author-stories-card-professional::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 198, 173, 0.1) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.author-info-card-professional:hover::before,
.author-stories-card-professional:hover::before {
  opacity: 1;
}

.author-info-card-professional:hover,
.author-stories-card-professional:hover {
  transform: translateY(-10px);
  border-color: var(--primarycolor);
  box-shadow: 0 20px 40px rgba(0, 198, 173, 0.2);
}

.card-header-professional {
  padding: 3.2rem 3.2rem 1.6rem;
  border-bottom: 1px solid rgba(0, 198, 173, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-title-professional {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--primarycolor);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0;
}

.stories-count {
  background: rgba(0, 198, 173, 0.2);
  color: var(--primarycolor);
  padding: 0.8rem 1.6rem;
  border-radius: 20px;
  font-size: 1.44rem;
  font-weight: 600;
}

.card-body-professional {
  padding: 3.2rem;
  flex: 1;
}

/* Info Sections */
.info-section {
  margin-bottom: 3.2rem;
}

.info-section:last-child {
  margin-bottom: 0;
}

.info-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  color: var(--primarycolor);
  margin-bottom: 1.6rem;
  font-size: 1.76rem;
}

.author-bio-text {
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
}

.no-info-text {
  color: var(--white-text-color);
  font-style: italic;
  margin: 0;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 3.2rem;
  border-bottom: 1px solid rgba(0, 198, 173, 0.1);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-label {
  font-weight: 500;
  color: var(--white-text-color);
}

.contact-value {
  color: var(--text-color);
  font-weight: 600;
}

/* Social Links */
.social-links-professional {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.social-link-professional {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1.6rem;
  background: rgba(0, 198, 173, 0.1);
  border: 1px solid rgba(0, 198, 173, 0.2);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.social-link-professional img {
  width: 24px;
  height: 24px;
}

.social-link-professional:hover {
  background: rgba(0, 198, 173, 0.2);
  border-color: var(--primarycolor);
  transform: translateX(5px);
  color: var(--primarycolor);
}

.social-link-professional i {
  font-size: 1.92rem;
  width: 20px;
  text-align: center;
}

.social-link-professional.facebook:hover {
  color: #1877f2;
  border-color: #1877f2;
}

.social-link-professional.telegram:hover {
  color: #0088cc;
  border-color: #0088cc;
}

.social-link-professional.wattpad:hover {
  color: #ff6600;
  border-color: #ff6600;
}

/* Statistics Grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

.stat-card {
  background: rgba(0, 198, 173, 0.1);
  border: 1px solid rgba(0, 198, 173, 0.2);
  border-radius: 10px;
  padding: 2.4rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(0, 198, 173, 0.2);
  border-color: var(--primarycolor);
  transform: translateY(-2px);
}

.stat-icon {
  width: 40px;
  height: 40px;
  background: var(--primarycolor);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.92rem;
}

.stat-info {
  flex: 1;
}

.stat-card .stat-number {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primarycolor);
  display: block;
  line-height: 1;
}

.stat-card .stat-label {
  font-size: 1.28rem;
  color: var(--white-text-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Stories Grid */
.stories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem;
  justify-content: start;
}

.no-stories-message {
  text-align: center;
  padding: 6.4rem 3.2rem;
  color: var(--white-text-color);
}

.no-stories-icon {
  font-size: 6.4rem;
  color: var(--primarycolor);
  margin-bottom: 1.6rem;
}

.no-stories-message h4 {
  color: var(--text-color);
  margin-bottom: 1.6rem;
}

.pagination-container-professional {
  margin-top: 4.8rem;
  display: flex;
  justify-content: center;
}

/* Author Profile Page End */

/* ========================================== */
/* Modern Author Profile Card Styles - Footer Theme */
/* ========================================== */

.authorprofileboxes{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  row-gap: 40px;
}

.author-profile-card-modern {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    background: linear-gradient(135deg,
        rgba(15, 23, 42, 0.95) 0%,
        rgba(30, 41, 59, 0.95) 50%,
        rgba(15, 23, 42, 0.95) 100%);
    border: 2px solid rgba(20, 184, 166, 0.3);
    padding: 3.2rem 2.4rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    overflow: hidden;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.author-profile-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(20, 184, 166, 0.6) 50%,
        transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

.author-profile-card-modern:hover {
    transform: translateY(-8px);
    border-color: rgba(20, 184, 166, 0.5);
    box-shadow: 0 20px 50px rgba(20, 184, 166, 0.25);
}

.author-card-header {
    text-align: center;
    position: relative;
}

.author-avatar-wrapper {
    position: relative;
    display: inline-block;
    margin: 0 auto;
}

.author-avatar-ring {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #14b8a6, rgba(20, 184, 166, 0.8));
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.author-avatar-ring:hover {
    box-shadow: 0 15px 40px rgba(20, 184, 166, 0.4);
}

.author-avatar-modern {
    width: 94px;
    height: 94px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(15, 23, 42, 0.95);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.author-avatar-ring:hover .author-avatar-modern {
    transform: scale(1.08);
}

.author-status-indicator {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-radius: 50%;
    border: 3px solid rgba(15, 23, 42, 0.95);
    box-shadow: 0 3px 10px rgba(34, 197, 94, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 3px 10px rgba(34, 197, 94, 0.5);
    }
    50% {
        box-shadow: 0 3px 15px rgba(34, 197, 94, 0.8);
    }
}

.author-card-body {
    text-align: center;
}

.author-info-section {
    margin: 0;
}

.author-name-modern {
    font-size: 2.24rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 0.48rem 0;
    letter-spacing: 0.5px;
}

.author-title-badge {
    display: inline-block;
    background: rgba(20, 184, 166, 0.2);
    border: 1px solid rgba(20, 184, 166, 0.4);
    color: #14b8a6;
    padding: 0.64rem 1.6rem;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.28rem;
    transition: all 0.3s ease;
}

.author-profile-card-modern:hover .author-title-badge {
    background: rgba(20, 184, 166, 0.3);
    border-color: #14b8a6;
}

.social-links-modern {
    margin: 3.2rem 0 0;
    padding: 1.6rem;
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.social-links-title {
    font-size: 1.28rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-icons-grid {
    display: flex;
    justify-content: center;
    gap: 1.28rem;
}

.social-link-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link-modern img{
  width: 50%;
  height: 50%;
  object-fit: contain;
}

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

.social-link-modern:hover::before {
    left: 100%;
}

.social-link-modern.facebook {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.3), rgba(24, 119, 242, 0.2));
    border-color: rgba(24, 119, 242, 0.4);
}

.social-link-modern.facebook:hover {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.5), rgba(24, 119, 242, 0.4));
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.social-link-modern.telegram {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.3), rgba(0, 136, 204, 0.2));
    border-color: rgba(0, 136, 204, 0.4);
}

.social-link-modern.telegram:hover {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.5), rgba(0, 136, 204, 0.4));
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
}

.social-link-modern.wattpad {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.3), rgba(255, 102, 0, 0.2));
    border-color: rgba(255, 102, 0, 0.4);
}

.social-link-modern.wattpad:hover {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.5), rgba(255, 102, 0, 0.4));
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.social-link-modern:hover {
    transform: translateY(-3px) scale(1.1);
}

.social-link-modern i {
    font-size: 1.76rem;
    position: relative;
    z-index: 1;
}

.author-actions-modern {
    display: flex;
    gap: 0.96rem;
    justify-content: center;
    margin-top: 0.8rem;
}

.btn{
  font-size: 1.6rem;
}

.btn-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.64rem;
    padding: 1.12rem 1.92rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.36rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-modern::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-modern:hover::before {
    left: 100%;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #14b8a6, rgba(20, 184, 166, 0.8));
    color: white;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
    border: 1px solid rgba(20, 184, 166, 0.4);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.4);
    color: white;
}

.btn-secondary-modern {
    background: rgba(30, 41, 59, 0.5);
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.2);
    border: 1px solid rgba(20, 184, 166, 0.3);
}

.btn-secondary-modern:hover {
    transform: translateY(-2px);
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(20, 184, 166, 0.5);
    color: #14b8a6;
}

.btn-modern i {
    font-size: 1.52rem;
}

/* End Modern Author Profile Card Styles */

/* Fix for notification dropdown menu overflow */
.notification-item .notification-actions .dropdown-menu {
  right: 0 !important;
  left: auto !important;
}

/* ===== LIVE SEARCH RESULTS STYLING - FOOTER THEME ===== */

#search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(135deg,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(30, 41, 59, 0.95) 50%,
    rgba(15, 23, 42, 0.95) 100%);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(20, 184, 166, 0.3);
  border-top: none;
  border-radius: 0 0 15px 15px;
  z-index: 1000;
  display: none;
  max-height: 500px;
  overflow-y: auto;
  box-shadow: 0 15px 40px rgba(20, 184, 166, 0.2);
  padding: 0;
  margin-top: -2px;
}

#search-results::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(20, 184, 166, 0.6) 50%,
    transparent 100%);
  pointer-events: none;
}

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

#search-results::-webkit-scrollbar-track {
  background: rgba(20, 184, 166, 0.05);
  border-radius: 10px;
}

#search-results::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.3), rgba(20, 184, 166, 0.5));
  border-radius: 10px;
  transition: background 0.3s ease;
}

#search-results::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.5), rgba(20, 184, 166, 0.7));
}

#search-results ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

#search-results li {
  border-bottom: 1px solid rgba(20, 184, 166, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

#search-results li:last-child {
  border-bottom: none;
}

#search-results li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #14b8a6, rgba(20, 184, 166, 0.8));
  transform: scaleY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#search-results li:hover::before {
  transform: scaleY(1);
}

#search-results li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.52rem;
  font-weight: 500;
  background: rgba(30, 41, 59, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  word-break: break-word;
  overflow-wrap: break-word;
}

#search-results li a::before {
  content: '→';
  font-size: 1.6rem;
  color: #14b8a6;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-10px);
  flex-shrink: 0;
}

#search-results li:hover a {
  background: rgba(20, 184, 166, 0.15);
  color: #14b8a6;
  padding-left: 25px;
  box-shadow: inset 5px 0 15px rgba(20, 184, 166, 0.1);
}

#search-results li:hover a::before {
  opacity: 1;
  transform: translateX(0);
}

/* No results message styling */
#search-results > div {
  padding: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(30, 41, 59, 0.3);
  font-size: 1.52rem;
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 10px;
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

#search-results > div::before {
  content: '✕';
  font-size: 1.92rem;
  color: rgba(255, 107, 107, 0.8);
}

/* ===== END LIVE SEARCH RESULTS STYLING - FOOTER THEME ===== */

/* Start Reacently Read  */
.all-manga-cont{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: start;
}

/* End Recently Read  */

/* ============================================ */
/* NAVBAR STYLES - CUSTOM CSS (No Bootstrap) */
/* ============================================ */

.navbar-custom {
  background: linear-gradient(135deg, var(--footer-dark-bg), var(--footer-light-bg));
  backdrop-filter: blur(20px);
  border: 1px solid var(--footer-border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.2rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
}

/* Logo Brand */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
  color: var(--footer-text-secondary);
  font-size: 1.52rem;
  font-weight: 600;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.navbar-logo:hover {
  color: var(--footer-primary-color);
  text-shadow: 0 0 10px var(--footer-glow);
}

.navbar-logo-img {
  width: 45px;
  height: 45px;
  background: url('../img/logo1.jpg') center/contain no-repeat;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--footer-shadow);
}

.navbar-logo-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Hamburger Toggle Button */
.hamburger-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.8rem;
  gap: 0.56rem;
  z-index: 101;
}

.hamburger-line {
  width: 25px;
  height: 2.5px;
  background: var(--footer-primary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 3px);
}

.hamburger-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -5px);
}

/* Navigation Menu */
.navbar-menu {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  flex-wrap: wrap;
  width: auto;
}

.nav-item {
  position: relative;
  width: auto;
}

.nav-link {
  display: block;
  color: var(--footer-text-tertiary);
  text-decoration: none;
  padding: 1.2rem 2rem;
  font-size: 1.52rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--footer-primary-color);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--footer-primary-color);
}

.nav-link:hover::after {
  width: 60%;
}

/* Right Section */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  flex-shrink: 0;
}

/* Stars Container */
.navbar-stars {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.4rem;
  background: var(--footer-accent-light);
  border: 1px solid var(--footer-border-color-light);
  border-radius: 20px;
  color: var(--footer-primary-color);
  font-weight: 600;
  font-size: 1.44rem;
  transition: all 0.3s ease;
}

.navbar-stars:hover {
  background: var(--footer-accent-medium);
  border-color: var(--footer-border-color);
}

.star-icon {
  width: 16px;
  height: 16px;
  background: url('../img/star.png') center/cover no-repeat;
}

.star-count {
  min-width: 20px;
  text-align: center;
}

/* Notification Bell */
.notification-wrapper {
  position: relative;
}

.notification-bell {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--footer-text-tertiary);
  font-size: 2rem;
  padding: 0.8rem;
  transition: all 0.3s ease;
  position: relative;
}

.notification-bell:hover {
  color: var(--footer-primary-color);
  transform: scale(1.1);
}

.notification-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.12rem;
  font-weight: 700;
}

.notification-badge.show {
  display: flex;
}

/* Notification Dropdown */
.notification-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: -50px;
  width: 350px;
  max-height: 400px;
  background: var(--footer-dark-bg);
  border: 1px solid var(--footer-border-color);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: none;
  flex-direction: column;
  z-index: 1050;
  backdrop-filter: blur(10px);
}

.notification-dropdown.active {
  display: flex;
}

.notification-header {
  padding: 1.6rem;
  border-bottom: 1px solid var(--footer-border-color-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notification-title {
  margin: 0;
  color: var(--footer-text-secondary);
  font-size: 1.52rem;
  font-weight: 600;
}

.notification-mark-all {
  background: none;
  border: none;
  color: var(--footer-primary-color);
  cursor: pointer;
  font-size: 1.28rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.notification-mark-all:hover {
  opacity: 0.8;
}

.notification-content {
  overflow-y: auto;
  flex: 1;
  max-height: 300px;
}

.notification-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.2rem 1.6rem;
  color: var(--footer-text-tertiary);
  text-align: center;
}

.notification-empty i {
  font-size: 3.2rem;
  margin-bottom: 0.8rem;
  opacity: 0.5;
}

/* User Dropdown */
.user-dropdown-wrapper {
  position: relative;
}

.user-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: none;
  border: none;
  color: var(--footer-text-tertiary);
  cursor: pointer;
  font-size: 1.44rem;
  padding: 0.8rem 1.2rem;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.user-dropdown-toggle:hover {
  color: var(--footer-primary-color);
  background: var(--footer-accent-light);
}

.user-dropdown-toggle i {
  font-size: 1.12rem;
  transition: transform 0.3s ease;
}

.user-dropdown-toggle.active i {
  transform: rotate(180deg);
}

.user-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--footer-dark-bg);
  border: 1px solid var(--footer-border-color);
  border-radius: 8px;
  box-shadow: var(--footer-shadow-intense);
  display: none;
  flex-direction: column;
  z-index: 1050;
  min-width: 200px;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.user-dropdown-menu.active {
  display: flex;
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--footer-text-tertiary);
  text-decoration: none;
  padding: 1.2rem 1.6rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--footer-border-color-light);
  font-size: 1.6rem;
}

.user-dropdown-item:last-child {
  border-bottom: none;
}

.user-dropdown-item:hover {
  background: var(--footer-accent-light);
  color: var(--footer-primary-color);
  padding-left: 2rem;
}

.user-dropdown-item i {
  width: 16px;
  text-align: center;
}

/* User Profile Image */
.user-profile-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 2px solid var(--footer-primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.user-profile-img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px var(--footer-shadow);
}

/* Auth Buttons for Guest */
.navbar-auth {
  display: flex;
  gap: 1.2rem;
}

.navbar-auth-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.96rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.44rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar-auth-login {
  color: var(--footer-primary-color);
  border: 1px solid var(--footer-primary-color);
  background: transparent;
}

.navbar-auth-login:hover {
  background: var(--footer-accent-light);
  transform: translateY(-2px);
}

.navbar-auth-signup {
  color: white;
  background: linear-gradient(135deg, var(--footer-primary-color), var(--footer-accent-color));
  border: none;
}

.navbar-auth-signup:hover {
  transform: translateY(-2px);
  box-shadow: var(--footer-shadow-hover);
}

/* Mobile Menu */
.navbar-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--footer-light-bg);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.navbar-mobile-menu.active {
  max-height: 500px;
}

/* Mobile User Info */
.mobile-user-info {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.6rem;
  border-bottom: 1px solid var(--footer-border-color-light);
}

.mobile-user-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 2px solid var(--footer-primary-color);
  flex-shrink: 0;
}

.mobile-user-details {
  flex: 1;
}

.mobile-username {
  color: var(--footer-text-secondary);
  font-weight: 600;
  font-size: 1.52rem;
  margin-bottom: 0.4rem;
}

.mobile-view-profile {
  color: var(--footer-primary-color);
  text-decoration: none;
  font-size: 1.28rem;
  transition: all 0.3s ease;
}

.mobile-view-profile:hover {
  text-decoration: underline;
}

.mobile-user-stars {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.96rem 1.4rem 0.64rem;
  background: var(--footer-accent-light);
  border: 1px solid var(--footer-border-color-light);
  border-radius: 20px;
  color: var(--footer-primary-color);
  font-weight: 600;
  font-size: 1.36rem;
  line-height: 1;
  transition: all 0.3s ease;
}

.mobile-user-stars:hover {
  background: var(--footer-accent-medium);
  border-color: var(--footer-border-color);
}

.mobile-star-icon {
  width: 16px;
  height: 16px;
  background: url('../img/star.png') center/cover no-repeat;
}

.mobile-star-count {
  min-width: 25px;
  text-align: center;
}

/* Mobile Nav Items */
.mobile-nav-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-items li {
  border-bottom: 1px solid var(--footer-border-color-light);
}

.mobile-nav-items a {
  display: block;
  color: var(--footer-text-tertiary);
  text-decoration: none;
  padding: 1.4rem 1.6rem;
  transition: all 0.3s ease;
}

.mobile-nav-items a:hover {
  background: var(--footer-accent-light);
  color: var(--footer-primary-color);
  padding-left: 2.4rem;
}

/* ============================================ */
/* END NAVBAR STYLES */
/* ============================================ */

/* ============================================ */
/* NOTIFICATION ITEM DESIGN */
/* ============================================ */

.notification-item {
  padding: 1.6rem;
  padding-right: 2.4rem;
  border-bottom: 1px solid rgba(20, 184, 166, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  background: rgba(15, 23, 42, 0.3);
}

.notification-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #14b8a6, rgba(20, 184, 166, 0.6));
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.notification-item:hover::before {
  transform: scaleY(1);
}

.notification-item:hover {
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.08), rgba(20, 184, 166, 0.03));
  /* transform: translateX(2px); */
}

.notification-item.unread {
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.12), rgba(20, 184, 166, 0.05));
  border-left: 3px solid #14b8a6;
  padding-left: calc(1.6rem - 3px);
}

.notification-item-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.notification-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.notification-item-title {
  margin: 0;
  font-size: 1.44rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-grow: 1;
}

.notification-unread-badge {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  flex-shrink: 0;
  animation: badge-pulse 2s infinite;
}

.notification-action-btn {
  display: none;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-size: 1.28rem;
  padding: 0.4rem;
  border-radius: 4px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.notification-item:hover .notification-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14b8a6;
  background: rgba(20, 184, 166, 0.1);
}

.notification-action-btn:hover {
  background: rgba(20, 184, 166, 0.2);
  color: #14b8a6;
}

.notification-item-message {
  margin: 0;
  font-size: 1.36rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: break-word;
}

.notification-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.notification-item-time {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.notification-item-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.notification-action {
  display: flex;
  align-items: center;
  gap: 0.64rem;
  padding: 0.56rem 1.12rem;
  font-size: 1.2rem;
  background: rgba(20, 184, 166, 0.15);
  color: #14b8a6;
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.notification-action:hover {
  background: rgba(20, 184, 166, 0.3);
  border-color: rgba(20, 184, 166, 0.6);
  color: #ffffff;
}

.notification-action i {
  font-size: 1.04rem;
}

.notification-action.mark-read {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.3);
  margin-left: auto;
}

.notification-action.mark-read:hover {
  background: rgba(34, 197, 94, 0.3);
  border-color: rgba(34, 197, 94, 0.6);
}

.notification-action.delete-notification {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
}

.notification-action.delete-notification:hover {
  background: rgba(239, 68, 68, 0.3);
  border-color: rgba(239, 68, 68, 0.6);
}

/* ===== END NOTIFICATION ITEM DESIGN ===== */

/* ========================================
   EARN STARS PAGE - DESKTOP STYLES (earn-styles.css)
   ======================================== */

/* Main Container */
.earn-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4.8rem 3.2rem;
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
}

/* Header Section */
.earn-header {
    text-align: center;
    margin-bottom: 1.6rem;
}

.earn-title {
    font-size: 4rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 0.8rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
}

.earn-title i {
    color: #fbbf24;
    font-size: 4.48rem;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.earn-subtitle {
    font-size: 1.76rem;
    color: var(--footer-text-primary);
    margin: 0;
    font-weight: 500;
}

/* Stats Section */
.earn-stats {
    display: flex;
    justify-content: center;
    gap: 2.4rem;
    margin: 1.6rem 0;
}

.star-stat-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.4rem 3.2rem;
    display: flex;
    align-items: center;
    gap: 2.4rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    min-width: 250px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.88rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.stat-label {
    font-size: 1.44rem;
    color: #6b7280;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 3.52rem;
    font-weight: 700;
    color: #14b8a6;
    margin: 0;
}

/* Ad Section */
.ad-section {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.6rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
}

.ad-card {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.ad-label {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #14b8a6;
}

.ad-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--border-radius);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.76rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

#adContainer {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.ad-info {
    background: #f0fdf4;
    color: #166534;
    padding: 1.6rem;
    border-radius: 8px;
    border-left: 4px solid #22c55e;
    margin: 0;
    font-size: 1.52rem;
    font-weight: 500;
}

/* Timer Section */
.timer-section {
    display: flex;
    justify-content: center;
}

.timer-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
    text-align: center;
    max-width: 350px;
    width: 100%;
}

.timer-display {
    display: flex;
    justify-content: center;
    margin-bottom: 2.4rem;
}

.timer-circle {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timer-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.timer-bg {
    fill: none;
    stroke: #e5e7eb;
    stroke-width: 3;
}

.timer-progress {
    fill: none;
    stroke: #14b8a6;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s linear;
}

.timer-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.timer-number {
    font-size: 4.8rem;
    font-weight: 800;
    color: #14b8a6;
    line-height: 1;
}

.timer-label {
    font-size: 1.44rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
}

.timer-message {
    font-size: 1.6rem;
    color: #4b5563;
    margin: 0;
    font-weight: 500;
}

/* Claim Section */
.claim-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    min-height: 60px;
}

.claim-button {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
    border: none;
    padding: 1.92rem 4.8rem;
    border-radius: var(--border-radius);
    font-size: 1.76rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    min-width: 250px;
}

.claim-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.4);
}

.claim-button:active:not(:disabled) {
    transform: translateY(0);
}

.claim-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.2);
}

.claim-button.ready {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(20, 184, 166, 0.6);
    }
}

/* Loading State */
.loading-state {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
    min-height: 80px;
    justify-content: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e5e7eb;
    border-top: 4px solid #14b8a6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-state p {
    font-size: 1.6rem;
    color: #4b5563;
    margin: 0;
    font-weight: 600;
}

/* Success Message */
.success-message {
    display: none !important;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
    background: #f0fdf4;
    border: 2px solid #22c55e;
    border-radius: var(--border-radius);
    padding: 3.2rem;
    text-align: center;
}

.success-message i {
    font-size: 4.8rem;
    color: #22c55e;
}

.success-message p {
    font-size: 1.76rem;
    color: #166534;
    margin: 0;
    font-weight: 600;
}

/* Error Message */
.error-message {
    display: none !important;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
    background: #fef2f2;
    border: 2px solid #ef4444;
    border-radius: var(--border-radius);
    padding: 3.2rem;
    text-align: center;
}

.error-message i {
    font-size: 4.8rem;
    color: #ef4444;
}

.error-message p {
    font-size: 1.76rem;
    color: #7f1d1d;
    margin: 0;
    font-weight: 600;
}

/* Back Link */
.back-link {
    display: flex;
    justify-content: center;
    margin-top: 1.6rem;
}

.link-back {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.6rem;
    transition: var(--transition);
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
}

.link-back:hover {
    color: #14b8a6;
    background: rgba(20, 184, 166, 0.1);
}

/* ============================================ */
/* EMAIL VERIFICATION PAGE STYLES */
/* ============================================ */

.verify-page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.2rem 1.6rem;
    position: relative;
    overflow: hidden;
}

.verify-page-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.verify-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 480px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.verify-header {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(32, 201, 151, 0.1));
    padding: 4rem 3.2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.verify-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: headerShine 4s ease-in-out infinite;
}

.verify-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2.4rem;
}

.verify-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0891b2, #20c997);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow:
        0 0 30px rgba(8, 145, 178, 0.4),
        0 0 60px rgba(8, 145, 178, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 3;
}

.verify-icon i {
    font-size: 4rem;
    color: #ffffff;
}

.icon-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0891b2, #20c997);
    opacity: 0.3;
    filter: blur(20px);
    animation: pulse 3s ease-in-out infinite;
    z-index: 1;
}

.verify-title {
    color: #ffffff;
    font-size: 2.88rem;
    font-weight: 700;
    margin: 0 0 1.6rem 0;
    background: linear-gradient(135deg, #ffffff, #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.verify-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.6rem;
    line-height: 1.6;
    margin: 0;
}

.user-email {
    color: var(--primarycolor);
    font-weight: 600;
    word-break: break-all;
}

/* Verify Alerts */
.verify-alert {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.6rem 2.4rem;
    margin: 2.4rem 2.4rem 0;
    border-radius: 12px;
    font-size: 1.52rem;
}

.verify-alert i {
    font-size: 1.92rem;
    flex-shrink: 0;
}

.verify-alert-danger {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.08));
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.verify-alert-danger i {
    color: #ef4444;
}

.verify-alert-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.08));
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.verify-alert-success i {
    color: #22c55e;
}

/* Verify Form Section */
.verify-form-section {
    padding: 3.2rem;
}

.verify-form {
    margin-bottom: 3.2rem;
}

.code-input-group {
    margin-bottom: 2.4rem;
}

.code-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.52rem;
    font-weight: 500;
    margin-bottom: 1.6rem;
    text-align: center;
}

.code-inputs {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

.code-input {
    width: 52px;
    height: 60px;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
    outline: none;
}

.code-input:focus {
    border-color: var(--primarycolor);
    background: rgba(0, 198, 173, 0.1);
    box-shadow: 0 0 20px rgba(0, 198, 173, 0.3);
}

.code-input:not(:placeholder-shown) {
    border-color: var(--primarycolor);
    background: rgba(0, 198, 173, 0.15);
}

/* Verify Button */
.verify-btn {
    width: 100%;
    padding: 1.6rem 3.2rem;
    background: linear-gradient(135deg, rgba(0, 198, 173, 0.3), rgba(0, 198, 173, 0.2));
    border: 2px solid rgba(0, 198, 173, 0.3);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.6rem;
    font-weight: 600;
    cursor: not-allowed;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.verify-btn:disabled {
    opacity: 0.6;
}

.verify-btn:not(:disabled),
.verify-btn.active {
    background: linear-gradient(135deg, #0891b2, #20c997);
    border-color: transparent;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(8, 145, 178, 0.4);
}

.verify-btn:not(:disabled):hover,
.verify-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(8, 145, 178, 0.5);
}

.verify-btn i {
    font-size: 1.76rem;
}

/* Resend Section */
.resend-section {
    text-align: center;
    padding-top: 2.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.resend-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.52rem;
    margin: 0 0 1.6rem 0;
}

.resend-form {
    margin-bottom: 1.6rem;
}

.resend-btn {
    background: transparent;
    border: 2px solid rgba(0, 198, 173, 0.4);
    border-radius: 10px;
    padding: 1.2rem 2.4rem;
    color: var(--primarycolor);
    font-size: 1.52rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.resend-btn:hover {
    background: rgba(0, 198, 173, 0.1);
    border-color: var(--primarycolor);
    transform: translateY(-2px);
}

.resend-btn i {
    font-size: 1.44rem;
}

.resend-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.36rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.resend-note i {
    font-size: 1.28rem;
    color: rgba(255, 193, 7, 0.8);
}

/* Verify Footer */
.verify-footer {
    padding: 2.4rem 3.2rem;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.verify-footer .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1.52rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
}

.verify-footer .back-link:hover {
    color: var(--primarycolor);
    background: rgba(0, 198, 173, 0.1);
}

.verify-footer .back-link i {
    font-size: 1.36rem;
}

/* ============================================ */
/* PASSWORD RESET PAGE ADDITIONAL STYLES */
/* ============================================ */

/* Reset Form Group */
.reset-form-group {
    margin-bottom: 2.4rem;
}

.reset-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.reset-input-icon {
    position: absolute;
    left: 1.6rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.6rem;
    z-index: 2;
    transition: color 0.3s ease;
}

.reset-form-input {
    width: 100%;
    padding: 1.6rem 4.8rem 1.6rem 4.8rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.6rem;
    outline: none;
    transition: all 0.3s ease;
}

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

.reset-form-input:focus {
    border-color: var(--primarycolor);
    background: rgba(0, 198, 173, 0.08);
    box-shadow: 0 0 20px rgba(0, 198, 173, 0.2);
}

.reset-form-input:focus + .reset-input-icon,
.reset-input-wrapper:focus-within .reset-input-icon {
    color: var(--primarycolor);
}

/* Password Toggle Button */
.password-toggle-btn {
    position: absolute;
    right: 1.6rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0.8rem;
    transition: color 0.3s ease;
    z-index: 2;
}

.password-toggle-btn:hover {
    color: var(--primarycolor);
}

/* Password Requirements Box */
.password-requirements-box {
    margin-top: 1.2rem;
    padding: 1.2rem 1.6rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.password-requirements-box .requirement-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.36rem;
    margin: 0.4rem 0;
    transition: color 0.3s ease;
}

.password-requirements-box .requirement-item .req-icon {
    font-size: 1.2rem;
    color: #ef4444;
    transition: color 0.3s ease;
}

.password-requirements-box .requirement-item.valid {
    color: #22c55e;
}

.password-requirements-box .requirement-item.valid .req-icon {
    color: #22c55e;
}

/* Enable verify button for password reset pages */
#pwresetbtn,
#resetBtn {
    cursor: pointer;
    opacity: 1;
    background: linear-gradient(135deg, #0891b2, #20c997);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(8, 145, 178, 0.4);
}

#pwresetbtn:hover,
#resetBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(8, 145, 178, 0.5);
}

/* =====================================================
   POINT GIVEAWAY SYSTEM STYLES
   ===================================================== */

/* Claim Page Wrapper */
.giveaway-claim-wrapper {
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.giveaway-card {
    background: var(--footer-dark-bg, rgba(15, 23, 42, 0.95));
    border-radius: 24px;
    border: 1px solid rgba(20, 184, 166, 0.2);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(20, 184, 166, 0.1);
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.giveaway-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--footer-primary-color, #14b8a6), var(--footer-accent-color, #0d9488), #06b6d4);
}

.giveaway-header {
    padding: 30px;
    text-align: center;
    background: linear-gradient(180deg, rgba(20, 184, 166, 0.1) 0%, transparent 100%);
}

.giveaway-header h1 {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.giveaway-header p {
    color: #94a3b8;
    font-size: 1.52rem;
    margin: 0;
}

/* Treasure Chest Animation */
.treasure-chest-wrapper {
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.treasure-icon {
    font-size: 9.6rem;
    display: inline-block;
    animation: treasureBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.5));
    position: relative;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes treasureBounce {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

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

/* Giveaway Info Section */
.giveaway-info {
    padding: 0 30px 30px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(71, 85, 105, 0.3);
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row .label {
    color: #94a3b8;
    font-size: 1.44rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-row .label i {
    color: var(--footer-primary-color, #14b8a6);
    font-size: 1.76rem;
}

.info-row .value {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.76rem;
}

.info-row .value.points {
    color: #fbbf24;
    font-size: 2rem;
}

.info-row .value.available {
    color: #22c55e;
}

.info-row .value.limited {
    color: #f97316;
}

/* Claim Section */
.claim-section {
    padding: 30px;
    text-align: center;
    background: linear-gradient(0deg, rgba(20, 184, 166, 0.1) 0%, transparent 100%);
}

.claim-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--footer-primary-color, #14b8a6), var(--footer-accent-color, #0d9488));
    color: #ffffff;
    font-size: 1.92rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(20, 184, 166, 0.4);
}

.claim-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(20, 184, 166, 0.5);
}

.claim-btn:active {
    transform: translateY(0) scale(0.98);
}

.claim-btn:disabled {
    background: #475569;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.claim-btn.claiming .btn-shine {
    animation: none;
}

/* Result Section */
.result-section {
    display: none;
    padding: 40px 30px;
    text-align: center;
}

.result-section.show {
    display: block;
    animation: resultFadeIn 0.5s ease;
}

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

.result-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(20, 184, 166, 0.2));
    border: 2px solid rgba(34, 197, 94, 0.4);
    border-radius: 20px;
    padding: 40px;
}

.result-icon {
    font-size: 6.4rem;
    margin-bottom: 20px;
    animation: celebrateIcon 0.5s ease;
}

@keyframes celebrateIcon {
    0% { transform: scale(0); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.result-card h2 {
    color: #22c55e;
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.points-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.points-display .icon {
    font-size: 4.8rem;
}

.points-display .amount {
    font-size: 5.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-card p {
    color: #94a3b8;
    font-size: 1.52rem;
    margin: 0;
}

/* Confetti Animation */
.confetti-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 9999;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    opacity: 0;
    animation: confettiFall 3s ease-out forwards;
}

@keyframes confettiFall {
    0% {
        opacity: 1;
        transform: translateY(-100px) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(720deg);
    }
}

/* Giveaway Footer */
.giveaway-footer {
    padding: 20px 30px;
    text-align: center;
    border-top: 1px solid rgba(71, 85, 105, 0.3);
}

.giveaway-footer a {
    color: var(--footer-primary-color, #14b8a6);
    text-decoration: none;
    font-size: 1.44rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.giveaway-footer a:hover {
    color: #ffffff;
}

/* Error/Unavailable States */
.giveaway-unavailable {
    text-align: center;
    padding: 60px 30px;
}

.giveaway-unavailable .icon {
    font-size: 6.4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.giveaway-unavailable h2 {
    color: #f87171;
    margin-bottom: 15px;
}

.giveaway-unavailable p {
    color: #94a3b8;
}

.already-claimed {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.2));
    border-color: rgba(251, 191, 36, 0.4);
}

.already-claimed h2 {
    color: #fbbf24;
}

/* =====================================================
   GIVEAWAY HISTORY PAGE STYLES
   ===================================================== */

.giveaway-history-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 40px 20px;
}

.history-container {
    max-width: 900px;
    margin: 0 auto;
}

.history-header {
    text-align: center;
    margin-bottom: 40px;
}

.history-header h1 {
    color: #ffffff;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.history-header h1 i {
    color: var(--footer-primary-color, #14b8a6);
}

.history-header p {
    color: #94a3b8;
    font-size: 1.6rem;
}

/* Points Balance Card */
.points-balance-card {
    background: var(--footer-dark-bg, rgba(15, 23, 42, 0.95));
    border-radius: 20px;
    border: 1px solid rgba(20, 184, 166, 0.3);
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.balance-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--footer-primary-color, #14b8a6), var(--footer-accent-color, #0d9488));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    flex-shrink: 0;
    box-shadow: 0 5px 25px rgba(20, 184, 166, 0.4);
}

.balance-info {
    flex: 1;
}

.balance-info .label {
    color: #94a3b8;
    font-size: 1.44rem;
    margin-bottom: 5px;
}

.balance-info .amount {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* History Table Card */
.history-card {
    background: var(--footer-dark-bg, rgba(15, 23, 42, 0.95));
    border-radius: 20px;
    border: 1px solid rgba(71, 85, 105, 0.3);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.history-card-header {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(71, 85, 105, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.history-card-header h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.history-card-header h2 i {
    color: var(--footer-primary-color, #14b8a6);
}

.history-table-wrapper {
    overflow-x: auto;
}

.history-table {
    width: 100%;
    border-collapse: collapse;
}

.history-table th {
    background: rgba(30, 41, 59, 0.5);
    color: #94a3b8;
    font-size: 1.36rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(71, 85, 105, 0.3);
}

.history-table td {
    padding: 18px 20px;
    color: #e2e8f0;
    border-bottom: 1px solid rgba(71, 85, 105, 0.2);
    vertical-align: middle;
}

.history-table tr:last-child td {
    border-bottom: none;
}

.history-table tr:hover td {
    background: rgba(30, 41, 59, 0.3);
}

.history-table .giveaway-name {
    font-weight: 600;
    color: #ffffff;
}

.points-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.2));
    border: 1px solid rgba(251, 191, 36, 0.4);
    border-radius: 50px;
    color: #fbbf24;
    font-weight: 700;
    font-size: 1.52rem;
}

.points-badge i {
    font-size: 1.6rem;
}

.date-cell {
    color: #94a3b8;
    font-size: 1.44rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 30px;
}

.empty-state .icon {
    font-size: 6.4rem;
    color: #475569;
    margin-bottom: 20px;
}

.empty-state h3 {
    color: #94a3b8;
    font-size: 2rem;
    margin-bottom: 10px;
}

.empty-state p {
    color: #64748b;
    font-size: 1.52rem;
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--footer-primary-color, #14b8a6);
    text-decoration: none;
    font-size: 1.52rem;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #ffffff;
}

.back-link i {
    transition: transform 0.3s ease;
}

.back-link:hover i {
    transform: translateX(-5px);
}

/* =====================================================
   USER GIVEAWAY STYLES (Footer Theme)
   ===================================================== */

/* Wrapper & Background */
.giveaway-claim-wrapper,
.giveaway-history-wrapper {
    min-height: 100vh;
    padding: 40px 0 60px;
   
    position: relative;
    overflow: hidden;
}

.giveaway-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, var(--footer-accent-light) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--footer-accent-light) 0%, transparent 50%);
    pointer-events: none;
}

/* Claim Card */
.giveaway-claim-card {
    background: var(--footer-dark-bg);
    border-radius: 20px;
    border: 1px solid var(--footer-border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    position: relative;
}

/* Card Header */
.giveaway-claim-header {
    padding: 35px 25px 25px;
    text-align: center;
    background: linear-gradient(180deg, var(--footer-section-bg) 0%, transparent 100%);
}

.giveaway-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--footer-primary-color), var(--footer-accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--footer-shadow-intense);
}

.giveaway-icon-box .icon-glow {
    position: absolute;
    inset: -5px;
    background: var(--footer-primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: giveawayPulse 2s ease-in-out infinite;
}

.giveaway-icon-box i {
    font-size: 3.2rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

@keyframes giveawayPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.15); opacity: 0.15; }
}

.giveaway-title {
    color: var(--footer-text-primary);
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 10px;
}

.giveaway-description {
    color: var(--footer-text-tertiary);
    font-size: 1.52rem;
    margin: 0;
    line-height: 1.5;
}

/* Info Bar */
.giveaway-info-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 20px;
    background: var(--footer-section-bg);
    border-top: 1px solid var(--footer-border-color);
    border-bottom: 1px solid var(--footer-border-color);
}

.giveaway-info-bar .info-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 15px;
}

.giveaway-info-bar .info-icon {
    width: 45px;
    height: 45px;
    background: var(--footer-accent-medium);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.giveaway-info-bar .info-icon i {
    font-size: 1.76rem;
    color: var(--footer-primary-color);
}

.giveaway-info-bar .info-content {
    display: flex;
    flex-direction: column;
}

.giveaway-info-bar .info-value {
    color: var(--footer-text-primary);
    font-size: 2.16rem;
    font-weight: 700;
    line-height: 1;
}

.giveaway-info-bar .info-label {
    color: var(--footer-text-tertiary);
    font-size: 1.28rem;
    margin-top: 4px;
}

.giveaway-info-bar .info-divider {
    width: 1px;
    height: 50px;
    background: var(--footer-border-color);
}

/* Content Area */
.giveaway-content {
    padding: 30px 25px;
}

/* Status Boxes */
.giveaway-status-box {
    text-align: center;
    padding: 25px 20px;
}

.giveaway-status-box .status-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.giveaway-status-box .status-icon i {
    font-size: 3.2rem;
}

.giveaway-status-box h3 {
    color: var(--footer-text-primary);
    font-size: 2.08rem;
    font-weight: 600;
    margin: 0 0 10px;
}

.giveaway-status-box p {
    color: var(--footer-text-tertiary);
    font-size: 1.52rem;
    margin: 0;
}

/* Status Colors */
.status-inactive .status-icon {
    background: rgba(100, 116, 139, 0.2);
}
.status-inactive .status-icon i {
    color: #94a3b8;
}

.status-pending .status-icon {
    background: rgba(59, 130, 246, 0.2);
}
.status-pending .status-icon i {
    color: #3b82f6;
}

.status-expired .status-icon {
    background: rgba(239, 68, 68, 0.2);
}
.status-expired .status-icon i {
    color: #ef4444;
}

.status-full .status-icon {
    background: rgba(245, 158, 11, 0.2);
}
.status-full .status-icon i {
    color: #f59e0b;
}

.status-empty .status-icon {
    background: rgba(156, 163, 175, 0.2);
}
.status-empty .status-icon i {
    color: #9ca3af;
}

.status-claimed .status-icon {
    background: rgba(34, 197, 94, 0.2);
}
.status-claimed .status-icon i {
    color: #22c55e;
}

.status-icon.success-pulse {
    animation: successPulse 1.5s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(34, 197, 94, 0); }
}

.countdown-date {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 10px;
    color: #60a5fa;
    font-weight: 600;
    font-size: 1.52rem;
}

/* Already Claimed */
.claimed-points-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin: 20px 0;
    padding: 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 15px;
}

.claimed-points-box .claimed-label {
    color: var(--footer-text-tertiary);
    font-size: 1.36rem;
}

.claimed-points-box .claimed-amount {
    color: #22c55e;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.claimed-points-box .claimed-unit {
    color: var(--footer-text-tertiary);
    font-size: 1.44rem;
}

.claimed-date {
    color: var(--footer-text-tertiary);
    font-size: 1.36rem;
    margin-top: 15px;
}

.claimed-date i {
    margin-right: 5px;
    color: var(--footer-primary-color);
}

/* Claim Section */
.giveaway-claim-section {
    text-align: center;
}

.claim-info p {
    color: var(--footer-text-secondary);
    font-size: 1.6rem;
    margin: 0 0 15px;
}

.claim-info strong {
    color: var(--footer-primary-color);
}

.points-range {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: var(--footer-section-bg);
    border-radius: 15px;
    border: 1px solid var(--footer-border-color);
    margin-bottom: 25px;
}

.points-range .range-label {
    color: var(--footer-text-tertiary);
    font-size: 1.36rem;
}

.points-range .range-values {
    display: flex;
    align-items: center;
    gap: 12px;
}

.points-range .range-values strong {
    color: #f59e0b;
    font-size: 2.4rem;
    font-weight: 700;
}

.points-range .range-values i {
    color: var(--footer-text-tertiary);
    font-size: 1.44rem;
}

.points-range .range-unit {
    color: var(--footer-text-tertiary);
    font-size: 1.36rem;
}

/* Claim Button */
.claim-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--footer-primary-color), var(--footer-accent-color));
    border: none;
    border-radius: 15px;
    color: #ffffff;
    font-size: 1.76rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--footer-shadow);
    position: relative;
    overflow: hidden;
}

.claim-btn::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: 0.5s;
}

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

.claim-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--footer-shadow-hover);
}

.claim-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.claim-btn .btn-content,
.claim-btn .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.claim-hint {
    margin: 20px 0 0;
    color: var(--footer-text-tertiary);
    font-size: 1.36rem;
}

.claim-hint i {
    color: #f59e0b;
    margin-right: 5px;
}

/* Result Sections */
.result-success,
.result-error {
    text-align: center;
    padding: 20px;
}

.result-success .trophy-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: trophyBounce 0.6s ease-out;
}

@keyframes trophyBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.result-success .trophy-icon i {
    font-size: 4rem;
    color: #ffffff;
}

.won-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.won-display .won-label {
    color: var(--footer-text-tertiary);
    font-size: 1.44rem;
}

.won-display .won-amount {
    color: #f59e0b;
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1;
}

.won-display .won-unit {
    color: var(--footer-text-secondary);
    font-size: 1.76rem;
    font-weight: 600;
}

.success-msg {
    color: var(--footer-text-secondary);
    font-size: 1.52rem;
    margin: 0 0 20px;
}

.new-balance-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--footer-section-bg);
    border-radius: 10px;
    border: 1px solid var(--footer-border-color);
}

.new-balance-box span {
    color: var(--footer-text-tertiary);
    font-size: 1.44rem;
}

.new-balance-box strong {
    color: var(--footer-primary-color);
    font-size: 1.6rem;
}

.result-error .error-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(239, 68, 68, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-error .error-icon i {
    font-size: 3.52rem;
    color: #ef4444;
}

.result-error h3 {
    color: var(--footer-text-primary);
    font-size: 2.08rem;
    margin: 0 0 10px;
}

.result-error p {
    color: var(--footer-text-tertiary);
    font-size: 1.52rem;
    margin: 0 0 20px;
}

.retry-btn {
    padding: 12px 30px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    color: #ef4444;
    font-size: 1.52rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.retry-btn:hover {
    background: #ef4444;
    color: #ffffff;
}

/* User Balance */
.giveaway-balance {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    background: var(--footer-section-bg);
    border-top: 1px solid var(--footer-border-color);
}

.giveaway-balance .balance-label {
    color: var(--footer-text-tertiary);
    font-size: 1.44rem;
}

.giveaway-balance .balance-value {
    color: var(--footer-primary-color);
    font-size: 2rem;
    font-weight: 700;
}

.giveaway-balance .balance-value small {
    font-size: 1.28rem;
    font-weight: 500;
    opacity: 0.8;
}

/* Card Footer */
.giveaway-card-footer {
    padding: 18px 25px;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.giveaway-card-footer .footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--footer-text-tertiary);
    font-size: 1.44rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.giveaway-card-footer .footer-link:hover {
    color: var(--footer-primary-color);
}

.giveaway-card-footer .footer-link i {
    transition: transform 0.3s ease;
}

.giveaway-card-footer .footer-link:hover i {
    transform: translateX(-5px);
}

/* Confetti */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.confetti {
    position: absolute;
    top: -10px;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    animation: confettiFall linear forwards;
}

@keyframes confettiFall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* =====================================================
   GIVEAWAY HISTORY PAGE STYLES
   ===================================================== */

.giveaway-history-header {
    text-align: center;
    margin-bottom: 35px;
}

.giveaway-history-header .header-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--footer-primary-color), var(--footer-accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--footer-shadow);
}

.giveaway-history-header .header-icon i {
    font-size: 2.8rem;
    color: #ffffff;
}

.giveaway-history-header h1 {
    color: var(--footer-text-primary);
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 0 10px;
}

.giveaway-history-header p {
    color: var(--footer-text-tertiary);
    font-size: 1.52rem;
    margin: 0;
}

/* History Stats Row */
.history-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.history-stat-box {
    background: var(--footer-dark-bg);
    border: 1px solid var(--footer-border-color);
    border-radius: 15px;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.history-stat-box .stat-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.history-stat-box .stat-icon-wrap i {
    font-size: 1.92rem;
    color: #ffffff;
}

.stat-icon-wrap.stat-purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.stat-icon-wrap.stat-gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.stat-icon-wrap.stat-teal {
    background: linear-gradient(135deg, var(--footer-primary-color), var(--footer-accent-color));
}

.history-stat-box .stat-data {
    display: flex;
    flex-direction: column;
}

.history-stat-box .stat-number {
    color: var(--footer-text-primary);
    font-size: 2.24rem;
    font-weight: 700;
    line-height: 1;
}

.history-stat-box .stat-text {
    color: var(--footer-text-tertiary);
    font-size: 1.2rem;
    margin-top: 4px;
}

/* History List Card */
.history-list-card {
    background: var(--footer-dark-bg);
    border: 1px solid var(--footer-border-color);
    border-radius: 18px;
    overflow: hidden;
}

.history-list-card .list-header {
    padding: 18px 20px;
    border-bottom: 1px solid var(--footer-border-color);
    background: var(--footer-section-bg);
}

.history-list-card .list-header h3 {
    color: var(--footer-text-primary);
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.history-list-card .list-header h3 i {
    color: var(--footer-primary-color);
}

/* History Items */
.history-list {
    max-height: 450px;
    overflow-y: auto;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--footer-border-color-light);
    transition: background 0.3s ease;
}

.history-item:last-child {
    border-bottom: none;
}

.history-item:hover {
    background: var(--footer-section-bg);
}

.history-item .item-icon {
    width: 45px;
    height: 45px;
    background: var(--footer-accent-medium);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.history-item .item-icon i {
    font-size: 1.76rem;
    color: var(--footer-primary-color);
}

.history-item .item-info {
    flex: 1;
    min-width: 0;
}

.history-item .item-info h4 {
    color: var(--footer-text-primary);
    font-size: 1.52rem;
    font-weight: 600;
    margin: 0 0 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.history-item .item-date {
    color: var(--footer-text-tertiary);
    font-size: 1.28rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.history-item .item-date i {
    font-size: 1.12rem;
}

.history-item .item-points {
    text-align: right;
    flex-shrink: 0;
}

.history-item .points-badge {
    display: block;
    color: #22c55e;
    font-size: 1.76rem;
    font-weight: 700;
}

.history-item .points-label {
    color: var(--footer-text-tertiary);
    font-size: 1.2rem;
}

/* Empty State */
.history-empty {
    text-align: center;
    padding: 50px 30px;
}

.history-empty .empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--footer-section-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.history-empty .empty-icon i {
    font-size: 3.2rem;
    color: var(--footer-text-tertiary);
}

.history-empty h3 {
    color: var(--footer-text-primary);
    font-size: 1.92rem;
    font-weight: 600;
    margin: 0 0 10px;
}

.history-empty p {
    color: var(--footer-text-tertiary);
    font-size: 1.44rem;
    margin: 0;
    max-width: 300px;
    margin: 0 auto;
    line-height: 1.5;
}

/* History Pagination */
.history-pagination {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.history-pagination .pagination {
    gap: 8px;
}

.history-pagination .page-link {
    background: var(--footer-dark-bg);
    border: 1px solid var(--footer-border-color);
    color: var(--footer-text-secondary);
    border-radius: 8px;
    padding: 8px 14px;
}

.history-pagination .page-link:hover {
    background: var(--footer-accent-medium);
    color: var(--footer-text-primary);
}

.history-pagination .page-item.active .page-link {
    background: var(--footer-primary-color);
    border-color: var(--footer-primary-color);
    color: #ffffff;
}

/* History Footer */
.history-footer {
    text-align: center;
    margin-top: 30px;
}

.history-footer .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--footer-text-tertiary);
    font-size: 1.52rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.history-footer .back-link:hover {
    color: var(--footer-primary-color);
}

/* Password Modal Styles */
.password-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.password-modal {
    background: var(--footer-dark-bg);
    border: 1px solid var(--footer-border-color);
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

.password-modal .modal-header{
  display: flex;
  flex-direction: column;
}


@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.password-modal .modal-header {
    padding: 30px 25px 20px;
    text-align: center;
    border-bottom: 1px solid var(--footer-border-color);
    background: var(--footer-section-bg);
}

.password-modal .modal-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--footer-primary-color), var(--footer-accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-modal .modal-icon i {
    font-size: 2.4rem;
    color: #ffffff;
}

.password-modal .modal-header h3 {
    color: var(--footer-text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.password-modal .modal-header p {
    color: var(--footer-text-tertiary);
    font-size: 1.44rem;
    margin: 0;
}

.password-modal .modal-body {
    padding: 25px;
}

.password-input-group {
    position: relative;
}

.password-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--footer-border-color);
    border-radius: 12px;
    color: var(--footer-text-primary);
    font-size: 1.76rem;
    text-align: center;
    letter-spacing: 3px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.password-input:focus {
    outline: none;
    border-color: var(--footer-primary-color);
    background: rgba(20, 184, 166, 0.05);
}

.password-input::placeholder {
    color: var(--footer-text-tertiary);
    letter-spacing: normal;
    font-weight: 400;
}

.password-error {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    color: #ef4444;
    font-size: 1.36rem;
    animation: shakeError 0.4s ease;
}

@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

.password-modal .modal-footer {
    padding: 20px 25px;
    display: flex;
    gap: 12px;
    border-top: 1px solid var(--footer-border-color);
    background: rgba(0, 0, 0, 0.2);
}

.modal-btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 1.52rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: var(--footer-text-secondary);
}

.modal-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.15);
}

.modal-btn-submit {
    background: linear-gradient(135deg, var(--footer-primary-color), var(--footer-accent-color));
    color: #ffffff;
}

.modal-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--footer-shadow-hover);
}

.modal-btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.modal-btn-submit .btn-text,
.modal-btn-submit .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ===== END USER GIVEAWAY STYLES ===== */

/* ============================================ */
/* POINT EXCHANGE PAGE STYLES - BEAUTIFUL DESIGN */
/* ============================================ */

/* Exchange Card - Main Container */
.exchange-card {
    background: linear-gradient(145deg, #1a2332 0%, #0f1923 100%);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 
                0 0 40px rgba(78, 205, 196, 0.05);
}

/* Header with Balance Display */
.exchange-header {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1) 0%, rgba(78, 205, 196, 0.02) 100%);
    padding: 30px;
    border-bottom: 1px solid rgba(78, 205, 196, 0.15);
    position: relative;
}

.balance-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.balance-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 28px;
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.balance-item:hover {
    transform: translateY(-3px);
    border-color: rgba(78, 205, 196, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.balance-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    position: relative;
    overflow: hidden;
}

.balance-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(10px);
    opacity: 0.5;
    z-index: -1;
}

.balance-icon.points {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.balance-icon.stars {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.4);
}

.balance-info {
    display: flex;
    flex-direction: column;
}

.balance-label {
    font-size: 1.36rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.balance-value {
    font-size: 2.88rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.exchange-arrow {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.92rem;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 12px 35px rgba(78, 205, 196, 0.6);
    }
}

/* Exchange Rate Info */
.exchange-rate-info {
    padding: 20px 30px;
    display: flex;
    justify-content: center;
    background: rgba(78, 205, 196, 0.05);
}

.rate-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(145deg, rgba(78, 205, 196, 0.15) 0%, rgba(78, 205, 196, 0.05) 100%);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 30px;
    color: #4ecdc4;
    font-size: 1.52rem;
    font-weight: 500;
}

.rate-badge i {
    font-size: 1.76rem;
}

.rate-badge strong {
    color: #ffffff;
    font-weight: 700;
}

/* Exchange Form */
.exchange-form {
    padding: 30px;
}

.exchange-form .form-group {
    margin-bottom: 25px;
}

.exchange-form label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1.6rem;
}

/* Stylish Input Wrapper */
.exchange-form .input-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 8px;
    transition: all 0.3s ease;
}

.exchange-form .input-wrapper:focus-within {
    border-color: #4ecdc4;
    box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.15),
                0 10px 30px rgba(0, 0, 0, 0.2);
}

.exchange-form .input-btn {
    width: 52px;
    height: 52px;
    border: none;
    background: linear-gradient(145deg, rgba(78, 205, 196, 0.2) 0%, rgba(78, 205, 196, 0.1) 100%);
    color: #4ecdc4;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.76rem;
    font-weight: 600;
}

.exchange-form .input-btn:hover {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
}

.exchange-form .input-btn:active {
    transform: scale(0.95);
}

.exchange-form .input-wrapper input {
    flex: 1;
    text-align: center;
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    background: transparent;
    border: none;
    outline: none;
    padding: 10px 15px;
    min-width: 80px;
}

.exchange-form .input-wrapper input::-webkit-inner-spin-button,
.exchange-form .input-wrapper input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Quick Amount Buttons */
.quick-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.quick-buttons button {
    padding: 10px 20px;
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.44rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-buttons button:hover {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

/* Calculation Display */
.calculation-display {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 25px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.52rem;
}

.calc-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.calc-row.remaining {
    color: rgba(255, 255, 255, 0.7);
}

.calc-value {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.6rem;
}

.calc-value.highlight {
    color: #4ecdc4;
    font-size: 2.24rem;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
}

/* Main Exchange Button */
.exchange-btn {
    width: 100%;
    padding: 20px 35px;
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    border: none;
    border-radius: 18px;
    color: white;
    font-size: 1.84rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.exchange-btn::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;
}

.exchange-btn:hover:not(:disabled)::before {
    left: 100%;
}

.exchange-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.4);
}

.exchange-btn:active:not(:disabled) {
    transform: translateY(-1px);
}

.exchange-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.exchange-btn .btn-text,
.exchange-btn .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* No Points Message */
.no-points-message {
    text-align: center;
    padding: 40px;
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
}

.no-points-message i {
    font-size: 5.6rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: block;
}

.no-points-message p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.earn-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    font-size: 1.6rem;
}

.earn-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Stats Cards */
.exchange-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.exchange-stats .stat-card {
    background: linear-gradient(145deg, #1a2332 0%, #0f1923 100%);
    border: 1px solid rgba(78, 205, 196, 0.15);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.exchange-stats .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4ecdc4, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.exchange-stats .stat-card:hover::before {
    opacity: 1;
}

.exchange-stats .stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(78, 205, 196, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.exchange-stats .stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.24rem;
    background: linear-gradient(145deg, rgba(78, 205, 196, 0.2) 0%, rgba(78, 205, 196, 0.05) 100%);
    color: #4ecdc4;
    border: 1px solid rgba(78, 205, 196, 0.2);
}

.exchange-stats .stat-info {
    display: flex;
    flex-direction: column;
}

.exchange-stats .stat-value {
    font-size: 2.56rem;
    font-weight: 800;
    color: #ffffff;
}

.exchange-stats .stat-label {
    font-size: 1.28rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Exchange History Card */
.exchange-history-card {
    background: linear-gradient(145deg, #1a2332 0%, #0f1923 100%);
    border: 1px solid rgba(78, 205, 196, 0.15);
    border-radius: 24px;
    overflow: hidden;
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.08) 0%, rgba(78, 205, 196, 0.02) 100%);
    border-bottom: 1px solid rgba(78, 205, 196, 0.1);
}

.history-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.76rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.history-header h3 i {
    color: #4ecdc4;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4ecdc4;
    text-decoration: none;
    font-size: 1.44rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(78, 205, 196, 0.1);
    transition: all 0.3s ease;
}

.view-all-link:hover {
    background: rgba(78, 205, 196, 0.2);
    color: #4ecdc4;
}

.history-list {
    padding: 10px 0;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.history-item:last-child {
    border-bottom: none;
}

.history-item:hover {
    background: rgba(78, 205, 196, 0.05);
}

.history-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(78, 205, 196, 0.15) 0%, rgba(78, 205, 196, 0.05) 100%);
    color: #4ecdc4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.76rem;
    border: 1px solid rgba(78, 205, 196, 0.2);
}

.history-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.history-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.52rem;
}

.history-text .points-text {
    color: #a78bfa;
    font-weight: 700;
    background: rgba(167, 139, 250, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

.history-text .stars-text {
    color: #f472b6;
    font-weight: 700;
    background: rgba(244, 114, 182, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

.history-text i {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.28rem;
}

.history-date {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.28rem;
}

/* History Page Styles */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #4ecdc4;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.2);
    transition: all 0.3s ease;
}

.back-link:hover {
    background: rgba(78, 205, 196, 0.2);
    color: #4ecdc4;
}

.exchange-history-card.full-history {
    padding: 0;
}

.history-table-wrapper {
    overflow-x: auto;
}

.exchange-table {
    width: 100%;
    border-collapse: collapse;
}

.exchange-table th,
.exchange-table td {
    padding: 18px 24px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.exchange-table th {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.08) 0%, rgba(78, 205, 196, 0.02) 100%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.28rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exchange-table td {
    color: rgba(255, 255, 255, 0.8);
}

.exchange-table tbody tr {
    transition: all 0.3s ease;
}

.exchange-table tbody tr:hover {
    background: rgba(78, 205, 196, 0.05);
}

.date-cell .date {
    display: block;
    font-weight: 600;
    color: #ffffff;
}

.date-cell .time {
    display: block;
    font-size: 1.28rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

.points-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2) 0%, rgba(167, 139, 250, 0.1) 100%);
    color: #a78bfa;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.44rem;
    border: 1px solid rgba(167, 139, 250, 0.3);
}

.stars-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.2) 0%, rgba(244, 114, 182, 0.1) 100%);
    color: #f472b6;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.44rem;
    border: 1px solid rgba(244, 114, 182, 0.3);
}

.balance-after {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 1.36rem;
}

.pagination-wrapper {
    padding: 25px;
    display: flex;
    justify-content: center;
    background: rgba(78, 205, 196, 0.02);
}

/* No History */
.no-history {
    text-align: center;
    padding: 80px 30px;
    background: linear-gradient(145deg, #1a2332 0%, #0f1923 100%);
    border: 1px solid rgba(78, 205, 196, 0.15);
    border-radius: 24px;
}

.no-history i {
    font-size: 8rem;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.3) 0%, rgba(78, 205, 196, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    display: block;
}

.no-history h3 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 2.08rem;
}

.no-history p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 25px;
}

.exchange-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.exchange-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.4);
    color: white;
}

/* ===== END POINT EXCHANGE STYLES ===== */

.balance-after {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 1.36rem;
}

.pagination-wrapper {
    padding: 20px;
    display: flex;
    justify-content: center;
}

/* No History */
.no-history {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, var(--footer-dark-bg), var(--footer-light-bg));
    border: 1px solid var(--footer-border-color);
    border-radius: 20px;
}

.no-history i {
    font-size: 6.4rem;
    color: var(--footer-text-tertiary);
    margin-bottom: 20px;
}

.no-history h3 {
    color: var(--footer-text-secondary);
    margin-bottom: 10px;
}

.no-history p {
    color: var(--footer-text-tertiary);
    margin-bottom: 20px;
}

.exchange-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--footer-primary-color), var(--footer-accent-color));
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.exchange-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--footer-shadow-hover);
    color: white;
}

/* ===== END POINT EXCHANGE STYLES ===== */

.shownovelcont{
  padding: 0 20px;
}
