/* Global Styles */
:root {
  --primary-color: #2563eb;
  --primary-color-dim: #2564eb87;
  --primary-light: #dbeafe;
  --secondary-color: #f1f5f9;
  --text-dark: #0f172a;
  --text-gray: #64748b;
  --text-light: #94a3b8;
  --white: #ffffff;
  --off-white: #f8fafc;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background-color: var(--off-white);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  margin: 2rem 0;
  color: var(--primary-color);
  text-align: center;
}

p {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin: 0 0 2rem;
}

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

ul {
  list-style: none;
}

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

/* Button Styles */
.btn-primary {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: var(--radius-sm);
  padding: 10px 24px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 120px;
  text-align: center;
}

.btn-primary:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-light {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 10px 24px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 120px;
  text-align: center;
}

.btn-light:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-right: 20px;
}

.btn-arrow::after {
  content: "→";
  font-size: 18px;
}

.link-text {
  color: var(--text-gray);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  padding: 10px 24px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: inline-block;
  min-width: 120px;
  text-align: center;
}

.link-text:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Header Styles */
header {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
}

.logo-icon {
  height: 60px;
}

.nav-buttons {
  display: flex;
  gap: 12px;
}

/* Navigation buttons keep filled style */
.nav-buttons .btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border: 1px solid var(--primary-color);
}

.nav-buttons .btn-primary:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
  color: var(--white);
}

/* Language Switcher Styles */
.language-switcher {
  position: relative;
  margin-right: 16px;
}

.language-button-group {
  display: flex;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  background-color: #f8fafc;
}

.language-btn-group {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  background-color: transparent;
  border: none;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
  height: 44px;
}

.language-btn-group:not(:last-child) {
  border-right: 1px solid #e2e8f0;
}

.language-btn-group:hover {
  background-color: #f1f5f9;
  color: #0f172a;
}

.language-btn-group.active {
  background-color: #2563eb;
  color: white;
}

.language-btn-group.active:hover {
  background-color: #1d4ed8;
}

.language-btn-group i {
  font-size: 8px;
  color: inherit;
}

.language-code {
  font-size: 14px;
  color: inherit;
  font-weight: 600;
}

