/* UI Components */

/* Post Card - Clean White Style */
.post-card {
  background: var(--card-bg);
  border: none;
  border-radius: 1rem;
  padding: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-card);
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-strong);
}

.post-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 0;
  background: var(--bg-tertiary);
}

.post-card-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--accent-primary);
  color: #ffffff;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.post-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #000000 !important;
  line-height: 1.4;
}

.post-card-excerpt {
  color: #000000 !important;
  margin-bottom: 1rem;
  line-height: 1.6;
  flex-grow: 1;
  font-size: 0.95rem;
}

.post-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.875rem;
  color: #000000 !important;
}

.post-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.tag {
  padding: var(--space-1) var(--space-2);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.tag:hover {
  background: var(--bg-hover);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

/* Search Bar */
.search-wrapper {
  position: relative;
  flex: 1;
  max-width: 500px;
}

.search-bar {
  position: relative;
}

.search-bar input {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
  width: 100%;
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
  transition: all 0.25s ease;
}

.search-bar input::placeholder {
  color: var(--text-tertiary);
}

.search-bar input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(245, 52, 0, 0.1);
}

.search-results-count {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  text-align: center;
}

/* Filter Chips */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

.filter-label {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--text-secondary);
}

.filter-chip {
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
  min-height: 36px; /* Touch-friendly for mobile */
  display: inline-flex;
  align-items: center;
}

.filter-chip:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.filter-chip.active {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #ffffff;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  border: none;
  font-size: 1rem;
  min-height: 44px; /* Touch-friendly size for mobile */
}

.btn-primary {
  background: var(--accent-primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--accent-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 52, 0, 0.3);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--bg-hover);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.btn-icon {
  padding: 0.625rem;
  border-radius: 0.5rem;
  background: transparent;
  border: 1px solid var(--border-color);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.btn-icon:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: var(--bg-hover);
}

/* Modern Light Switch Toggle */
.theme-switch {
  position: relative;
  width: 60px;
  height: 34px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  outline: none;
}

.switch-track {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--bg-tertiary);
  border: 2px solid var(--border-color);
  border-radius: 17px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.switch-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: #ffffff;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Dark mode (default) - switch is on the left */
[data-theme="dark"] .switch-track {
  background: linear-gradient(135deg, #2a2d35 0%, #1a1d24 100%);
  border-color: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .switch-thumb {
  left: 3px;
  background: #e0e0e0;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Light mode - switch moves to the right and changes color */
[data-theme="light"] .switch-track {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-color: rgba(255, 215, 0, 0.5);
}

[data-theme="light"] .switch-thumb {
  left: 29px;
  background: #ffffff;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}

/* Hover effects */
.theme-switch:hover .switch-track {
  border-color: var(--accent-primary);
  transform: scale(1.05);
}

.theme-switch:hover .switch-thumb {
  transform: scale(1.1);
}

.theme-switch:active .switch-track {
  transform: scale(0.98);
}

/* Mobile optimization */
@media (max-width: 640px) {
  .theme-switch {
    width: 54px;
    height: 30px;
  }

  .switch-thumb {
    width: 22px;
    height: 22px;
  }

  [data-theme="light"] .switch-thumb {
    left: 26px;
  }
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: var(--space-16) var(--space-4);
}

.empty-state-icon {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-4);
  opacity: 0.3;
}

.empty-state-title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}

.empty-state-description {
  color: var(--text-tertiary);
}

/* Back Button */
.back-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  color: var(--text-secondary);
  font-weight: var(--font-medium);
  transition: all var(--transition-fast);
}

.back-button:hover {
  color: var(--accent-primary);
  transform: translateX(-4px);
}

/* Featured Badge */
.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.375rem 0.875rem;
  background: var(--accent-primary);
  color: #ffffff;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Loading Spinner */
.loading {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid var(--border-color);
  border-top-color: var(--accent-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Wallet & Blockchain Components */

/* Connect Wallet Button */
.btn-connect {
  padding: 0.625rem 1.25rem;
  background: var(--accent-primary);
  color: #ffffff;
  border: none;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-connect:hover {
  background: var(--accent-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 52, 0, 0.3);
}

.btn-connect.connected {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-connect.connected:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  box-shadow: none;
  transform: none;
}

.btn-connect:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Wallet Modal */
.wallet-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: var(--space-4);
}

.wallet-modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-glow-strong);
  position: relative;
}

.wallet-modal-content h2 {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-2);
  color: var(--text-primary);
  text-align: center;
}

