/* content.css */
.wyz-main-content {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
  min-height: 60vh;
}

.wyz-subscription-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.wyz-subscription-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.wyz-subscription-hero-content {
  position: relative;
  z-index: 1;
}

/* Subscription Pages */
.wyz-page-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2c3e50, #359756);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: -1px;
  position: relative;
}

.wyz-page-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #359756, #2d7a47);
  border-radius: 2px;
}

.wyz-alert {
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wyz-alert-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.wyz-alert-error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.wyz-alert-warning {
  background-color: #fff3cd;
  border: 1px solid #ffeaa7;
  color: #856404;
}

.wyz-alert-icon {
  font-weight: bold;
  font-size: 1.2rem;
}

.wyz-subscription-card {
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.wyz-subscription-active {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
}

.wyz-subscription-canceled {
  background-color: #fff3cd;
  border: 1px solid #ffeaa7;
}

.wyz-subscription-inactive {
  background-color: #cce7ff;
  border: 1px solid #99d3ff;
}

.wyz-subscription-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.wyz-subscription-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.5rem;
}

.wyz-subscription-icon-success {
  background-color: #c3e6cb;
  color: #155724;
}

.wyz-subscription-icon-warning {
  background-color: #ffeaa7;
  color: #856404;
}

.wyz-subscription-icon-info {
  background-color: #99d3ff;
  color: #004085;
}

.wyz-subscription-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.wyz-subscription-subtitle {
  color: #666;
  font-size: 0.9rem;
}

.wyz-subscription-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.wyz-subscription-detail {
  display: flex;
  flex-direction: column;
}

.wyz-subscription-detail-label {
  font-weight: 600;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.wyz-subscription-detail-value {
  font-size: 1.1rem;
  color: #333;
}

.wyz-subscription-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.wyz-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.wyz-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;
}

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

.wyz-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.wyz-btn-primary {
  background: linear-gradient(135deg, #359756, #2d7a47);
  color: white;
  box-shadow: 0 4px 15px rgba(53, 151, 86, 0.3);
}

.wyz-btn-primary:hover {
  background: linear-gradient(135deg, #2d7a47, #256b3a);
  box-shadow: 0 8px 25px rgba(53, 151, 86, 0.4);
}

.wyz-btn-secondary {
  background: linear-gradient(135deg, #6c757d, #545b62);
  color: white;
  box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.wyz-btn-secondary:hover {
  background: linear-gradient(135deg, #545b62, #495057);
  box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
}

.wyz-btn-success {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.wyz-btn-success:hover {
  background: linear-gradient(135deg, #20c997, #17a2b8);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.wyz-btn-warning {
  background: linear-gradient(135deg, #ffc107, #fd7e14);
  color: #212529;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.wyz-btn-warning:hover {
  background: linear-gradient(135deg, #fd7e14, #e83e8c);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.wyz-btn-danger {
  background: linear-gradient(135deg, #dc3545, #e83e8c);
  color: white;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.wyz-btn-danger:hover {
  background: linear-gradient(135deg, #e83e8c, #6f42c1);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.wyz-btn-outline {
  background: transparent;
  border: 2px solid #359756;
  color: #359756;
  position: relative;
  overflow: hidden;
}

.wyz-btn-outline::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #359756, #2d7a47);
  transition: width 0.3s ease;
  z-index: -1;
}

.wyz-btn-outline:hover {
  color: white;
  border-color: #359756;
  box-shadow: 0 8px 25px rgba(53, 151, 86, 0.3);
}

.wyz-btn-outline:hover::after {
  width: 100%;
}

.wyz-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.wyz-feature-card {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 5px;
  border: 1px solid #e9ecef;
}

.wyz-feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.wyz-feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.wyz-feature-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

.wyz-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.wyz-pricing-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1), 0 1px 6px rgba(0,0,0,0.05);
  padding: 1.5rem 1.25rem;
  position: relative;
  border: 1px solid rgba(53, 151, 86, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.wyz-pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #359756, #2d7a47);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wyz-pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 5px 15px rgba(0,0,0,0.1);
}

.wyz-pricing-card:hover::before {
  opacity: 1;
}

.wyz-pricing-card-popular {
  border: 2px solid #359756;
  transform: scale(1.05);
  background: linear-gradient(145deg, #f0f9f0 0%, #ffffff 100%);
}

.wyz-pricing-card-popular::before {
  opacity: 1;
  background: linear-gradient(90deg, #359756, #2d7a47, #359756);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.wyz-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #359756, #2d7a47);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(53, 151, 86, 0.3);
}

.wyz-pricing-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.75rem;
  text-align: center;
  letter-spacing: -0.5px;
}

.wyz-pricing-price {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #359756, #2d7a47);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 0.25rem;
  line-height: 1;
}

.wyz-pricing-period {
  color: #7f8c8d;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.wyz-pricing-savings {
  text-align: center;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border-radius: 8px;
  border: 1px solid #c3e6cb;
}

.wyz-pricing-savings .old-price {
  text-decoration: line-through;
  color: #6c757d;
  font-size: 1rem;
  font-weight: 500;
}

.wyz-pricing-savings .savings {
  color: #155724;
  font-weight: 700;
  margin-left: 0.5rem;
  font-size: 1rem;
}

.wyz-pricing-description {
  color: #6c757d;
  text-align: center;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.wyz-pricing-cta {
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
}

.wyz-form-group {
  margin-bottom: 1.5rem;
}

.wyz-form-label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.wyz-form-input,
.wyz-form-select,
.wyz-form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  background-color: white;
}

.wyz-form-input:focus,
.wyz-form-select:focus,
.wyz-form-textarea:focus {
  outline: none;
  border-color: #359756;
  box-shadow: 0 0 0 2px rgba(53, 151, 86, 0.2);
}

.wyz-form-checkbox {
  margin-right: 0.5rem;
}

.wyz-form-checkbox-label {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.wyz-form-checkbox-label a {
  color: #359756;
  text-decoration: none;
}

.wyz-form-checkbox-label a:hover {
  text-decoration: underline;
}

.wyz-summary-card {
  background-color: #f8f9fa;
  border-radius: 5px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.wyz-summary-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.wyz-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.wyz-summary-label {
  color: #666;
}

.wyz-summary-value {
  font-weight: 600;
  color: #333;
}

.wyz-summary-total {
  border-top: 1px solid #ddd;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  font-size: 1.1rem;
  font-weight: bold;
}

.wyz-security-notice {
  background-color: #cce7ff;
  border: 1px solid #99d3ff;
  border-radius: 5px;
  padding: 1rem;
  margin-top: 2rem;
}

.wyz-security-notice-title {
  font-weight: 600;
  color: #004085;
  margin-bottom: 0.5rem;
}

.wyz-security-notice-text {
  color: #004085;
  font-size: 0.9rem;
  line-height: 1.4;
}

.wyz-faq-section {
  background-color: #f8f9fa;
  border-radius: 5px;
  padding: 2rem;
  margin-top: 2rem;
}

.wyz-faq-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1.5rem;
  text-align: center;
}

.wyz-faq-item {
  margin-bottom: 1.5rem;
}

.wyz-faq-question {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.wyz-faq-answer {
  color: #666;
  line-height: 1.5;
}

.wyz-history-item {
  border: 1px solid #e9ecef;
  border-radius: 5px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.wyz-history-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.wyz-history-info {
  display: flex;
  align-items: center;
}

.wyz-history-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: #666;
}

.wyz-history-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
}

.wyz-history-date {
  color: #666;
  font-size: 0.9rem;
}

.wyz-history-status {
  text-align: right;
}

.wyz-status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.wyz-status-active {
  background-color: #d4edda;
  color: #155724;
}

.wyz-status-canceled {
  background-color: #f8d7da;
  color: #721c24;
}

.wyz-status-expired {
  background-color: #e2e3e5;
  color: #383d41;
}

.wyz-status-pending {
  background-color: #fff3cd;
  color: #856404;
}

.wyz-history-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.wyz-history-detail {
  display: flex;
  flex-direction: column;
}

.wyz-history-detail-label {
  font-weight: 600;
  color: #666;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

.wyz-history-detail-value {
  color: #333;
  font-size: 0.9rem;
}

.wyz-history-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.wyz-history-id {
  color: #666;
  font-size: 0.8rem;
}

.wyz-history-actions {
  display: flex;
  gap: 0.5rem;
}

.wyz-history-actions a {
  color: #359756;
  text-decoration: none;
  font-size: 0.9rem;
}

.wyz-history-actions a:hover {
  text-decoration: underline;
}

.wyz-summary-stats {
  background-color: #f8f9fa;
  border-radius: 5px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.wyz-summary-stats-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.wyz-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

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

.wyz-stat-value {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.25rem;
}

.wyz-stat-label {
  color: #666;
  font-size: 0.9rem;
}

/* Feature Cards Hover Effects */
.wyz-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* New Pricing Layout System */
.u-clearfix:after, .u-clearfix:before {
  content: '';
  display: table;
}

.u-clearfix:after {
  clear: both;
}

.u-expanded-width {
  width: 100% !important;
}

.u-expanded-width:not(.custom-expanded) {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.u-layout-wrap {
  margin-top: 30px;
  margin-bottom: 42px;
}

.u-layout {
  margin: -15px;
}

.u-layout .u-layout-cell {
  border: 15px solid transparent;
}

.u-layout-row, .u-layout-row > * {
  display: flex;
}

.u-layout-row {
  flex: 1 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  min-height: fit-content;
  max-width: 100%;
}

.u-layout-row > * {
  max-height: 100%;
  min-height: fit-content;
}

.u-layout-cell {
  position: relative;
  display: flex;
  background-clip: padding-box;
  background-origin: padding-box;
}

.u-layout-row > .u-size-20 {
  flex: 0 0 25%;
  max-width: 25%;
  min-width: 25%;
}

.u-container-layout {
  position: relative;
  flex: 1;
  max-width: 100%;
  transition-duration: inherit;
}

.u-container-layout > * {
  position: relative;
}

.u-valign-top {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.u-valign-top > * {
  flex-shrink: 0;
}

.u-align-left {
  text-align: left;
}

.u-text {
  word-wrap: break-word;
  position: relative;
}

.u-text-default {
  display: table;
  align-self: flex-start;
  width: fit-content;
}

.u-text-default:empty {
  display: block;
  width: 15px;
}

.u-btn {
  display: table;
  cursor: pointer;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  font-style: inherit;
  font-weight: inherit;
  text-decoration: none;
  border: 0 none transparent;
  outline-width: 0;
  background-color: transparent;
  margin: 0;
  white-space: nowrap;
  user-select: none;
  vertical-align: middle;
  text-align: center;
  padding: 10px 30px;
  border-radius: 0;
}

.u-btn:focus, .u-btn:active:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.u-btn:hover, .u-btn:focus {
  text-decoration: none;
}

.u-btn:active {
  outline: 0;
  background-image: none;
}

.u-border-none {
  border-width: 0 !important;
}

.u-radius-8 {
  border-radius: 8px !important;
}

.u-radius-15 {
  border-radius: 15px !important;
}

.u-radius-31 {
  border-radius: 31px !important;
}

.u-palette-2-base, .u-palette-2-base > .u-container-layout:before {
  color: #ffffff;
  background-color: #359756;
}

.u-button-style.u-palette-2-base {
  color: #ffffff !important;
  background-color: #359756 !important;
}

.u-button-style.u-palette-2-base:hover {
  color: #ffffff !important;
  background-color: #30884d !important;
}

.u-palette-3-base {
  color: #111111;
  background-color: #f1c50e;
}

.u-button-style.u-palette-3-base {
  color: #111111 !important;
  background-color: #f1c50e !important;
}

.u-button-style.u-palette-3-base:hover {
  color: #111111 !important;
  background-color: #d9b10d !important;
}

.u-white, .u-white > .u-container-layout:before {
  color: #111111;
  background-color: #ffffff;
}

.u-button-style.u-white {
  color: #111111 !important;
  background-color: #ffffff !important;
}

.u-button-style.u-white:hover {
  color: #111111 !important;
  background-color: #e6e6e6 !important;
}

.u-text-palette-2-base {
  color: #359756 !important;
}

.u-text-white {
  color: #ffffff !important;
}

.u-text-body-alt-color {
  color: #ffffff !important;
}

.u-hover-palette-2-light-3:hover {
  color: #111111 !important;
  background-color: #edfbf2 !important;
}

.u-hover-palette-3-light-1:hover {
  color: #111111 !important;
  background-color: #f5d654 !important;
}

.u-hover-black:hover {
  color: #ffffff !important;
  background-color: #000000 !important;
}

.u-icon {
  display: block;
  line-height: 0;
  border-width: 0px;
}

.u-svg-content {
  width: 0;
  height: 0;
}

.u-btn .u-icon {
  position: relative;
  display: inline;
  line-height: inherit;
  font-size: 1em;
  fill: currentColor;
  vertical-align: middle;
  white-space: nowrap;
}

.u-btn .u-icon > svg {
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  vertical-align: -0.15em;
}

.u-font-montserrat {
  font-family: 'Montserrat', sans-serif !important;
}

/* Specific layout cell styles */
.u-layout-cell-4 {
  min-height: 441px;
}

.u-container-layout-4 {
  padding: 30px;
}

.u-text-5 {
  font-size: 1.5rem;
  margin: 0 auto 0 0;
}

.u-text-6 {
  font-weight: 700;
  font-size: 3.75rem;
  margin: 40px auto 0 0;
}

.u-btn-1 {
  background-image: none;
  font-weight: 700;
  font-size: 1.125rem;
  margin: 50px auto 0 0;
  padding: 14px 31px 16px 30px;
}

.u-text-7 {
  font-size: 0.875rem;
  margin: 57px 0 0;
}

.u-layout-cell-5, .u-layout-cell-6, .u-layout-cell-7 {
  min-height: 488px;
}

.u-container-layout-5, .u-container-layout-6, .u-container-layout-7 {
  padding: 30px;
}

.u-text-8, .u-text-11, .u-text-14 {
  margin: 0 auto 0 0;
}

.u-btn-2 {
  border-style: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  background-image: none;
  margin: -28px 0 0 auto;
  padding: 4px 25px 5px 23px;
}

.u-text-9, .u-text-12, .u-text-15 {
  font-size: 3rem;
  font-weight: 700;
  margin: 40px auto 0 0;
}

.u-btn-3, .u-btn-4 {
  background-image: none;
  font-weight: 700;
  font-size: 1.125rem;
  border-style: none;
  margin: 50px auto 0 0;
  padding: 14px 31px 16px 30px;
}

.u-icon-2, .u-icon-3, .u-icon-4 {
  margin-left: 10px;
}

.u-text-10, .u-text-13, .u-text-16 {
  font-size: 0.875rem;
  margin: 57px 0 0;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .u-layout-cell-4 {
    min-height: 458px;
  }
  
  .u-container-layout-4 {
    padding-left: 29px;
    padding-right: 29px;
  }
  
  .u-text-6 {
    width: auto;
    margin-top: 70px;
  }
  
  .u-btn-1 {
    margin-top: 30px;
  }
  
  .u-text-7 {
    margin-top: 47px;
    margin-right: 3px;
  }
  
  .u-layout-cell-5, .u-layout-cell-6, .u-layout-cell-7 {
    min-height: 459px;
  }
  
  .u-container-layout-5, .u-container-layout-6, .u-container-layout-7 {
    padding-left: 27px;
    padding-right: 27px;
  }
  
  .u-btn-2 {
    margin-top: 12px;
    margin-right: auto;
    margin-left: 0;
  }
  
  .u-text-9, .u-text-12, .u-text-15 {
    margin-top: 30px;
  }
  
  .u-btn-3, .u-btn-4 {
    margin-top: 30px;
    padding: 15px 23px;
  }
  
  .u-text-10, .u-text-13, .u-text-16 {
    margin-top: 77px;
    margin-right: 6px;
  }
}

@media (max-width: 991px) {
  .u-layout-cell-4 {
    min-height: 449px;
  }
  
  .u-container-layout-4 {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .u-text-5 {
    font-size: 1.25rem;
  }
  
  .u-btn-1 {
    font-size: 0.875rem;
    padding: 15px 14px 15px 12px;
  }
  
  .u-text-7 {
    margin-top: 30px;
    margin-right: 0;
  }
  
  .u-layout-cell-5, .u-layout-cell-6, .u-layout-cell-7 {
    min-height: 449px;
  }
  
  .u-container-layout-5, .u-container-layout-6, .u-container-layout-7 {
    padding-left: 19px;
    padding-right: 19px;
  }
  
  .u-text-8, .u-text-11, .u-text-14 {
    margin-left: 1px;
  }
  
  .u-btn-2 {
    margin-top: 15px;
  }
  
  .u-btn-3, .u-btn-4 {
    font-size: 0.875rem;
    margin-left: auto;
    padding: 14px 18px 16px 16px;
  }
  
  .u-text-10, .u-text-13, .u-text-16 {
    margin-top: 30px;
    margin-left: 1px;
    margin-right: 1px;
  }
}

@media (max-width: 768px) {
  .wyz-subscription-details {
    grid-template-columns: 1fr;
  }
  
  .wyz-features-grid {
    grid-template-columns: 1fr;
  }
  
  .wyz-subscription-actions {
    flex-direction: column;
  }
  
  .wyz-btn {
    width: 100%;
    text-align: center;
  }
  
  .wyz-history-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .wyz-history-status {
    text-align: left;
  }
  
  .wyz-subscription-hero {
    padding: 2rem 1rem;
  }
  
  .wyz-subscription-hero h1 {
    font-size: 2rem !important;
  }
  
  .wyz-subscription-hero p {
    font-size: 1.1rem !important;
  }
  
  .u-layout-cell-4 {
    min-height: 402px;
  }
  
  .u-container-layout-4 {
    padding-left: 30px;
    padding-right: 30px;
  }
  
  .u-text-6 {
    margin-top: 50px;
  }
  
  .u-btn-1 {
    font-size: 1.125rem;
    padding-right: 29px;
    padding-bottom: 16px;
    padding-left: 28px;
  }
  
  .u-layout-cell-5, .u-layout-cell-6, .u-layout-cell-7 {
    min-height: 407px;
  }
  
  .u-container-layout-5, .u-container-layout-6, .u-container-layout-7 {
    padding-left: 30px;
    padding-right: 30px;
  }
  
  .u-text-8, .u-text-11, .u-text-14 {
    margin-left: 0;
  }
  
  .u-btn-2 {
    margin-top: 12px;
  }
  
  .u-btn-3, .u-btn-4 {
    font-size: 1.125rem;
    margin-left: 0;
    padding-right: 21px;
    padding-bottom: 15px;
    padding-left: 20px;
  }
  
  .u-text-10, .u-text-13, .u-text-16 {
    margin-right: 2px;
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .u-layout-cell-4 {
    min-height: 100px;
  }
  
  .u-text-6 {
    font-size: 1.5rem;
  }
  
  .u-layout-cell-5, .u-layout-cell-6, .u-layout-cell-7 {
    min-height: 100px;
  }
  
  .u-text-9, .u-text-12, .u-text-15 {
    font-size: 1.5rem;
  }
  
  .u-text-10, .u-text-13, .u-text-16 {
    margin-right: 0;
  }
  
  .u-layout-row > .u-size-20 {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
  }
}
.wyz-content-column {
  flex: 2.5;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
.wyz-content-card {
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
  padding: 20px;
}

/* Profile Details */
.wyz-profile-details {
  display: flex;
  width: 100%;
  gap: 20px;
}
.wyz-profile-photo-section { flex: 1; margin-right: 0; }
.wyz-profile-main-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
  background-color: #eee;
}
.wyz-profile-thumbnails { display: flex; gap: 10px; margin-top: 10px; }
.wyz-profile-thumbnail {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  background-color: #eee;
}
.wyz-profile-thumbnail:hover { border-color: #e74c3c; }
.wyz-profile-info-section { flex: 2; }
.wyz-profile-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; flex-wrap: wrap; }
.wyz-profile-name { margin: 0; font-size: 24px; font-weight: bold; color: #333; }
.wyz-profile-status { display: flex; gap: 10px; flex-wrap: wrap; }
.wyz-status-badge { padding: 5px 10px; border-radius: 15px; font-size: 12px; font-weight: 500; display: flex; align-items: center; }
.wyz-verified-badge { background-color: #4267B2; color: white; }
.wyz-online-badge { background-color: #2ecc71; color: white; }
.wyz-profile-attributes { display: grid; grid-template-columns: auto 1fr; gap: 10px 15px; margin-bottom: 20px; }
.wyz-attribute-label { font-weight: 500; color: #666; }
.wyz-attribute-value { color: #333; }
.wyz-profile-action-row { display: flex; gap: 10px; flex-wrap: wrap; }
.wyz-profile-action-button { padding: 10px 20px; border: none; font-weight: 500; cursor: pointer; display: flex; align-items: center; gap: 5px; }
.wyz-message-button { background-color: #4267B2; color: white; }
.wyz-flirt-button, .wyz-history-button { background-color: #f0f0f0; color: #666; }

/* Members Grid */
.wyz-member-list-section { margin-top: 0; width: 100%; position: relative; }
.wyz-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.wyz-section-header h3 { color: #8B4513; margin: 0; font-size: 1.1em; }
.wyz-view-more { color: #e74c3c; text-decoration: none; font-size: 14px; white-space: nowrap; }
.wyz-members-grid-container { position: relative; overflow: hidden; padding: 0; margin: 0; }
.wyz-members-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; }
.wyz-member-card { position: relative; border-radius: 5px; overflow: hidden; }
.wyz-member-card a { text-decoration: none; color: inherit; display: block; }
.wyz-member-img { width: 100%; aspect-ratio: 1; border-radius: 5px; object-fit: cover; background-color: #eee; display: block; }
.wyz-member-info { padding: 8px 4px 0; text-align: center; }
.wyz-member-name { font-size: 12px; color: #333; font-weight: 500; display: block; line-height: 1.3; }
.wyz-member-card:hover .wyz-member-name { color: #359756; }
.wyz-active-indicator { position: absolute; bottom: 5px; right: 5px; width: 10px; height: 10px; background-color: #2ecc71; border-radius: 50%; border: 2px solid white; }
.wyz-scroll-btn { display: none; }
.wyz-scroll-left { display: none; }
.wyz-scroll-right { display: none; }

/* Filters & Online Members */
.wyz-filters-section { width: 100%; }
.wyz-filter-tabs { display: flex; margin-bottom: 15px; border-bottom: 1px solid #eee; flex-wrap: wrap; }
.wyz-filter-tab { padding: 8px 15px; cursor: pointer; color: #666; font-weight: 500; border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; }
.wyz-filter-tab.wyz-active { color: #8B4513; border-bottom-color: #8B4513; }
.wyz-online-member { display: flex; align-items: center; gap: 15px; padding: 12px 0; border-bottom: 1px solid #eee; }
.wyz-online-member:last-child { border-bottom: none; }
.wyz-online-pic { width: 50px; height: 50px; border-radius: 5px; object-fit: cover; background-color: #eee; flex-shrink: 0; }
.wyz-online-info { flex: 1; min-width: 0; }
.wyz-online-name { font-weight: 600; color: #e74c3c; margin: 0; font-size: 0.95em; }
.wyz-online-about { font-size: 0.85em; color: #666; margin: 5px 0 0 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wyz-profile-action-buttons { display: flex; gap: 8px; flex-shrink: 0; }
.wyz-profile-icon-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid #ddd; background-color: white; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 18px; line-height: 1; transition: background-color 0.2s ease, border-color 0.2s ease; }
.wyz-profile-icon-btn:hover { background-color: #f5f5f5; border-color: #ccc; }
.wyz-icon-btn-heart { color: #e74c3c; }
.wyz-icon-btn-heart:hover { color: #c0392b; }
.wyz-icon-btn-star { color: #f1c40f; }
.wyz-icon-btn-star:hover { color: #f39c12; }

/* Sidebar */
.wyz-sidebar { flex: 1; display: flex; flex-direction: column; gap: 20px; min-width: 220px; max-width: 280px; }
.wyz-sidebar-title { color: #8B4513; font-size: 1.1em; font-weight: bold; margin: 0 0 15px 0; text-transform: uppercase; }
.wyz-popular-text { font-size: 14px; color: #666; margin: 0 0 10px 0; line-height: 1.4; }
.wyz-popular-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.wyz-sidebar-card { background-color: white; border-radius: 5px; box-shadow: 0 1px 3px rgba(0,0,0,.1); padding: 20px; }

/* Promoted Profile Card Fixes */
.wyz-promoted-profile-card .wyz-ad-box {
    text-align: center;
}
.wyz-promoted-profile-card .wyz-ad-box img {
    display: block;
    margin: 10px auto;
    object-fit: cover;
}

/* Profile Summary Box */
.wyz-profile-summary {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.wyz-profile-avatar {
  display: flex;
  justify-content: center;
}

.wyz-profile-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #8B4513;
  background-color: #eee;
}

.wyz-profile-info {
  text-align: center;
}

.wyz-profile-name {
  margin: 0 0 8px 0;
  font-size: 1.1em;
  font-weight: 600;
  color: #333;
}

.wyz-profile-completion {
  margin: 0 0 10px 0;
  font-size: 0.9em;
  color: #666;
}

.wyz-completion-bar {
  width: 100%;
  height: 8px;
  background-color: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 5px;
}

.wyz-completion-fill {
  height: 100%;
  background: linear-gradient(90deg, #8B4513 0%, #A0522D 100%);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.wyz-profile-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.wyz-profile-btn {
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 500;
  text-align: center;
  transition: all 0.2s ease;
  flex: 1;
}

.wyz-profile-btn {
  background-color: #8B4513;
  color: white;
}

.wyz-profile-btn:hover {
  background-color: #A0522D;
  color: white;
}

.wyz-profile-btn-secondary {
  background-color: #f8f9fa;
  color: #666;
  border: 1px solid #ddd;
}

.wyz-profile-btn-secondary:hover {
  background-color: #e9ecef;
  color: #333;
}
.wyz-ad-box { border-radius: 5px; padding: 0; text-align: center; }
.wyz-ad-box img { display: block; margin: 0 auto; }

/* Profile sections styling */
.wyz-section-title {
  color: #8B4513;
  font-size: 1.2em;
  font-weight: bold;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  border-bottom: 2px solid #8B4513;
  padding-bottom: 8px;
}

.wyz-about-section, .wyz-profile-info-section, .wyz-preferences-section {
  margin-bottom: 20px;
}

.wyz-bio-content {
  line-height: 1.6;
  color: #333;
  font-size: 1rem;
}

.wyz-profile-info-grid, .wyz-preferences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.wyz-info-item, .wyz-preference-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background: #f8f9fa;
  border-radius: 6px;
  border-left: 3px solid #8B4513;
}

.wyz-info-label, .wyz-preference-label {
  font-weight: 600;
  color: #666;
  font-size: 0.9rem;
}

.wyz-info-value, .wyz-preference-value {
  color: #333;
  font-weight: 500;
  text-align: right;
}

@media (max-width: 768px) {
  .wyz-profile-info-grid, .wyz-preferences-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .wyz-info-item, .wyz-preference-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .wyz-info-value, .wyz-preference-value {
    text-align: left;
  }
}

/* Similar Profiles Section */
.wyz-similar-profiles-section {
  margin-bottom: 20px;
}

.wyz-similar-description {
  color: #666;
  font-size: 0.9rem;
  margin: 0 0 20px 0;
  font-style: italic;
}

.wyz-similar-profiles-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 12px;
  max-width: 100%;
  width: 100%;
}

.wyz-similar-profile-item {
  width: 100%;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
  border: 2px solid transparent;
  position: relative;
}

.wyz-similar-profile-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
  border-color: #8B4513;
  z-index: 10;
}

.wyz-similar-profile-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.wyz-similar-profile-image {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 6px 6px 0 0;
  display: block;
}

.wyz-similar-profile-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 8px 6px 6px 6px;
  border-radius: 0 0 6px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.wyz-similar-profile-name {
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

.wyz-similar-profile-age {
  color: #ffd700;
  font-size: 0.7rem;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

/* Responsive adjustments for similar profiles */
@media (max-width: 1200px) {
  .wyz-similar-profiles-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }
}

@media (max-width: 992px) {
  .wyz-similar-profiles-grid {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(7, 1fr);
  }
  
  .wyz-similar-profile-item {
    height: 110px;
  }
  
  .wyz-similar-profile-image {
    height: 70px;
  }
}

@media (max-width: 768px) {
  .wyz-similar-profiles-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(9, 1fr);
    gap: 8px;
  }
  
  .wyz-similar-profile-item {
    height: 100px;
  }
  
  .wyz-similar-profile-image {
    height: 65px;
  }
  
  .wyz-similar-profile-name {
    font-size: 0.7rem;
  }
  
  .wyz-similar-profile-age {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .wyz-similar-profiles-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(12, 1fr);
    gap: 6px;
  }
  
  .wyz-similar-profile-item {
    height: 90px;
  }
  
  .wyz-similar-profile-image {
    height: 60px;
  }
}
.wyz-ad-label { font-size: 12px; color: #999; margin-bottom: 10px; text-transform: uppercase; font-weight: 500; }
.wyz-blog-tabs { display: flex; border-bottom: 1px solid #eee; margin-bottom: 10px; flex-wrap: wrap; }
.wyz-blog-tab { padding: 5px 15px; cursor: pointer; color: #666; border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; font-size: 0.9em; }
.wyz-blog-tab.wyz-active { color: #8B4513; border-bottom-color: #8B4513; font-weight: 500; }
.wyz-blog-posts { display: flex; flex-direction: column; gap: 15px; }
.wyz-blog-post { display: flex; gap: 10px; }
.wyz-blog-img { width: 80px; height: 80px; border-radius: 5px; object-fit: cover; background-color: #eee; flex-shrink: 0; }
.wyz-blog-content { flex: 1; min-width: 0; }
.wyz-blog-title { font-weight: 600; margin: 0 0 5px 0; font-size: 1em; color: #333; text-decoration: none; display: block; line-height: 1.3; }
.wyz-blog-title:hover { color: #e74c3c; }
.wyz-blog-excerpt { font-size: 0.9em; color: #666; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.4; }

/* Auth Pages - Login/Register */
.content-column {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
.content-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  overflow: hidden;
}
.content-card > div {
  padding: 40px;
  box-sizing: border-box;
}
.auth-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.auth-left {
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
}
.auth-right {
  background: linear-gradient(135deg, #359756 0%, #2a7a44 100%);
  color: white;
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.auth-hero h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  font-weight: 600;
}
.auth-hero .hero-img {
  font-size: 80px;
  text-align: center;
  margin: 20px 0;
  line-height: 1;
}
.auth-hero ul {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
}
.auth-hero li {
  padding: 12px 0;
  font-size: 16px;
  position: relative;
  padding-left: 30px;
}
.auth-hero li:before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 18px;
}

/* Honeypot - Hidden Field */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Alerts */
.alert {
  padding: 14px 18px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.5;
}
.error-alert {
  background-color: #fee;
  border: 1px solid #fcc;
  color: #c33;
}
.success-alert {
  background-color: #efe;
  border: 1px solid #cfc;
  color: #3c3;
}

/* Form Elements */
.form-group {
  margin-bottom: 20px;
  position: relative;
}
.form-group:first-of-type {
  margin-top: 25px;
}
.form-label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}
.content-card h2 {
  line-height: 1.3;
  margin-bottom: 10px;
}
.content-card h2 + p {
  margin-bottom: 25px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
.form-input:focus {
  outline: none;
  border-color: #359756;
  box-shadow: 0 0 0 3px rgba(53, 151, 86, 0.1);
}
.form-input::placeholder {
  color: #999;
}
.form-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #359756;
  margin-right: 8px;
}
.form-group label:has(.form-checkbox) {
  display: flex;
  align-items: center;
  color: #666;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}
.form-group label:has(.form-checkbox) a {
  color: #359756;
  text-decoration: underline;
  font-weight: 500;
}
.form-group label:has(.form-checkbox) a:hover {
  color: #2a7a44;
  text-decoration: underline;
}
.form-submit {
  width: 100%;
  padding: 14px 20px;
  background-color: #359756;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 10px;
}
.form-submit:hover {
  background-color: #2a7a44;
}
.form-submit:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.7;
}

/* Password Toggle */
.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666;
  font-size: 13px;
  cursor: pointer;
  padding: 4px 8px;
  font-weight: 500;
}
.toggle-password:hover {
  color: #359756;
}
.form-group:has(#password) {
  position: relative;
}

/* Auth Alternative Options */
.auth-alt-option {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
.auth-alt-option:first-of-type {
  margin-top: 20px;
}
.auth-alt-option a {
  color: #359756;
  text-decoration: none;
  font-weight: 500;
}
.auth-alt-option a:hover {
  text-decoration: underline;
}

/* Loading Spinner */
.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Select Dropdowns */
select.form-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  appearance: none;
}
select.form-input:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e74c3c' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

/* Alert Lists */
.alert ul {
  margin: 10px 0;
  padding-left: 20px;
  list-style: disc;
}
.alert li {
  margin: 8px 0;
  line-height: 1.5;
}
.alert p {
  margin: 10px 0;
  line-height: 1.5;
}
.alert p:first-child {
  margin-top: 0;
}
.alert p:last-child {
  margin-bottom: 0;
}

/* Warning & Info Boxes */
.warning-box {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}
.warning-box h3 {
  margin: 0 0 10px 0;
  color: #856404;
  font-size: 1.1rem;
}
.warning-box ul {
  margin: 10px 0;
  padding-left: 20px;
  color: #856404;
}
.warning-box li {
  margin: 8px 0;
}
.warning-box p {
  margin: 10px 0;
  color: #856404;
}

.danger-box {
  background: #fef2f2;
  border: 2px solid #fecaca;
  border-radius: 8px;
  padding: 25px;
  margin: 25px 0;
}
.danger-box h3 {
  margin: 0 0 15px 0;
  color: #dc2626;
  font-size: 1.1rem;
}
.danger-box h4 {
  margin: 20px 0 10px 0;
  color: #dc2626;
  font-size: 1rem;
}
.danger-box ul {
  margin: 10px 0;
  padding-left: 20px;
  color: #dc2626;
}
.danger-box li {
  margin: 8px 0;
}
.danger-box p {
  margin: 10px 0;
  color: #dc2626;
}

.critical-box {
  background: #7f1d1d;
  color: white;
  border-radius: 8px;
  padding: 25px;
  margin: 30px 0;
  text-align: center;
}
.critical-box p {
  margin: 10px 0;
}
.critical-box p:first-child {
  margin-top: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Info/Tips Sections */
.info-section {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
  color: #6b7280;
  font-size: 0.9rem;
}
.info-section ul {
  margin: 10px 0;
  padding-left: 20px;
}
.info-section li {
  margin: 8px 0;
}
.info-section p {
  margin: 10px 0;
}

/* Status Message Pages (Activate, Verify) */
.status-page {
  padding: 40px;
  text-align: center;
}
.status-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.status-title {
  margin: 0 0 10px 0;
  font-size: 1.5rem;
  font-weight: 600;
}
.status-title.success {
  color: #27ae60;
}
.status-title.error {
  color: #e74c3c;
}
.status-title.processing {
  color: #8B4513;
}

/* Button Groups */
.button-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.button-group .form-submit {
  margin-top: 0;
}

/* Button Color Variants */
.form-submit.btn-secondary {
  background-color: #6b7280;
}
.form-submit.btn-secondary:hover {
  background-color: #4b5563;
}
.form-submit.btn-success {
  background-color: #059669;
}
.form-submit.btn-success:hover {
  background-color: #047857;
}
.form-submit.btn-danger {
  background-color: #dc2626;
}
.form-submit.btn-danger:hover {
  background-color: #b91c1c;
}

/* Inline Styles Override for Links as Buttons */
a.form-submit {
  display: inline-block;
  text-decoration: none;
  box-sizing: border-box;
}

/* Password Strength Indicator (if needed later) */
.password-strength {
  height: 4px;
  border-radius: 2px;
  margin-top: 8px;
  background-color: #e5e7eb;
  overflow: hidden;
}
.password-strength-bar {
  height: 100%;
  transition: width 0.3s ease, background-color 0.3s ease;
  width: 0;
}
.password-strength-bar.weak {
  width: 33%;
  background-color: #dc2626;
}
.password-strength-bar.medium {
  width: 66%;
  background-color: #f59e0b;
}
.password-strength-bar.strong {
  width: 100%;
  background-color: #059669;
}

/* Centered Content Cards (for status/confirmation pages) */
.content-card[style*="max-width"] {
  margin-left: auto;
  margin-right: auto;
}

/* Override inline styles for consistency */
.content-card > div[style*="padding"] {
  box-sizing: border-box;
}

/* Text alignment utilities */
[style*="text-align: center"] h2,
[style*="text-align: center"] h3,
[style*="text-align:center"] h2,
[style*="text-align:center"] h3 {
  line-height: 1.3;
}

/* Margin spacing for inline-styled elements */
div[style*="margin-top: 30px"] a.form-submit {
  margin: 0;
}

/* Nested alert styles with inline background */
.alert[style*="background"] {
  text-align: inherit;
}
.alert[style*="background"] ul {
  text-align: left;
}

/* Ensure proper spacing for status divs */
div[style*="margin-bottom: 30px"] {
  margin-bottom: 30px !important;
}

/* Box styles with inline backgrounds */
div[style*="background: #fff3cd"] {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}
div[style*="background: #fee"] {
  background: #fee;
  border: 1px solid #fcc;
  border-radius: 8px;
  padding: 20px;
  margin: 30px 0;
}
div[style*="background: #fef2f2"] {
  background: #fef2f2;
  border: 2px solid #fecaca;
  border-radius: 8px;
  padding: 25px;
  margin: 25px 0;
}
div[style*="background: #7f1d1d"] {
  background: #7f1d1d;
  color: white;
  border-radius: 8px;
  padding: 25px;
  margin: 30px 0;
  text-align: center;
}

/* Inline flex button groups */
div[style*="display: flex"][style*="gap"] {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
div[style*="justify-content: center"] {
  justify-content: center;
}

/* Color text overrides */
[style*="color:#8B4513"],
[style*="color: #8B4513"] {
  color: #8B4513;
}
[style*="color:#6b7280"],
[style*="color: #6b7280"] {
  color: #6b7280;
}
[style*="color:#e74c3c"],
[style*="color: #e74c3c"] {
  color: #e74c3c;
}
[style*="color:#27ae60"],
[style*="color: #27ae60"] {
  color: #27ae60;
}
[style*="color:#dc2626"],
[style*="color: #dc2626"] {
  color: #dc2626;
}
[style*="color:#856404"],
[style*="color: #856404"] {
  color: #856404;
}

/* Status icon in divs */
div[style*="font-size: 3rem"] {
  font-size: 3rem !important;
  line-height: 1;
  animation: pulse 2s infinite;
}

/* Tips/info sections with borders */
div[style*="border-top: 1px solid"] {
  margin-top: 30px;
  padding-top: 20px;
}

/* Nested inner boxes */
div[style*="padding: 15px"][style*="background: #fff"] {
  background: #fff;
  padding: 15px;
  border-radius: 6px;
  margin: 20px 0;
}

/* Responsive */
@media (max-width: 992px) {
  .wyz-main-content { flex-direction: column; }
  .wyz-sidebar { min-width: unset; max-width: unset; width: 100%; }
  .wyz-members-grid { grid-template-columns: repeat(5, 1fr); }
  .auth-split { grid-template-columns: 1fr; }
  .auth-right {
    display: block;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
  }
  .auth-left { padding: 40px; }
  .status-page { padding: 30px; }
}
@media (max-width: 768px) {
  .wyz-profile-details { flex-direction: column; }
  .wyz-profile-photo-section { margin-right: 0; margin-bottom: 20px; }
  .wyz-profile-thumbnails { justify-content: center; }
  .wyz-profile-title { flex-direction: column; align-items: flex-start; }
  .wyz-profile-status { margin-top: 10px; }
  .wyz-members-grid { grid-template-columns: repeat(4, 1fr); }
  .content-column { padding: 30px 20px; }
  .content-card > div { padding: 30px; }
  .auth-left { padding: 30px; }
  .status-page { padding: 25px; }
  .button-group { flex-direction: column; }
  .button-group .form-submit { width: 100%; }
}
@media (max-width: 600px) {
  .wyz-main-content { padding: 0 15px; gap: 15px; }
  .wyz-members-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .wyz-member-name { font-size: 11px; }
  .wyz-member-info { padding: 6px 2px 0; }
  .content-column { padding: 20px 15px; }
  .content-card > div { padding: 25px 20px; }
  .auth-left { padding: 25px 20px; }
  .auth-split { min-height: auto; }
  .status-page { padding: 20px 15px; }
  .status-icon { font-size: 2.5rem; }
  .danger-box, .warning-box, .critical-box { padding: 20px; }
  .info-section { font-size: 0.85rem; }
}
@media (max-width: 480px) {
  .wyz-members-grid { grid-template-columns: repeat(2, 1fr); }
  .wyz-member-name { font-size: 10px; }
}