@media (max-width: 768px) {
  .language-switcher {
    margin-right: 12px;
  }
  
  .language-btn-group {
    padding: 8px 10px;
    font-size: 13px;
    height: 40px;
  }
  
  .language-code {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .language-switcher {
    margin-right: 8px;
  }
  
  .language-btn-group {
    padding: 6px 8px;
    font-size: 12px;
    height: 36px;
  }
  
  .language-code {
    font-size: 12px;
  }
}

/* Mobile styles for navigation buttons */
@media (max-width: 768px) {
  .nav-buttons .btn-primary,
  .nav-buttons .btn-light {
    padding: 8px 16px;
    min-width: 90px;
    font-size: 13px;
  }

  .logo {
    font-size: 14px;
  }

  .logo-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 576px) {
  .nav-buttons .btn-primary,
  .nav-buttons .btn-light {
    padding: 6px 12px;
    min-width: 80px;
    font-size: 12px;
  }

  .nav-buttons {
    gap: 8px;
  }

  header {
    padding: 0px 0;
  }

  .logo {
    font-size: 13px;
  }

  .logo-icon {
    height: 45px;
    width: auto;
  }
}

/* Hero Section */
.hero {
  padding: 80px 0;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.tagline {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

.blue-text {
  color: var(--primary-color);
}

.description {
  color: var(--text-gray);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 500px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Responsive Styles for Hero Section */
@media (max-width: 768px) {
  .hero {
    padding: 40px 0;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .hero-content {
    width: 100%;
  }

  .description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .description {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 32px 0;
  }

  .hero .container {
    padding: 0 20px;
  }

  .home-hero {
    margin: 50px 0px !important;
  }

  .hero-image {
    max-width: 400px;
  }

  h1 {
    font-size: 28px;
  }

  .description {
    font-size: 15px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-light {
    width: 100%;
  }
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-gray);
  text-align: center;
  font-size: 16px;
  margin-bottom: 48px;
}

/* How It Works Section */
.steps-container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.step-card {
  flex: 1;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}

.step-icon {
  margin-bottom: 24px;
}

.step-icon img {
  width: 48px;
  height: 48px;
}

.step-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-light);
  opacity: 0.7;
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-gray);
  font-size: 14px;
}

/* Rewards Section */
.rewards {
  background-color: var(--secondary-color);
}

.rewards-container {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.reward-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  width: 220px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reward-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.reward-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.reward-icon img {
  width: 48px;
  height: 48px;
}

.reward-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.reward-card p {
  color: var(--text-gray);
  font-size: 14px;
}

/* Experience Section */
.experience-container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.experience-card {
  flex: 1;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}

.experience-icon {
  margin-bottom: 24px;
}

.experience-icon img {
  width: 48px;
  height: 48px;
}

.experience-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.experience-card p {
  color: var(--text-gray);
  font-size: 14px;
}

/* Success Stories Section */
.testimonials-container {
  display: flex;
  gap: 24px;
}

.testimonial-card {
  flex: 1;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-info .author-name {
  font-weight: 600;
  font-size: 16px;
}

.author-info .author-title {
  color: var(--text-gray);
  font-size: 14px;
}

.author-stats {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
}

.author-stats img {
  width: 16px;
  height: 16px;
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-light);
  text-align: center;
  padding: 80px 0;
  border-radius: var(--radius-lg);
  margin: 0 20px;
}

.trophy-icon {
  margin-bottom: 24px;
}

.trophy-icon img {
  width: 64px;
  height: 64px;
}

.cta-title {
  font-size: 32px;
  margin-bottom: 16px;
}

.cta-text {
  color: var(--text-gray);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.bonus-text {
  color: var(--text-gray);
  font-size: 14px;
  margin-top: 24px;
}

/* Footer */
footer {
  background-color: var(--white);
  padding: 60px 0 10px;
}

.footer-container {
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-company {
  max-width: 320px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  height: 100px;
  width: auto;
}

.footer-tagline {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: var(--text-gray);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.5;
}

.footer-column ul li a:hover {
  color: var(--primary-color);
}

.footer-divider {
  height: 1px;
  background-color: var(--border-color);
  margin: 0 0 32px 0;
}

.footer-bottom {
  align-items: center;
}

.copyright {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-link {
  color: var(--text-gray);
  font-size: 18px;
  transition: color 0.2s ease;
  text-decoration: none;
}

.social-link:hover {
  color: var(--primary-color);
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-company {
    max-width: 100%;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-column {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  footer {
    padding: 90px 0 10px;
  }

  .footer-content {
    gap: 30px;
  }

  .footer-links {
    gap: 25px;
  }

  .footer-column h4 {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .footer-column ul li a {
    font-size: 13px;
  }

  .copyright {
    font-size: 13px;
  }

  .social-link {
    font-size: 16px;
  }
}

/* Login Page Styles */
.login-section {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  padding: 20px 0;
}

/* Login/Signup Page Footer */
.login-section + footer {
  /* padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 0px; */
}

.login-section + footer .footer-bottom {
  padding: 8px 0;
}

.login-section + footer .footer-bottom p {
  margin: 0;
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
}

.login-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.login-header {
  text-align: center;
  margin-bottom: 20px;
}

.login-header h1 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.login-subtitle {
  color: var(--text-gray);
  font-size: 14px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-dark);
}

.form-group input {
  width: 100%;
  height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 14px;
  transition: all 0.2s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px var(--primary-light);
}

.form-group input:disabled,
.form-group select:disabled {
  background-color: #f8f9fa;
  color: #6c757d;
  cursor: not-allowed;
  opacity: 0.7;
}

.form-group input:disabled:focus,
.form-group select:disabled:focus {
  border-color: #ced4da;
  box-shadow: none;
}

.password-input {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--text-gray);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.checkbox-label {
  font-size: 14px;
  color: var(--text-gray);
}

.forgot-password {
  font-size: 14px;
  color: var(--primary-color);
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
}

.btn-full {
  width: 100%;
  height: 40px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
}

/* Phone Input Styles */
.phone-input-container {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.phone-input {
  flex: 1;
}

.phone-input-container .custom-select {
  width: 120px;
  flex-shrink: 0;
}

.phone-input-container .custom-select select {
  width: 100%;
  height: 40px;
  padding: 8px 12px;
  padding-right: 32px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background-color: var(--white);
  cursor: pointer;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: var(--text-dark);
}

.phone-input-container .custom-select select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px var(--primary-light);
}

.phone-input-container .custom-select::after {
  content: "▼";
  font-size: 12px;
  color: var(--text-gray);
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* OTP Input Styles */
#otp-section {
  margin-top: 16px;
}

#otp-section input {
  letter-spacing: 4px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  height: 40px;
}

#otp-section input::placeholder {
  letter-spacing: 0;
  font-size: 14px;
  font-weight: normal;
}

/* Error Text Styles */
.text-danger {
  margin: 8px 0;
  font-size: 14px;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 576px) {
  .login-container {
    padding: 16px;
    margin: 0 16px;
  }

  .login-header h1 {
    font-size: 20px;
  }

  .form-options {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  
  
  .login-section + footer .footer-bottom p {
    font-size: 11px;
  }
}

/* Signup Page Styles */
.signup-container {
  max-width: 480px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row .form-group {
  flex: 1;
}

.password-hint {
  font-size: 12px;
  color: var(--text-gray);
  margin-top: 4px;
}

/* Custom Select Styles */
.custom-select {
  position: relative;
}

.custom-select select {
  width: 100%;
  height: 36px;
  padding: 8px 12px;
  padding-right: 32px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background-color: var(--white);
  cursor: pointer;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: var(--text-dark);
}

.custom-select select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.custom-select::after {
  content: "▼";
  font-size: 12px;
  color: var(--text-gray);
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Terms Checkbox Styles */
.terms-group {
  margin-top: 5px;
  margin-bottom: 0px !important;
}

.terms-group .checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}

.terms-group .checkbox-container input[type="checkbox"] {
  margin-top: 3px;
  width: 16px !important;
  height: 16px;
  cursor: pointer;
}

.terms-group .checkbox-label {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
  flex: 1;
}

.terms-group .link-primary {
  color: var(--primary-color);
  text-decoration: none;
}

.terms-group .link-primary:hover {
  text-decoration: underline;
}

/* Responsive Styles for Terms */
@media (max-width: 576px) {
  .terms-group .checkbox-container {
    gap: 6px;
  }

  .terms-group .checkbox-label {
    font-size: 13px;
  }
}

/* Feed Section Styles */
.feed-section {
  padding: 10px 0px;
  width: 100%;
}

.feed-section .container {
  width: 100%;
  padding: 0;
}

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

.feed-header h2 {
  font-size: 24px;
  color: var(--text-dark);
}

.feed-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feed-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.reward-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
}

.reward-badge img {
  width: 14px;
  height: 14px;
}

.poll-tag,
.survey-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.poll-tag {
  background-color: var(--secondary-color);
  color: var(--text-gray);
}

.survey-tag {
  background-color: var(--primary-light);
  color: var(--primary-color);
}

.feed-card h3 {
  font-size: 15px;
  margin-bottom: 12px;
  font-weight: 500;
}

/* Poll Specific Styles */
.poll-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.poll-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background-color: var(--secondary-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 13px;
  font-weight: 400;
}

.poll-option .progress-bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: var(--primary-color);
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  opacity: 0;
}

.poll-option .option-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.vote-percentage {
  font-weight: 600;
  color: #1e40af;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
  font-size: 12px;
}

.poll-option.selected {
  border-color: var(--primary-color);
}

.poll-options.voted .poll-option {
  cursor: default;
}

.poll-option.voted .vote-percentage {
  opacity: 1;
  transform: translateX(0);
  color: #1e40af;
}

.poll-option.voted .progress-bg {
  opacity: 1;
}

.poll-option.voted .option-content {
  color: #1e293b;
}

.poll-option .option-content span:first-child {
}

.poll-option:not(.voted):hover .vote-percentage {
  color: var(--primary-color);
}

/* Quest Styles */
.quest-tag {
  background-color: var(--primary-light);
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Completed quest styles */
.feed-card.completed {
}

.feed-card.completed .card-header {
  position: relative;
}

.completed-icon {
  background: #28a745;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
  z-index: 10;
}

.quest-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.completed-icon {
  color: white;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}

/* Raffle Winner Card Styles */
.raffle-winner-card {
  background: linear-gradient(135deg, #f8fbff, #e8f4fd);
  border: 1px solid #bbdefb;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(33, 150, 243, 0.1);
  transition: all 0.3s ease;
}

.raffle-winner-card:hover {
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.15);
}

.raffle-tag {
  background: linear-gradient(135deg, #64b5f6, #90caf9);
  color: #fff;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.raffle-winner-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.raffle-content {
  padding: 0;
}

.raffle-date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1976d2;
  font-weight: 600;
  font-size: 14px;
}

.raffle-date img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(187deg) brightness(104%) contrast(97%);
}

.winner-info {
  background: rgba(255, 255, 255, 0.8);
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(33, 150, 243, 0.15);
  margin-bottom: 16px;
  position: relative;
}



.winner-info h4 {
  color: #1565c0;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.raffle-note {
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 16px;
  border-radius: 8px;
  border-left: 3px solid #42a5f5;
  margin-top: 12px;
}

.raffle-note p {
  color: #1976d2;
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.quest-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.quest-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background-color: var(--secondary-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 13px;
  font-weight: 400;
}

.quest-option .progress-bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: var(--primary-color);
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  opacity: 0;
}

.quest-option .option-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.quest-option.selected {
  border-color: var(--primary-color);
}

.quest-options.answered .quest-option {
  cursor: default;
}

.quest-option.answered .vote-percentage {
  opacity: 1;
  transform: translateX(0);
  color: #1e40af;
}

.quest-option.answered .progress-bg {
  opacity: 1;
}

.quest-option.answered .option-content {
  color: #1e293b;
}

.quest-option .option-content span:first-child {
}

/* Completed quest answer text color */
.quest-option.answered .option-content span:first-child {
  color: #d3d3d3;
}

.quest-option:not(.answered):hover .vote-percentage {
  color: var(--primary-color);
}

/* Disable clicking on completed quests */
.feed-card.completed .quest-option {
  pointer-events: none;
  cursor: default;
}

.feed-card.completed .quest-option:hover {
  background-color: transparent;
}

.quest-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin: 16px 0;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  color: var(--text-gray);
  font-size: 12px;
  font-weight: 400;
}

/* Survey Specific Styles */
.survey-description {
  color: var(--text-gray);
  font-size: 13px;
  margin-bottom: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.survey-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-gray);
  font-size: 14px;
}

.meta-item img {
  width: 16px;
  height: 16px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .three-column-layout {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 0;
  }

  .main-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .feed-section {
    width: 100%;
  }

  .feed-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .feed-header {
    margin: 16px 0 20px;
    padding: 0 16px;
  }

  .feed-container {
    gap: 16px;
    width: 100%;
  }

  .feed-card {
    padding: 16px;
    margin: 0 16px;
    width: calc(100% - 32px);
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .three-column-layout {
    padding: 0;
  }

  .feed-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 0 16px;
    margin-top: 32px;
    width: 100%;
  }

  .feed-card {
    padding: 12px;
    margin: 0 12px;
    width: calc(100% - 24px);
  }
}

@media (max-width: 576px) {
  .feed-header {
    margin-top: 40px;
    padding: 0 12px;
  }

  .feed-card {
    padding: 10px;
    margin: 0 8px;
    width: calc(100% - 16px);
  }
}

/* Three Column Layout */
.three-column-layout {
  display: grid;
  grid-template-columns: 300px 1fr 300px;
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Sidebar Styles */
.sidebar {
  position: sticky;
  top: 24px; /* Match the top padding of three-column-layout */
  height: calc(100vh - 128px); /* Subtract header height + padding */
  overflow-y: auto; /* Allow sidebar content to scroll if too tall */
}

/* Profile Card Styles */
.profile-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-info h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.profile-level {
  color: var(--text-gray);
  font-size: 12px;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: center;
}

.stat-item {
  padding: 12px;
  background-color: var(--secondary-color);
  border-radius: var(--radius-sm);
}

.stat-value {
  display: block;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 18px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-gray);
}

.profile-progress {
  background-color: var(--secondary-color);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
}

.progress-bar {
  height: 8px;
  background-color: var(--border-color);
  border-radius: 4px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 4px;
}

/* Quick Stats Styles */
.quick-stats {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.quick-stats h4 {
  margin-bottom: 16px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background-color: var(--secondary-color);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.stat-card img {
  width: 24px;
  height: 24px;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-title {
  font-size: 14px;
  color: var(--text-gray);
}

.stat-number {
  font-weight: 600;
  color: var(--text-dark);
}

/* Promo Card Styles */
.promo-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  margin-bottom: 24px;
}

.promo-card.featured {
  background-color: var(--primary-light);
  border-color: var(--primary-color);
}

.promo-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 12px;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.promo-card h4 {
  margin-bottom: 8px;
  font-size: 16px;
}

.promo-card p {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 16px;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  min-width: auto;
}

/* Achievement Styles */
.achievements-section {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.achievements-section h4 {
  margin-bottom: 16px;
}

.achievement-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.achievement-card img {
  width: 32px;
  height: 32px;
}

.achievement-info {
  display: flex;
  flex-direction: column;
}

.achievement-title {
  font-weight: 500;
  font-size: 14px;
}

.achievement-desc {
  color: var(--text-gray);
  font-size: 12px;
}

/* Responsive Styles */
@media (max-width: 1440px) {
  .three-column-layout {
    grid-template-columns: 260px 1fr 260px;
    gap: 24px;
  }
}

@media (max-width: 1200px) {
  .three-column-layout {
    grid-template-columns: 240px 1fr 240px;
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .three-column-layout {
    grid-template-columns: 1fr;
    height: auto;
    padding: 0;
    gap: 16px;
  }

  .logout-section{
    margin-bottom:20px;
  }

  .profile-sidebar{
    position: relative!important;
  }

  .home-left-sidebar{
    display: none;
  }

  .right-sidebar {
    display: none;
  }

  /* .profile-right-sidebar{
    display: block!important;
  }

  .profile-settings-section{
    padding-bottom:0px!important;
  } */

  
  .quick-stats{
    margin-top: 16px;
  }

  .profile-sidebar{
   height: 100%;
  }

  .quick-links-profile{
   display: none;
  }

  .main-content {
    max-width: 100%;
    padding: 0;
  }

  .feed-section {
    width: 100%;
  }

  .feed-section .container {
    padding: 0;
  }

  .feed-header {
    margin: 16px 0 20px;
  }

  .feed-header h2 {
    margin-top: 8px;
  }

  .feed-container {
    gap: 16px;
  }

  .feed-card {
    padding: 16px;
    margin: 0 16px;
  }
}

@media (max-width: 768px) {
  .three-column-layout {
    padding: 0;
  }

  .feed-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 0 16px;
    margin-top: 32px;
  }

  .feed-filters {
    width: 100%;
    justify-content: space-between;
  }

  .feed-card {
    padding: 12px;
    margin: 0 12px;
  }

  .card-header {
    gap: 8px;
  }

  .survey-description {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .poll-options {
    gap: 8px;
  }

  .poll-option {
    padding: 12px;
  }

  .quest-options {
    gap: 8px;
  }

  .quest-option {
    padding: 12px;
  }

  .feed-header h2 {
    font-size: 20px;
    margin-top: 12px;
  }
}

@media (max-width: 576px) {
  .three-column-layout {
    padding: 0;
  }

  .feed-header {
    margin-top: 40px;
    padding: 0 12px;
  }

  .feed-card {
    padding: 10px;
    margin: 0 8px;
  }

  .card-header {
    margin-bottom: 12px;
  }

  .feed-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .survey-description {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .poll-option {
    padding: 10px;
    font-size: 13px;
  }

  .quest-option {
    padding: 10px;
    font-size: 13px;
  }

  .card-footer {
    gap: 8px;
  }

  .time-estimate {
    font-size: 12px;
  }

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

/* Feed Section Mobile Optimizations */
@media (max-width: 768px) {
  .feed-container {
    gap: 16px;
  }

  .poll-options {
    gap: 8px;
  }

  .poll-option .option-content {
    flex-wrap: wrap;
    gap: 4px;
  }

  .quest-options {
    gap: 8px;
  }

  .quest-option .option-content {
    flex-wrap: wrap;
    gap: 4px;
  }

  .vote-percentage {
    margin-left: auto;
  }

  .card-footer {
    justify-content: space-between;
  }

  .time-estimate {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .time-estimate img {
    width: 12px;
    height: 12px;
  }
}

/* Quick Links Mobile Optimizations */
@media (max-width: 768px) {
  .quick-links {
    padding: 16px;
  }

  .links-list li a {
    padding: 10px;
    font-size: 13px;
  }

  .links-list li a img {
    width: 16px;
    height: 16px;
  }
}

/* Promo Cards Mobile Optimizations */
@media (max-width: 768px) {
  .promo-card {
    padding: 16px;
  }

  .promo-card h4 {
    font-size: 14px;
  }

  .promo-card p {
    font-size: 12px;
  }

  .promo-tag {
    font-size: 10px;
    padding: 2px 6px;
  }

  .propose-poll {
    text-align: left;
  }

  .propose-icon {
    width: 32px;
    height: 32px;
    margin: 0 0 12px;
  }
}

/* Quick Links Styles */
.quick-links {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.quick-links h4 {
  margin-bottom: 16px;
}

.links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.links-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  color: var(--text-gray);
  transition: all 0.2s ease;
  border: 1px solid var(--border-color);
}

.links-list li a:hover {
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.links-list li a img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

.links-list li a span {
  font-size: 14px;
  font-weight: 500;
}

.links-list li a.logout-link {
  color: #dc2626;
  border-color: #fee2e2;
}

.links-list li a.logout-link:hover {
  background-color: #fee2e2;
  color: #dc2626;
  border-color: #dc2626;
}

.links-list li a.logout-link img {
  filter: brightness(0) saturate(100%) invert(32%) sepia(98%) saturate(1234%) hue-rotate(328deg) brightness(85%) contrast(101%);
}

.links-list li a.logout-link:hover img {
  filter: brightness(0) saturate(100%) invert(32%) sepia(98%) saturate(1234%) hue-rotate(328deg) brightness(85%) contrast(101%);
}

/* Propose Poll Card Styles */
.propose-poll {
  text-align: center;
}

.propose-icon {
  margin: 0 auto 16px;
  width: 48px;
  height: 48px;
}

.propose-poll h4 {
  margin-bottom: 8px;
  color: var(--text-dark);
}

.propose-poll p {
  margin-bottom: 20px;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-icon img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(37%) sepia(74%) saturate(1303%) hue-rotate(206deg) brightness(91%) contrast(101%); /* Makes the icon primary color */
}

/* Apply white filter only when inside a filled button */
.nav-buttons .btn-primary .btn-icon img {
  filter: brightness(0) invert(1); /* Makes the icon white */
}

/* Update Survey Card Styles */
.survey-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.time-estimate {
  color: var(--text-gray);
  font-size: 12px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 4px;
}

.time-estimate img {
  width: 14px;
  height: 14px;
}

.survey-card .btn-sm {
  margin: 0; /* Remove any margin if present */
}

/* Remove these styles as they're no longer needed */
.survey-meta {
  display: none;
}

/* Propose Poll Page Styles */
.create-poll {
  margin-top: 0;
  margin-bottom: 24px;
}

.create-poll h2 {
  margin-bottom: 24px;
  font-size: 20px;
}

.create-poll .form-group {
  margin-bottom: 24px;
}

.character-count {
  display: block;
  text-align: right;
  font-size: 12px;
  color: var(--text-gray);
  margin-top: 4px;
}

.poll-preview {
  margin: 32px 0;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.poll-preview h3 {
  margin-bottom: 16px;
  font-size: 18px;
  color: var(--text-gray);
}

.preview-container {
  opacity: 0.8;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 24px;
}

/* Previous Polls Styles */
.previous-polls {
  margin-top: 0;
}

.previous-polls h2 {
  margin-bottom: 24px;
  font-size: 20px;
}

.polls-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.poll-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background-color: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  margin-bottom: 16px;
  position: relative;
}

.poll-header {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.poll-status {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.poll-status.accepted {
  background-color: #dcfce7;
  color: #166534;
}

.poll-status.pending {
  background-color: #fef3c7;
  color: #92400e;
}

.poll-status.rejected {
  background-color: #fee2e2;
  color: #991b1b;
}

.status-icon {
  font-size: 14px;
}

.poll-content {
  flex: 1;
}

.poll-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.poll-stats {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: var(--text-gray);
}

.reason {
  color: #dc2626;
}

/* Update the propose-section styles */
.propose-section {
  padding: 0;
}
/* Update the create-poll card spacing */
.create-poll {
  margin-top: 0;
  margin-bottom: 24px;
}

/* Update the previous-polls card spacing */
.previous-polls {
  margin-top: 0;
}

/* Update main content styles */
.main-content {
  /* overflow-y: auto; */
  padding-bottom: 40px;
  height: 100%;
}

/* Add custom scrollbar styles for better appearance */
.main-content::-webkit-scrollbar {
  width: 8px;
}

.main-content::-webkit-scrollbar-track {
  background: var(--off-white);
}

.main-content::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

.main-content::-webkit-scrollbar-thumb:hover {
  background: var(--text-light);
}

/* Profile Settings Styles */
.profile-settings-section {
  padding: 20px 0px;
}

.settings-header {
  margin-bottom: 12px;
  margin-top: 20px;
}

.settings-header h2 {
  font-size: 24px;
  color: var(--text-dark);
}

.settings-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.settings-card h3 {
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.settings-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: flex;
  gap: 24px;
}

.form-row .form-group {
  flex: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-dark);
}

.form-group input {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 14px;
  width: 100%;
  transition: all 0.2s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 8px;
}

/* Password Section Styles */
.password-input {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--text-gray);
  font-size: 14px;
}

.password-hint {
  font-size: 12px;
  color: var(--text-gray);
  margin-top: 4px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 16px;
  }

  .settings-card {
    padding: 16px;
  }
}

/* Phone Input Styles */
.phone-input-container {
  display: flex;
  gap: 6px;
  align-items: flex-start;
}

.phone-input {
  flex: 1;
}

.phone-input-container .custom-select {
  width: 120px;
  flex-shrink: 0;
  position: relative;
}

.phone-input-container .custom-select select {
  width: 100%;
  height: 40px;
  padding: 8px 12px;
  padding-right: 32px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background-color: var(--white);
  cursor: pointer;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: var(--text-dark);
}

.phone-input-container .custom-select select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.phone-input-container .custom-select::after {
  content: "▼";
  font-size: 12px;
  color: var(--text-gray);
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

#otp-section input {
  letter-spacing: 4px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  height: 40px;
}

#otp-section input::placeholder {
  letter-spacing: 0;
  font-size: 14px;
  font-weight: normal;
}

/* Form Group Spacing */
.form-group {
  margin-bottom: 12px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-dark);
}

/* Custom Select Styles */
.custom-select {
  position: relative;
}

.custom-select select {
  width: 100%;
  height: 36px;
  padding: 8px 12px;
  padding-right: 32px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background-color: var(--white);
  cursor: pointer;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: var(--text-dark);
}

.custom-select select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.custom-select::after {
  content: "▼";
  font-size: 12px;
  color: var(--text-gray);
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Form Options Spacing */
.form-options {
  margin-top: 2px;
}

/* Button Spacing */
.btn-full {
  width: 100%;
  margin-top: 4px;
}

/* Error Text Spacing */
.text-danger {
  margin: 4px 0;
}

/* Login Page Button Styles */
.login-form .btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
}

.login-form .btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.login-form .btn-whatsapp {
  background-color: #25d366;
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  box-shadow: 0 2px 4px rgba(37, 211, 102, 0.1);
}

.login-form .btn-whatsapp:hover {
  background-color: #128c7e;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(37, 211, 102, 0.2);
}

.login-form .whatsapp-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.login-form .btn-full {
  width: 100%;
  height: 36px;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.text-small {
  font-size: 12px;
}

/* Logout Section Styles */
.logout-section {
  margin-top: 24px;
  padding: 0 4px;
}

.logout-section .btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
}

.logout-section .btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.logout-section .btn-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

/* Responsive Styles for Index Page */
@media (max-width: 768px) {
  body {
    padding: 0;
    width: 100%;
    overflow-x: hidden;
  }

  .container {
    padding: 0 24px;
    width: 100%;
    max-width: 100%;
  }

  .hero {
    padding: 40px 0;
  }

  .hero .container {
    padding: 0 24px;
  }

  .hero-content {
    width: 100%;
  }

  .tagline {
    font-size: 14px;
  }

  h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .description {
    font-size: 16px;
    margin-bottom: 24px;
    padding: 0;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .link-text {
    width: 100%;
  }

  /* Section Styles */
  section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .section-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  /* Steps Container */
  .steps-container {
    flex-direction: column;
    gap: 16px;
  }

  .step-card {
    padding: 20px;
  }

  /* Rewards Section */
  .rewards-container {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .reward-card {
    width: 100%;
    max-width: 300px;
  }

  /* Experience Section */
  .experience-container {
    flex-direction: column;
    gap: 16px;
  }

  .experience-card {
    padding: 20px;
  }

  /* Testimonials Section */
  .testimonials-container {
    flex-direction: column;
    gap: 16px;
  }

  .testimonial-card {
    padding: 20px;
  }

  /* CTA Section */
  .cta-section {
    margin: 0;
    border-radius: 0;
    padding: 40px 16px;
  }

  .cta-title {
    font-size: 24px;
  }

  .cta-text {
    font-size: 16px;
    padding: 0 16px;
  }

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

@media (max-width: 576px) {
  .container {
    padding: 0 10px;
  }

  .hero {
    padding: 32px 0;
  }

  .hero .container {
    padding: 0 20px;
  }

  h1 {
    font-size: 28px;
  }

  .description {
    font-size: 14px;
  }

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

  .section-subtitle {
    font-size: 13px;
  }

  .step-card,
  .reward-card,
  .experience-card,
  .testimonial-card {
    padding: 16px;
  }

  .step-icon img,
  .reward-icon img,
  .experience-icon img {
    width: 32px;
    height: 32px;
  }

  .step-number {
    font-size: 36px;
  }

  .step-card h3,
  .reward-card h3,
  .experience-card h3 {
    font-size: 16px;
  }

  .step-card p,
  .reward-card p,
  .experience-card p {
    font-size: 13px;
  }

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

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

  .author-title {
    font-size: 12px;
  }

  .author-stats {
    font-size: 12px;
  }

  .cta-section {
    padding: 32px 12px;
  }

  .cta-title {
    font-size: 20px;
  }

  .cta-text {
    font-size: 14px;
    padding: 0 12px;
  }

  .bonus-text {
    font-size: 12px;
  }
}

/* Footer Responsive Styles */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 24px;
  }

  .footer-logo {
    margin-bottom: 0;
  }

  .footer-tagline {
    font-size: 14px;
  }

  .footer-links {
    flex-direction: column;
    gap: 24px;
  }

  .footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .footer-column ul li a {
    font-size: 14px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}

@media (max-width: 576px) {

  .footer-top {
    gap: 20px;
  }

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

  .footer-column h4 {
    font-size: 15px;
  }

  .footer-column ul li a {
    font-size: 13px;
  }
}

.signup-prompt {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 400;
}

.signup-prompt .link-primary {
  font-weight: 500;
  transition: color 0.2s ease;
}

.signup-prompt .link-primary:hover {
  text-decoration: underline;
}

/* Notification Styles */
.notification-container {
  position: fixed;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 16px;
  pointer-events: none;
  width: 100%;
  max-width: 520px;
  padding: 0 20px;
}

.notification {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.notification.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.notification-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  position: relative;
}

.notification-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  opacity: 0.2;
  background: currentColor;
}

.notification-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.notification-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.4;
}

.notification-message {
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}

.notification-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: currentColor;
  opacity: 0.2;
  transition: width 0.3s linear;
}

.notification-close {
  background: none;
  border: none;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  font-size: 16px;
  opacity: 0.7;
  border-radius: 6px;
}

.notification-close:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--text-dark);
  opacity: 1;
}

/* Notification Types */
.notification.success {
  border: 1px solid rgba(22, 163, 74, 0.2);
  background: linear-gradient(to right, rgba(22, 163, 74, 0.05), rgba(22, 163, 74, 0.01));
}

.notification.success .notification-icon {
  background-color: #dcfce7;
  color: #16a34a;
}

.notification.error {
  border: 1px solid rgba(220, 38, 38, 0.2);
  background: linear-gradient(to right, rgba(220, 38, 38, 0.05), rgba(220, 38, 38, 0.01));
}

.notification.error .notification-icon {
  background-color: #fee2e2;
  color: #dc2626;
}

.notification.info {
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: linear-gradient(to right, rgba(37, 99, 235, 0.05), rgba(37, 99, 235, 0.01));
}

.notification.info .notification-icon {
  background-color: var(--primary-light);
  color: var(--primary-color);
}

/* Responsive Notification Styles */
@media (max-width: 576px) {
  .notification-container {
    top: 16px;
    padding: 0 12px;
  }

  .notification {
    padding: 16px;
  }

  .notification-title {
    font-size: 15px;
  }

  .notification-message {
    font-size: 13px;
  }

  .notification-icon {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
}

#loader {
  display: none; /* Initially hidden */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  color: var(--primary-color-dim);
}

.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrapper input {
  flex: 1;
  padding-right: 40px; /* Make space for the eye icon */
}

.toggle-password {
  position: absolute;
  right: 10px;
  cursor: pointer;
  font-size: 18px;
  color: #777;
}
.toggle-password:hover {
  color: #333;
}

.no-item-feed-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.no-item-feed-card img {
    width: 200px;
    height: auto;
    margin-bottom: 24px;
    opacity: 0.8;
}

.no-item-feed-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.5;
    max-width: 300px;
    margin: 0 auto;
}

@media (max-width: 576px) {
    .no-item-feed-card {
        padding: 32px 16px;
    }

    .no-item-feed-card img {
        width: 160px;
        margin-bottom: 20px;
    }

    .no-item-feed-card p {
        font-size: 14px;
    }
}

/* Special styling for no-items-card-2 with logo */
#no-items-card-2 {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    padding: 100px;
}

#no-items-card-2 img {
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    object-fit: contain;
}

@media (max-width: 768px) {
    #no-items-card-2 {
        background: rgba(255, 255, 255, 0.7);
    }
    
    #no-items-card-2 img {
        max-width: 240px;
    }
}

@media (max-width: 576px) {
    #no-items-card-2 {
        background: rgba(255, 255, 255, 0.8);
    }
    
    #no-items-card-2 img {
        max-width: 200px;
    }
}