.wallet-modal-content > p {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: var(--space-6);
}

/* Wallet List */
.wallet-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.wallet-option {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--bg-tertiary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  color: var(--text-primary);
}

.wallet-option img {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
}

.wallet-option:hover {
  background: var(--bg-hover);
  border-color: var(--accent-primary);
  transform: translateX(4px);
  box-shadow: var(--shadow-glow);
}

.wallet-modal-close {
  width: 100%;
  padding: var(--space-3);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  color: var(--text-secondary);
  font-weight: var(--font-medium);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.wallet-modal-close:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

/* Deposit Modal */
.deposit-modal {
  max-width: 600px;
}

.deposit-info {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  margin-bottom: var(--space-6);
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2) 0;
  color: var(--text-secondary);
}

.info-row strong {
  color: var(--accent-primary);
  font-weight: var(--font-bold);
}

.deposit-input-group {
  margin-bottom: var(--space-6);
}

.deposit-input-group label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
}

.deposit-input-group input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--bg-tertiary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  transition: all var(--transition-fast);
}

.deposit-input-group input:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
}

.modal-actions {
  display: flex;
  gap: var(--space-3);
}

.modal-actions button {
  flex: 1;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  font-weight: var(--font-semibold);
  font-size: var(--text-base);
  cursor: pointer;
  transition: all var(--transition-fast);
}

/* Access Status */
.access-status {
  margin-top: var(--space-6);
}

.access-message {
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  text-align: center;
  border: 2px solid;
}

.access-message.info {
  background: var(--bg-tertiary);
  border-color: var(--border-color);
  color: var(--text-secondary);
}

.access-message.success {
  background: rgba(0, 217, 255, 0.1);
  border-color: var(--accent-primary);
}

.access-message.success p:first-child {
  color: var(--accent-primary);
  font-weight: var(--font-bold);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.access-message.warning {
  background: rgba(255, 179, 0, 0.1);
  border-color: rgba(255, 179, 0, 0.4);
}

.access-message.warning p {
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.access-expiry {
  font-size: var(--text-sm);
  color: var(--text-secondary) !important;
  font-weight: var(--font-normal) !important;
}

/* Premium Content Blur */
.premium-content {
  position: relative;
  transition: filter var(--transition-base);
}

.premium-content.blurred {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
}

.premium-content.blurred::after {
  content: '🔒 Premium Content - Connect Wallet to Unlock';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent-gradient);
  color: var(--text-inverse);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-lg);
  font-weight: var(--font-bold);
  white-space: nowrap;
  box-shadow: var(--shadow-glow-strong);
  filter: blur(0);
}

/* Notifications */
.notification {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  padding: var(--space-4) var(--space-6);
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow-strong);
  z-index: 10001;
  max-width: 400px;
  opacity: 0;
  transform: translateX(100%);
  transition: all var(--transition-base);
}

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

.notification-success {
  border-color: var(--accent-primary);
  background: rgba(0, 217, 255, 0.1);
  color: var(--accent-primary);
}

.notification-error {
  border-color: rgba(255, 79, 79, 0.6);
  background: rgba(255, 79, 79, 0.1);
  color: #ff6b6b;
}

.notification-info {
  border-color: var(--accent-primary);
  color: var(--text-primary);
}

.notification-warning {
  border-color: rgba(255, 179, 0, 0.6);
  background: rgba(255, 179, 0, 0.1);
  color: #ffc107;
}

/* Featured Content Cards - Sam Harris Style */
.featured-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1rem 0;
}

@media (min-width: 768px) {
  .featured-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
    padding: 2rem 0;
  }
}

.featured-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .featured-card {
    padding: 2rem;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .featured-card {
    padding: 2.5rem;
  }
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-strong);
  border-color: var(--accent-primary);
}

.featured-card-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.featured-card-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.featured-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  opacity: 0.8;
}

.featured-card-image svg {
  width: 80px;
  height: 80px;
}

/* Newsletter Section - Sam Harris Style */
.newsletter-section {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .newsletter-section {
    padding: 2rem 1.5rem;
    margin: 3rem 0 2rem;
  }
}

@media (min-width: 768px) {
  .newsletter-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 2.5rem;
    margin: 4rem 0 3rem;
    gap: 2rem;
  }
}

.newsletter-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.newsletter-content p {
  font-size: 1rem;
  color: var(--text-secondary);
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 768px) {
  .newsletter-form {
    flex-direction: row;
    max-width: 450px;
  }
}