/* Social Login Buttons */
.social-login-buttons {
  display: flex;
  gap: 12px;
}

.social-btn {
  flex: 1;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border-color);
  background-color: var(--white);
  transition: all 0.2s ease;
}

.social-btn i {
  font-size: 16px;
}

.social-btn.google-btn {
  color: #DB4437;
  border-color: #DB4437;
}

.social-btn.google-btn:hover {
  background-color: #DB4437;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(219, 68, 55, 0.2);
}

.social-btn.facebook-btn {
  color: #4267B2;
  border-color: #4267B2;
}

.social-btn.facebook-btn:hover {
  background-color: #4267B2;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(66, 103, 178, 0.2);
}

@media (max-width: 576px) {
  .social-login-buttons {
    flex-direction: column;
    gap: 8px;
  }
  
  .social-btn {
    width: 100%;
  }
}

/* Language Select Styles */
#select_language {
  padding: 8px 10px;
  padding-right: 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-dark);
  background-color: #f8f9fa;
  cursor: pointer;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%2364748b" height="24" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 16px;
}

#select_language:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

#select_language:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px var(--primary-light);
}

#select_language option {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px;
}


#login-btn {

  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
}

/* Navigation Text Links */
.nav-text-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.auth-links {
  margin-left: 24px;
}

.nav-text-link {
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-text-link:hover {
  color: var(--primary-color);
}

.nav-text-link.active {
  color: var(--primary-color);
}

.nav-text-link.active::after {
  content: '';
  position: absolute;
  text-decoration: underline;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .nav-text-links {
    gap: 16px;
    margin-right: 16px;
  }

  .page-links {
    display: none!important;
  }
}

@media (max-width: 576px) {
  .nav-text-links {
    gap: 12px;
    margin-right: 12px;
  }
  
  .nav-text-link {
    font-size: 13px;
  }
}

/* About Us Page Styles */
.about-hero {
  padding: 80px 0;
  background-color: var(--white);
}

.about-hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-content {
  flex: 1;
}

.about-content h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: var(--text-dark);
  text-align: left;
}

.about-description {
  color: var(--text-gray);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.about-features {
  padding: 80px 0;
  background-color: var(--off-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 20px;
  color: var(--primary-color);
}

.feature-text {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0px!important;
  margin-top: 7px;
}

@media (max-width: 992px) {
  .about-hero .container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-content h1 {
    text-align: center;
  }

  .about-description {
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 60px 0;
  }

  .about-content h1 {
    font-size: 36px;
  }

  .about-description {
    font-size: 16px;
  }

  .about-features {
    padding: 60px 0;
  }

  .feature-item {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .about-hero {
    padding: 40px 0;
  }

  .about-content h1 {
    font-size: 32px;
  }

  .about-description {
    font-size: 15px;
  }

  .about-features {
    padding: 40px 0;
  }

  .feature-item {
    padding: 16px;
  }

  .feature-icon {
    width: 32px;
    height: 32px;
  }

  .feature-icon i {
    font-size: 16px;
  }

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

/* How It Works Page Styles */
.how-it-works-hero {
  padding: 80px 0;
  background-color: var(--white);
}

.how-it-works-hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.how-it-works-content {
  flex: 1;
}

.how-it-works-content h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: var(--text-dark);
  text-align: left;
}

.how-it-works-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.how-it-works-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.steps-section {
  padding: 80px 0;
  background-color: var(--off-white);
}

.step-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 32px;
  transition: all 0.2s ease;
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.step-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.step-description {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.step-tip {
  background-color: var(--primary-light);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 24px;
}

.step-tip-title {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.step-tip-text {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .how-it-works-hero .container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .how-it-works-content h1 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .how-it-works-hero {
    padding: 60px 0;
  }

  .how-it-works-content h1 {
    font-size: 36px;
  }

  .step-card {
    padding: 32px;
  }

  .step-title {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .how-it-works-hero {
    padding: 40px 0;
  }

  .how-it-works-content h1 {
    font-size: 32px;
  }

  .step-card {
    padding: 24px;
  }

  .step-title {
    font-size: 20px;
  }

  .step-description {
    font-size: 14px;
  }

  .step-tip {
    padding: 12px;
  }
}

/* Rewards Page Styles */
.rewards-hero {
  padding: 80px 0;
  background-color: var(--white);
}

.rewards-hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.rewards-content {
  flex: 1;
  text-align: left;
}

.rewards-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rewards-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.rewards-content h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.rewards-description {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.6;
}

.rewards-prizes {
  padding: 60px 0;
  background-color: var(--off-white);
}

.prizes-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.prizes-section h2 {
  font-size: 32px;
  margin-bottom: 32px;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
}

.prizes-section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.prizes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.prize-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 80px;
}

.prize-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.prize-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.prize-icon i {
  font-size: 20px;
  color: var(--primary-color);
}

.prize-card:hover .prize-icon {
  transform: scale(1.1);
}

.prize-card h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin: 0;
  text-align: left;
}

.prize-note {
  color: var(--text-gray);
  font-size: 14px;
  font-style: italic;
  margin: 0;
}

@media (max-width: 768px) {
  .rewards-prizes {
    padding: 40px 0;
  }

  .prizes-section h2 {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .prizes-grid {
    gap: 16px;
    margin-bottom: 20px;
  }

  .prize-card {
    padding: 16px;
    height: 70px;
  }

  .prize-icon {
    width: 40px;
    height: 40px;
  }

  .prize-icon i {
    font-size: 16px;
  }

  .prize-card h3 {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .rewards-prizes {
    padding: 32px 0;
  }

  .prizes-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .prizes-grid {
    gap: 12px;
    margin-bottom: 16px;
  }

  .prize-card {
    padding: 12px;
    height: 64px;
  }

  .prize-icon {
    width: 36px;
    height: 36px;
  }

  .prize-icon i {
    font-size: 14px;
  }

  .prize-card h3 {
    font-size: 14px;
  }
}

.rewards-how-to {
  padding: 80px 0;
  background-color: var(--white);
}

.how-to-section {
  max-width: 1000px;
  margin: 0 auto;
}

.how-to-section h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.ticket-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.ticket-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.2s ease;
}

.ticket-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ticket-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.ticket-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticket-icon i {
  font-size: 20px;
  color: var(--primary-color);
}

.ticket-card h3 {
  font-size: 20px;
  color: var(--text-dark);
}

.ticket-card p {
  color: var(--text-gray);
  margin-bottom: 16px;
}

.ticket-ways {
  list-style: none;
  padding: 0;
}

.ticket-ways li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-gray);
  margin-bottom: 12px;
}

.ticket-ways li i {
  color: var(--primary-color);
  margin-top: 4px;
}

.rewards-notes {
  padding: 80px 0;
  background-color: var(--off-white);
}

.notes-section {
  max-width: 800px;
  margin: 0 auto;
}

.notes-section h2 {
  font-size: 36px;
  margin-bottom: 32px;
  color: var(--text-dark);
}

.notes-list {
  list-style: none;
  padding: 0;
}

.notes-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--text-gray);
  font-size: 16px;
  margin-bottom: 16px;
  padding-left: 24px;
  position: relative;
}

.notes-list li::before {
  content: "•";
  color: var(--primary-color);
  font-size: 24px;
  position: absolute;
  left: 0;
  top: -4px;
}

.rewards-winners {
  padding: 80px 0;
  background-color: var(--white);
}

.winners-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.winners-section h2 {
  font-size: 36px;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.winners-section p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.terms-link {
  font-size: 16px;
  color: var(--text-gray);
}

.terms-link a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.terms-link a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .ticket-types {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .rewards-hero,
  .rewards-prizes,
  .rewards-how-to,
  .rewards-notes,
  .rewards-winners {
    padding: 60px 0;
  }

  .rewards-content h1,
  .prizes-section h2,
  .how-to-section h2,
  .notes-section h2,
  .winners-section h2 {
    font-size: 32px;
  }

  .rewards-description,
  .section-description {
    font-size: 16px;
  }

  .prizes-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .prize-card {
    padding: 24px;
  }

  .prize-icon {
    width: 48px;
    height: 48px;
  }

  .prize-icon i {
    font-size: 24px;
  }

  .prize-card h3 {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .rewards-hero,
  .rewards-prizes,
  .rewards-how-to,
  .rewards-notes,
  .rewards-winners {
    padding: 40px 0;
  }

  .rewards-content h1,
  .prizes-section h2,
  .how-to-section h2,
  .notes-section h2,
  .winners-section h2 {
    font-size: 28px;
  }

  .rewards-description,
  .section-description {
    font-size: 15px;
  }

  .ticket-card {
    padding: 24px;
  }

  .ticket-header {
    gap: 12px;
  }

  .ticket-icon {
    width: 32px;
    height: 32px;
  }

  .ticket-icon i {
    font-size: 16px;
  }

  .ticket-card h3 {
    font-size: 18px;
  }

  .notes-list li {
    font-size: 14px;
  }
}


.page-title-item{
  color: var(--primary-color)!important;
}

/* Confetti Animation Styles */
.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  opacity: 0;
  animation: fall linear infinite;
}

.confetti:nth-child(2n) {
  background-color: #f59e0b;
}

.confetti:nth-child(3n) {
  background-color: #10b981;
}

.confetti:nth-child(4n) {
  background-color: #ef4444;
}

.confetti:nth-child(5n) {
  background-color: #8b5cf6;
}

@keyframes fall {
  0% {
    transform: translateY(-100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

.login-form .btn-outline-info {
  background-color: transparent;
  color: #0dcaf0;
  border: 1px solid #0dcaf0;
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.login-form .btn-outline-info:hover {
  background-color: #0dcaf0;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(13, 202, 240, 0.2);
}

.login-form .btn-outline-info i {
  color: inherit;
}

.login-form .btn-outline-warning {
  background-color: transparent;
  color: #ffc107;
  border: 1px solid #ffc107;
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.login-form .btn-outline-warning:hover {
  background-color: #ffc107;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(255, 193, 7, 0.2);
}

.login-form .btn-outline-warning i {
  color: inherit;
}

/* Quick Points Row Styles */
.quick-points-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
  transition: all 0.3s ease;
}

.quick-points-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

.points-display {
  display: flex;
  align-items: center;
  gap: 8px;
}

.points-display img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.points-amount {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 4px;
}

.points-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.btn-redeem {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 10px 16px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-redeem:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}

.btn-redeem img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.btn-redeem span {
  white-space: nowrap;
}

/* Responsive styles for quick points row */
@media (max-width: 768px) {
  .quick-points-row {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px;
  }
  
  .points-display {
    justify-content: center;
  }
  
  .btn-redeem {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .quick-points-row {
    margin-bottom: 16px;
    padding: 16px;
  }
  
  .points-amount {
    font-size: 20px;
  }
  
  .points-label {
    font-size: 12px;
  }
  
  .btn-redeem {
    padding: 8px 12px;
    font-size: 13px;
  }
}

/* Redeem Page Styles */
.redeem-header {
  text-align: center;
  margin-bottom: 30px;
}

.redeem-header h2 {
  color: #333;
  margin-bottom: 10px;
  font-size: 28px;
}

.redeem-header p {
  color: #666;
  font-size: 16px;
}

.redeem-content {
  max-width: 800px;
  margin: 0 auto;
}

.points-summary {
  margin-bottom: 30px;
}

.points-card {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.points-card img {
  width: 50px;
  height: 50px;
  margin-right: 20px;
  filter: brightness(0) invert(1);
}

.points-info h3 {
  color: #fff;
  margin: 0 0 5px 0;
  font-size: 18px;
  font-weight: 600;
}

.points-amount {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}

.redeem-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  border: 2px solid #e8e8e8;
}

.redeem-card-header {
  text-align: center;
  margin-bottom: 25px;
}

.redeem-card-header h3 {
  color: #333;
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: 600;
}

.redeem-card-header p {
  color: #666;
  margin: 0;
  font-size: 14px;
}

.redeem-form .form-group {
  margin-bottom: 20px;
}

.redeem-form label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
  font-size: 14px;
}

.redeem-form input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.redeem-form .phone-input-container {
  display: flex;
  gap: 10px;
  align-items: center;
}

.redeem-form .phone-input-container .custom-select {
  flex-shrink: 0;
  width: 80px;
}

.redeem-form .phone-input-container .custom-select select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  font-size: 14px;
  background-color: #f8f9fa;
  color: #666;
  cursor: not-allowed;
}

.redeem-form .phone-input-container input {
  flex: 1;
}

.redeem-form input:focus {
  outline: none;
  border-color: #ff6b35;
}

.form-hint {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  font-size: 12px;
  color: #666;
}

.form-hint .text-danger {
  color: #dc3545;
}

.calculation-display {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  border: 2px solid #e8e8e8;
  border-left: 4px solid #ff6b35;
}

.calc-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 0;
}

.calc-item:last-child {
  margin-bottom: 0;
  border-top: 1px solid #e8e8e8;
  padding-top: 15px;
  margin-top: 15px;
}

.calc-item.total {
  font-weight: 700;
  font-size: 16px;
  color: #ff6b35;
}

.calc-label {
  color: #666;
  font-size: 14px;
}

.calc-value {
  color: #333;
  font-weight: 600;
  font-size: 14px;
}

.calc-item.total .calc-value {
  color: #ff6b35;
  font-size: 18px;
}

.form-actions {
  text-align: center;
  margin-top: 25px;
}

.btn-redeem-submit {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  border: none;
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-redeem-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  color: #fff;
}

.btn-redeem-submit:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  color: #666;
}

.btn-redeem-submit:disabled:hover {
  color: #666;
}

.btn-redeem-submit img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.redeem-history {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  border: 2px solid #e8e8e8;
}

.history-header {
  text-align: center;
  margin-bottom: 25px;
}

.history-header h3 {
  color: #333;
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: 600;
}

.history-header p {
  color: #666;
  margin: 0;
  font-size: 14px;
}

.history-list {
  max-height: 400px;
  overflow-y: auto;
}

.history-item {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  border: 2px solid #e8e8e8;
  border-left: 4px solid #ff6b35;
  transition: transform 0.2s ease;
}

.history-item:hover {
  transform: translateX(5px);
}

.history-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.history-amount {
  display: flex;
  flex-direction: column;
}

.amount-value {
  font-size: 18px;
  font-weight: 700;
  color: #ff6b35;
}

.amount-type {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  font-weight: 600;
}

.history-date {
  font-size: 12px;
  color: #999;
}

.history-details {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #666;
}

.rate-info, .value-info {
  background: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
}

.no-history {
  text-align: center;
  color: #666;
  font-style: italic;
  padding: 40px 20px;
}

/* Notification container for redeem page */
.notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  max-width: 400px;
}

.notification {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  border-left: 4px solid #ff6b35;
}

.notification.show {
  transform: translateX(0);
}

.notification.success {
  border-left-color: #28a745;
}

.notification.error {
  border-left-color: #dc3545;
}

.notification-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-icon img {
  width: 20px;
  height: 20px;
}

.notification-content {
  flex: 1;
}

.notification-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
  color: #333;
}

.notification-message {
  font-size: 12px;
  color: #666;
}

.notification-close {
  background: none;
  border: none;
  font-size: 18px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-close:hover {
  color: #333;
}

@media (max-width: 768px) {
  .redeem-card {
    padding: 20px;
  }
  
  .redeem-history {
    padding: 20px;
  }
  
  .history-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .history-details {
    flex-direction: column;
    gap: 5px;
  }
  
  .calculation-display {
    padding: 15px;
  }
  
  .calc-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  /* Hide sidebars on redeem page for mobile */
  .three-column-layout .left-sidebar,
  .three-column-layout .right-sidebar {
    display: none;
  }
  
  .three-column-layout .main-content {
    width: 100%;
    margin: 0;
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .redeem-header h2 {
    font-size: 24px;
  }
  
  .redeem-card-header h3 {
    font-size: 20px;
  }
  
  .history-header h3 {
    font-size: 20px;
  }
  
  .points-card {
    padding: 20px;
  }
  
  .points-card img {
    width: 40px;
    height: 40px;
  }
  
  .points-amount {
    font-size: 28px;
  }
  
  .btn-redeem-submit {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Password Form Error Messages */
.error-message {
  color: #dc2626;
  font-size: 13px;
  margin-top: 4px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: #fee2e2;
  border: 1px solid #fecaca;
  display: none;
}

.error-message.error {
  color: #dc2626;
  background-color: #fee2e2;
  border-color: #fecaca;
}

.password-update-message {
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  display: none;
}

.password-update-message.success {
  color: #16a34a;
  background-color: #dcfce7;
  border: 1px solid #bbf7d0;
}

.password-update-message.error {
  color: #dc2626;
  background-color: #fee2e2;
  border: 1px solid #fecaca;
}

.notification.error .notification-icon {
  background-color: #fee2e2;
  color: #dc2626;
}

/* Password Accordion Styles */
.password-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.password-accordion-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

#toggle_password_form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 2px solid var(--primary-color);
  background-color: var(--white);
  color: var(--primary-color);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#toggle_password_form:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.password-toggle-btn {
  position: relative;
  overflow: hidden;
}

.password-toggle-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;
}

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

.toggle-icon {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.password-accordion-content {
  padding-top: 20px;
}

/* Mobile Profile Responsive Styles */
@media (max-width: 768px) {
  .settings-card h3 {
    font-size: 16px;
  }
  
  .form-group label {
    font-size: 13px;
  }
  
  .form-group input {
    font-size: 14px;
    padding: 8px 12px;
  }
  
  .password-hint {
    font-size: 12px;
  }
  
  .btn-primary {
    font-size: 14px;
    padding: 10px 16px;
  }
  
  .btn-secondary {
    font-size: 13px;
    padding: 8px 14px;
  }
  
  .password-accordion-header h3 {
    font-size: 16px;
  }
  
  #toggle_password_form {
    font-size: 13px;
    padding: 8px 14px;
  }
  
  .settings-header h2 {
    font-size: 20px;
  }
  
  .quick-points-row {
    padding: 12px 16px;
  }
  
  .points-amount {
    font-size: 18px;
  }
  
  .points-label {
    font-size: 12px;
  }
  
  .btn-redeem {
    font-size: 13px;
    padding: 8px 12px;
  }
}

@media (max-width: 576px) {
  .settings-card h3 {
    font-size: 15px;
  }
  
  .form-group label {
    font-size: 12px;
  }
  
  .form-group input {
    font-size: 13px;
    padding: 6px 10px;
  }
  
  .password-hint {
    font-size: 11px;
  }
  
  .btn-primary {
    font-size: 13px;
    padding: 8px 14px;
  }
  
  .btn-secondary {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .password-accordion-header h3 {
    font-size: 15px;
  }
  
  #toggle_password_form {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .settings-header h2 {
    font-size: 18px;
  }
  
  .quick-points-row {
    padding: 10px 12px;
  }
  
  .points-amount {
    font-size: 16px;
  }
  
  .points-label {
    font-size: 11px;
  }
  
  .btn-redeem {
    font-size: 12px;
    padding: 6px 10px;
  }
  
  .form-row {
    flex-direction: row;
    gap: 12px;
  }
  
  .form-row .form-group {
    width: 48%;
    margin-bottom: 12px;
  }
  
  .password-accordion-header {
    gap: 12px;
    align-items: center;
  }
  
  #toggle_password_form {
    align-self: flex-end;
  }
}

/* Recent Completions Styles */
.completions-tabs {
  margin-top: 20px;
}

.tab-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
}

.tab-btn img {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

.tab-btn.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.tab-btn.active img {
  opacity: 1;
}

.tab-btn:hover {
  color: var(--primary-color);
}

.tab-content {
  position: relative;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.completion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.completion-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background-color: var(--off-white);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.completion-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.completion-info {
  flex: 1;
}

.completion-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.quest-question {
  font-size: 14px;
  color: var(--text-light);
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.completion-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.completion-meta span {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
}

.completion-meta .points {
  background-color: #dcfce7;
  color: #166534;
}

.completion-meta .tickets {
  background-color: #dbeafe;
  color: #1e40af;
}

.completion-meta .date {
  background-color: var(--border-color);
  color: var(--text-light);
}

.completion-type {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.completion-type img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-light);
}

.empty-state img {
  width: 48px;
  height: 48px;
  opacity: 0.4;
  margin-bottom: 16px;
}

.empty-state p {
  font-size: 14px;
  margin: 0;
}

/* Mobile Responsive for Completions */
@media (max-width: 768px) {
  .tab-buttons {
    gap: 4px;
  }
  
  .tab-btn {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .tab-btn img {
    width: 14px;
    height: 14px;
  }
  
  .completion-item {
    padding: 12px;
    gap: 12px;
  }
  
  .completion-info h4 {
    font-size: 15px;
  }
  
  .quest-question {
    font-size: 13px;
  }
  
  .completion-meta {
    gap: 8px;
  }
  
  .completion-meta span {
    font-size: 11px;
    padding: 3px 6px;
  }
  
  .completion-type {
    width: 36px;
    height: 36px;
  }
  
  .completion-type img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 576px) {
  .tab-buttons {
    flex-direction: row;
    gap: 4px;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  
  .tab-btn {
    justify-content: center;
    padding: 8px 12px;
    white-space: nowrap;
    min-width: auto;
    flex-shrink: 0;
  }
  
  .completion-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .completion-type {
    align-self: flex-end;
  }
  
  .completion-meta {
    flex-direction: column;
    gap: 4px;
  }
}

.poll-stats {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: var(--text-light);
}

.poll-stats .participants {
  color: var(--primary-color);
  font-weight: 500;
}

.poll-results {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.poll-results h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 12px 0;
}

.answer-results {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.answer-result {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.answer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.answer-text {
  font-weight: 500;
  color: var(--text-dark);
}

.answer-votes {
  color: var(--text-light);
  font-size: 12px;
}

.answer-bar {
  height: 8px;
  background-color: var(--border-color);
  border-radius: 4px;
  overflow: hidden;
}

.answer-progress {
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* Mobile responsive for poll results */
@media (max-width: 768px) {
  .poll-stats {
    flex-direction: column;
    gap: 8px;
  }
  
  .answer-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .poll-results {
    margin-top: 12px;
    padding-top: 12px;
  }
}

/* Profile Completion Alert */
.profile-completion-alert {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  color: white;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.alert-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.alert-content img {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
}

.alert-text h4 {
  margin: 0 0 4px 0;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.alert-text p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
  color: white;
}

@media (max-width: 768px) {
  .profile-completion-alert {
    padding: 16px;
    margin-bottom: 20px;
  }
  
  .alert-content {
    gap: 12px;
  }
  
  .alert-content img {
    width: 40px;
    height: 40px;
  }
  
  .alert-text h4 {
    font-size: 16px;
  }
  
  .alert-text p {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .profile-completion-alert {
    padding: 12px;
    margin-bottom: 16px;
  }
  
  .alert-content {
    gap: 10px;
  }
  
  .alert-content img {
    width: 36px;
    height: 36px;
  }
  
  .alert-text h4 {
    font-size: 15px;
  }
  
  .alert-text p {
    font-size: 12px;
  }
}

/* Profile Bonus Modal */
.profile-bonus-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.profile-bonus-modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 32px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.profile-bonus-modal.show .modal-content {
  transform: scale(1);
}

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

.bonus-header img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.bonus-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.bonus-message {
  margin-bottom: 32px;
}

.bonus-message p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.bonus-message strong {
  color: var(--primary-color);
  font-weight: 600;
}

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

.bonus-actions button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  min-width: 140px;
}

.bonus-actions button img {
  width: 16px;
  height: 16px;
}

.bonus-actions .btn-primary img {
  filter: brightness(0) invert(1);
}

.bonus-actions .btn-secondary img {
  filter: none;
}

.bonus-actions .btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.bonus-actions .btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.bonus-actions .btn-secondary {
  background-color: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--border-color);
}

.bonus-actions .btn-secondary:hover {
  background-color: var(--border-color);
  transform: translateY(-2px);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-light);
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background-color: var(--border-color);
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .modal-content {
    padding: 24px;
    margin: 20px;
  }
  
  .bonus-header h3 {
    font-size: 20px;
  }
  
  .bonus-message p {
    font-size: 14px;
  }
  
  .bonus-actions {
    flex-direction: column;
  }
  
  .bonus-actions button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .modal-content {
    padding: 20px;
    margin: 16px;
  }
  
  .bonus-header img {
    width: 48px;
    height: 48px;
  }
  
  .bonus-header h3 {
    font-size: 18px;
  }
  
  .bonus-message p {
    font-size: 13px;
  }
  
  .bonus-actions button {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* Points Update Animation */
.points-updated {
  animation: pointsUpdate 2s ease-in-out;
}

@keyframes pointsUpdate {
  0% {
    transform: scale(1);
    color: var(--text-dark);
  }
  25% {
    transform: scale(1.1);
    color: var(--primary-color);
  }
  50% {
    transform: scale(1.05);
    color: var(--primary-color);
  }
  75% {
    transform: scale(1.1);
    color: var(--primary-color);
  }
  100% {
    transform: scale(1);
    color: var(--text-dark);
  }
}

/* Modal Open State */
body.modal-open {
    overflow: hidden;
}

/* Maintenance Page Styles */
.maintenance-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.maintenance-content {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.maintenance-icon {
    margin-bottom: 30px;
}

.maintenance-icon img {
    width: 80px;
    height: 80px;
    opacity: 0.8;
}

.maintenance-title {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.2;
}

.maintenance-description {
    font-size: 16px;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 40px;
}

.maintenance-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.maintenance-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.maintenance-stats .stat-icon {
    width: 40px;
    height: 40px;
    background: #f7fafc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maintenance-stats .stat-icon img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.maintenance-stats .stat-info {
    text-align: left;
}

.maintenance-stats .stat-value {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    line-height: 1;
}

.maintenance-stats .stat-label {
    font-size: 12px;
    color: #a0aec0;
    margin-top: 2px;
}

.maintenance-progress {
    margin-bottom: 40px;
}

.maintenance-progress .progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.maintenance-progress .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 4px;
    width: 0%;
    transition: width 0.5s ease;
}

.maintenance-progress .progress-text {
    font-size: 14px;
    color: #718096;
    font-style: italic;
}



.maintenance-note {
    padding: 20px;
    background: #f7fafc;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.maintenance-note p {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 8px;
}

.contact-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #5a67d8;
}

/* Responsive Design for Maintenance Page */
@media (max-width: 768px) {
    .maintenance-content {
        padding: 40px 30px;
    }
    
    .maintenance-title {
        font-size: 28px;
    }
    
    .maintenance-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .maintenance-stats .stat-item {
        justify-content: center;
    }
    

}

@media (max-width: 576px) {
    .maintenance-container {
        padding: 15px;
    }
    
    .maintenance-content {
        padding: 30px 20px;
    }
    
    .maintenance-title {
        font-size: 24px;
    }
    
    .maintenance-description {
        font-size: 14px;
    }
    
    .maintenance-stats .stat-value {
        font-size: 16px;
    }
    
    .maintenance-stats .stat-label {
        font-size: 11px;
    }
}

/* Go to Surveys Section Styles */
.go-to-surveys-section {
    margin-bottom: 10px;
}

.surveys-cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.surveys-cta-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.3);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 16px;
}



.cta-text h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}

.cta-text p {
    font-size: 14px;
    color: white;
    opacity: 0.9;
    margin: 0;
}

.btn-surveys {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-surveys:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-surveys img {
    width: 16px;
    height: 16px;
    opacity: 0.9;
}

/* Responsive Design for Go to Surveys Section */
@media (max-width: 768px) {
    .surveys-cta-card {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 16px 20px;
    }
    
    .cta-content {
        justify-content: center;
    }
    
    .cta-text h4 {
        font-size: 18px;
    }
    
    .cta-text p {
        font-size: 13px;
    }
    
    .btn-surveys {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .surveys-cta-card {
        padding: 8px 12px;
        justify-content: center;
    }
    
    .cta-content {
        display: none;
    }
    
    .btn-surveys {
        width: auto;
        margin: 0 auto;
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .btn-surveys img {
        width: 12px;
        height: 12px;
    }
}

/* Redeem Success Message */
.redeem-success-message {
    margin-top: 20px;
    padding: 16px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    color: white;
    animation: slideInUp 0.5s ease-out;
}

.success-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.success-content img {
    width: 32px;
    height: 32px;
    opacity: 0.9;
}

.success-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}

.success-text p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

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

/* Responsive Design for Success Message */
@media (max-width: 768px) {
    .redeem-success-message {
        padding: 14px;
    }
    
    .success-content img {
        width: 28px;
        height: 28px;
    }
    
    .success-text h4 {
        font-size: 15px;
    }
    
    .success-text p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .redeem-success-message {
        padding: 12px;
    }
    
    .success-content img {
        width: 24px;
        height: 24px;
    }
    
    .success-text h4 {
        font-size: 14px;
    }
    
    .success-text p {
        font-size: 12px;
    }
}

/* Redeem Error Alert */
.redeem-error-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-width: 400px;
    width: 90%;
    animation: slideInDown 0.4s ease-out;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.error-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    position: relative;
}

.error-content img {
    width: 48px;
    height: 48px;
    opacity: 0.8;
    flex-shrink: 0;
}

.error-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #991b1b;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.025em;
}

.error-text p {
    font-size: 14px;
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
}

.error-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 24px;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
}

.error-close-btn:hover {
    color: #6b7280;
    background: rgba(243, 244, 246, 0.8);
}

/* Overlay */
.redeem-error-alert::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Responsive Design for Error Alert */
@media (max-width: 768px) {
    .redeem-error-alert {
        width: 95%;
        max-width: 350px;
    }
    
    .error-content {
        padding: 20px;
    }
    
    .error-content img {
        width: 40px;
        height: 40px;
    }
    
    .error-text h4 {
        font-size: 16px;
    }
    
    .error-text p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .redeem-error-alert {
        width: 98%;
        max-width: 300px;
    }
    
    .error-content {
        padding: 16px;
        gap: 12px;
    }
    
    .error-content img {
        width: 36px;
        height: 36px;
    }
    
    .error-text h4 {
        font-size: 15px;
    }
    
    .error-text p {
        font-size: 12px;
    }
}

/* Payment Type Radio Buttons */
.payment-type-options {
    display: flex;
    gap: 24px;
    margin-top: 8px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
}

.radio-option:hover .radio-label {
    color: #667eea;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    position: relative;
    background: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-width: 20px;
    min-height: 20px;
}

.radio-option:hover .radio-custom {
    border-color: #667eea;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: #667eea;
    background: #667eea;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.radio-option input[type="radio"]:checked ~ .radio-label {
    color: #667eea;
    font-weight: 600;
}

.radio-label {
    font-size: 14px;
    color: #4a5568;
    transition: color 0.3s ease;
    font-weight: 500;
}

/* Responsive Design for Payment Type */
@media (max-width: 768px) {
    .payment-type-options {
        gap: 20px;
    }
    
    .radio-label {
        font-size: 13px;
    }
    
    .radio-custom {
        width: 18px;
        height: 18px;
        min-width: 18px;
        min-height: 18px;
    }
    
    .radio-option input[type="radio"]:checked + .radio-custom::after {
        width: 7px;
        height: 7px;
    }
}

@media (max-width: 576px) {
    .payment-type-options {
        flex-direction: column;
        gap: 16px;
    }
    
    .radio-option {
        padding: 6px 0;
    }
    
    .radio-label {
        font-size: 14px;
    }
    
    .radio-custom {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
    }
    
    .radio-option input[type="radio"]:checked + .radio-custom::after {
        width: 8px;
        height: 8px;
    }
}

/* Support Line Styles */
.support-line {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

.support-link-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.support-link-inline:hover {
  color: #25d366;
  text-decoration: none;
}

.support-link-inline img {
  width: 18px;
  height: 18px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.support-link-inline:hover img {
  opacity: 1;
}

@media (max-width: 768px) {
  .support-line {
    margin-top: 15px;
    padding-top: 15px;
  }
  
  .support-link-inline {
    font-size: 13px;
  }
  
  .support-link-inline img {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 576px) {
  .support-line {
    margin-top: 12px;
    padding-top: 12px;
  }
  
  .support-link-inline {
    font-size: 12px;
  }
  
  .support-link-inline img {
    width: 15px;
    height: 15px;
  }
}