.newsletter-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
  transition: all 0.25s ease;
}

.newsletter-input::placeholder {
  color: var(--text-tertiary);
}

.newsletter-input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(245, 52, 0, 0.1);
}

.newsletter-btn {
  white-space: nowrap;
  min-width: 140px;
}

/* Hero Profile Image - Sam Harris Minimal Style */
.hero-image-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 3rem 0 4rem;
  padding: 0 4%;
  gap: 4rem;
}

.hero-text {
  flex: 1;
  max-width: 500px;
}

.hero-tagline {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin: 0;
}

@media (min-width: 1200px) {
  .hero-tagline {
    font-size: 3rem;
  }
}

.hero-image-container {
  position: relative;
  width: 480px;
  height: auto;
  overflow: visible;
  transition: all 0.3s ease;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.hero-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(20, 40, 80, 0.3) 0%, rgba(10, 25, 50, 0.4) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease;
}

/* Contact Inoke overlay text */
.hero-image-container::after {
  content: 'Contact Inoke';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  font-size: 1.5rem;
  font-weight: 700;
  color: #0047ab;
  background: rgba(0, 0, 0, 0.9);
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0, 71, 171, 0.4);
  border: 2px solid #0047ab;
  letter-spacing: 0.05em;
}

.hero-profile-image {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(40%) contrast(1.1) brightness(0.95) saturate(0.8) hue-rotate(200deg);
  transition: all 0.5s ease;
  opacity: 1;
  mix-blend-mode: luminosity;

  /* Tight fade - only show person, fade everything else into background */
  mask-image: radial-gradient(ellipse 55% 60% at 50% 42%,
                               black 35%,
                               rgba(0,0,0,0.95) 45%,
                               rgba(0,0,0,0.7) 60%,
                               rgba(0,0,0,0.3) 75%,
                               transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 55% 60% at 50% 42%,
                                      black 35%,
                                      rgba(0,0,0,0.95) 45%,
                                      rgba(0,0,0,0.7) 60%,
                                      rgba(0,0,0,0.3) 75%,
                                      transparent 90%);
}

.hero-image-container:hover,
.hero-image-container.touch-active {
  animation: hover-glow 1s ease forwards;
}

.hero-image-container:hover::before,
.hero-image-container.touch-active::before {
  opacity: 0.8;
}

.hero-image-container:hover::after,
.hero-image-container.touch-active::after {
  animation: contact-reveal 0.6s ease 1s forwards;
}

@keyframes hover-glow {
  0% {
    filter: drop-shadow(0 0 0 transparent);
  }
  100% {
    filter: drop-shadow(0 0 40px rgba(0, 71, 171, 0.8))
            drop-shadow(0 0 80px rgba(0, 71, 171, 0.4))
            drop-shadow(0 0 120px rgba(0, 71, 171, 0.2));
  }
}

@keyframes contact-reveal {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px) scale(0.5);
  }
  60% {
    transform: translateX(-50%) translateY(0) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

/* Light mode adjustments - minimal blue tint */
[data-theme="light"] .hero-image-container::before {
  background: linear-gradient(135deg, rgba(200, 210, 230, 0.15) 0%, rgba(180, 200, 230, 0.2) 100%);
  mix-blend-mode: overlay;
}

[data-theme="light"] .hero-profile-image {
  filter: grayscale(60%) contrast(1.05) brightness(1.02) saturate(0.7);
  opacity: 1;
  mix-blend-mode: normal;
}

/* Responsive sizing */
@media (max-width: 1024px) {
  .hero-image-section {
    gap: 3rem;
  }

  .hero-image-container {
    width: 380px;
  }

  .hero-tagline {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .hero-image-section {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding: 0;
  }

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

  .hero-tagline {
    font-size: 2rem;
  }

  .hero-image-container {
    width: 320px;
  }

  /* Tablet-optimized Contact Inoke message */
  .hero-image-container::after {
    font-size: 1.35rem;
    padding: 0.65rem 1.75rem;
    bottom: -55px;
  }
}

@media (max-width: 480px) {
  .hero-image-container {
    width: 280px;
  }

  .hero-tagline {
    font-size: 1.75rem;
  }

  .hero-image-section {
    margin: 1.5rem 0 2.5rem;
    gap: 2rem;
  }

  /* Mobile-optimized Contact Inoke message */
  .hero-image-container::after {
    font-size: 1.25rem;
    padding: 0.625rem 1.5rem;
    bottom: -50px;
    white-space: nowrap;
  }
}
