/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/

:root {
  --font-heading: 'Google Sans', sans-serif;
  --font-body: 'Google Sans', system-ui, -apple-system, sans-serif;
  --font-accent: 'Google Sans', sans-serif;
  --header-bg: #ffffff;
  --header-text: #1a1a1a;
  --header-text-muted: #666666;
  --header-border: #e5e5e5;
  --header-pill-bg: #f3f4f6;
  --header-pill-text: #1a1a1a;
  --header-accent: #a3e635;
  --header-accent-hover: #84cc16;
}

@media (prefers-color-scheme: dark) {
  :root {
  --font-heading: 'Google Sans', sans-serif;
  --font-body: 'Google Sans', system-ui, -apple-system, sans-serif;
  --font-accent: 'Google Sans', sans-serif;
    --header-bg: #111111;
    --header-text: #ffffff;
    --header-text-muted: #a1a1aa;
    --header-border: #333333;
    --header-pill-bg: #27272a;
    --header-pill-text: #ffffff;
    --header-accent: #a3e635;
    --header-accent-hover: #84cc16;
  }
}

.custom-header, .custom-footer {
  --header-bg: #050505;
  --header-text: #ffffff;
  --header-text-muted: #a1a1aa;
  --header-border: transparent;
  --header-pill-bg: rgba(255, 255, 255, 0.1);
  --header-pill-text: #ffffff;
}

.custom-header {
  background-color: var(--header-bg);
  color: var(--header-text);
  border-bottom: 1px solid var(--header-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 1000;
}

body:has(.hero-section) .custom-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  border-bottom: none;
}

.custom-header-left,
.custom-header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.custom-header-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

@media (max-width: 1024px) {
  .custom-header {
    padding: 0 12px;
  }
  .custom-header-left,
  .custom-header-right {
    gap: 12px;
  }
  .header-item span {
    display: none;
  }
  .header-balance-pill {
    display: none;
  }
  .header-profile {
    width: 36px;
    height: 36px;
  }
  .custom-header-center {
    position: static !important;
    transform: none !important;
    display: flex;
    margin: 0;
  }
  .header-logo svg {
    width: 32px;
    height: 32px;
  }
}

.header-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--header-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-item:hover {
  color: var(--header-text);
}

.header-item svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--header-text);
}

.header-logo svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}

.header-icon-btn {
  background: none;
  border: none;
  padding: 4px;
  color: var(--header-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  position: relative;
}

.header-icon-btn:hover {
  color: var(--header-text);
}

.header-icon-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.header-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  border: 2px solid var(--header-bg);
}

.header-balance-pill {
  display: flex;
  align-items: center;
  background-color: var(--header-pill-bg);
  border-radius: 9999px;
  padding: 4px 4px 4px 12px;
  gap: 12px;
  color: var(--header-pill-text);
  font-family: monospace;
  font-size: 15px;
  font-weight: 600;
}

.header-balance-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #f59e0b;
  border-radius: 50%;
  color: #fff;
}

.header-balance-icon svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.header-balance-add {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: var(--header-accent);
  color: #111;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.header-balance-add:hover {
  background-color: var(--header-accent-hover);
}

.header-balance-add svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.header-profile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--header-pill-bg);
  cursor: pointer;
  border: 1px solid var(--header-accent);
}

.header-profile img {
  width: 100%;
  height: 100%;
  border-radius: 11px;
  object-fit: cover;
}

.header-profile-status {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  background-color: var(--header-accent);
  border: 2px solid var(--header-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-profile-status svg {
  width: 8px;
  height: 8px;
  fill: #111;
}

.custom-footer {
  background-color: var(--header-bg);
  color: var(--header-text-muted);
  border-top: 1px solid var(--header-border);
  padding: 32px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  font-family: var(--font-body);
  font-size: 14px;
}

.footer-link {
  color: var(--header-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--header-text);
}

.contact-page-main {
  background-color: var(--header-bg);
  color: var(--header-text);
  min-height: calc(100vh - 72px - 80px);
  display: flex;
  justify-content: center;
  padding: 48px 24px;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}

.contact-container {
  width: 100%;
  max-width: 600px;
  background-color: var(--header-pill-bg);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--header-border);
  position: relative;
  z-index: 10;
}

.contact-title {
  font-size: 28px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--header-text);
}

.contact-description {
  color: var(--header-text-muted);
  margin-bottom: 32px;
  font-size: 15px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--header-border);
  background-color: var(--header-bg);
  color: var(--header-text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--header-accent);
}

.contact-submit {
  background-color: var(--header-accent);
  color: #111;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 8px;
}

.contact-submit:hover {
  background-color: var(--header-accent-hover);
}

.terms-content {
  color: var(--header-text);
  line-height: 1.6;
  position: relative;
  z-index: 10;
}

.terms-section {
  margin-bottom: 24px;
}

.terms-section h2 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--header-text);
}

.terms-section p {
  margin: 0;
  color: var(--header-text-muted);
  font-size: 15px;
}

/* Chat Widget Styles */
.chat-widget-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.chat-widget-fab {
  background-color: var(--header-accent);
  color: #111;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  z-index: 2;
}

.chat-widget-fab:hover {
  background-color: var(--header-accent-hover);
  transform: scale(1.05);
}

.chat-widget-fab svg {
  width: 28px;
  height: 28px;
}

.chat-widget-container.open .chat-widget-fab {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

.chat-widget-window {
  width: 350px;
  background-color: var(--header-bg);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--header-border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: bottom right;
}

.chat-widget-container.open .chat-widget-window {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chat-widget-header {
  background-color: var(--header-accent);
  color: #111;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 600;
  user-select: none;
}

.chat-widget-header svg {
  width: 24px;
  height: 24px;
}

.chat-widget-header .chevron {
  margin-left: auto;
  transition: transform 0.2s ease;
}

.chat-widget-header .chevron:hover {
  transform: scale(1.1);
}

.chat-widget-body {
  height: 400px;
  display: flex;
  flex-direction: column;
  background-color: var(--header-bg);
}

.chat-widget-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.message {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.message p {
  margin: 0;
}

.message.incoming {
  background-color: var(--header-pill-bg);
  color: var(--header-text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.message.outgoing {
  background-color: var(--header-accent);
  color: #111;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-widget-input {
  padding: 16px;
  border-top: 1px solid var(--header-border);
  display: flex;
  gap: 12px;
  background-color: var(--header-bg);
}

.chat-widget-input input,
.chat-input-area input {
  flex: 1;
  background-color: var(--header-pill-bg);
  border: 1px solid transparent;
  color: var(--header-text);
  padding: 12px 16px;
  border-radius: 24px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.chat-widget-input input:focus,
.chat-input-area input:focus {
  border-color: var(--header-accent);
}

.chat-send-btn {
  background-color: var(--header-accent);
  color: #111;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.chat-send-btn:hover {
  background-color: var(--header-accent-hover);
}

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

.chat-send-btn svg {
  width: 20px;
  height: 20px;
}

/* Admin Chat Page Styles */
.admin-chat-body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background-color: var(--header-bg);
  color: var(--header-text);
  height: 100vh;
  overflow: hidden;
}

.admin-login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: var(--header-bg);
}

.admin-login-box {
  background-color: var(--header-pill-bg);
  padding: 48px;
  border-radius: 24px;
  width: 100%;
  max-width: 400px;
  border: 1px solid var(--header-border);
  text-align: center;
}

.admin-login-box h2 {
  margin-top: 0;
  margin-bottom: 24px;
}

.admin-error {
  color: #ef4444;
  background-color: rgba(239, 68, 68, 0.1);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 14px;
}

.admin-messenger-container {
  display: flex;
  height: 100vh;
  width: 100vw;
  background-color: var(--header-bg);
}

.messenger-sidebar {
  width: 320px;
  border-right: 1px solid var(--header-border);
  display: flex;
  flex-direction: column;
  background-color: var(--header-pill-bg);
}

.sidebar-header {
  padding: 24px;
  border-bottom: 1px solid var(--header-border);
}

.sidebar-header h3 {
  margin: 0;
  font-size: 18px;
}

.sidebar-users {
  flex: 1;
  overflow-y: auto;
}

.user-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--header-border);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.user-item:hover, .user-item.active {
  background-color: rgba(163, 230, 53, 0.1);
}

.user-item.active {
  border-left: 4px solid var(--header-accent);
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--header-border);
}

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

.user-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  overflow: hidden;
}

.user-name {
  font-weight: 600;
  font-size: 15px;
}

.user-preview {
  font-size: 13px;
  color: var(--header-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.messenger-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: var(--header-bg);
}

.chat-header {
  height: 72px;
  border-bottom: 1px solid var(--header-border);
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 16px;
}

.chat-title {
  font-size: 18px;
  font-weight: 600;
}

.chat-messages {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.msg-time {
  display: block;
  font-size: 11px;
  margin-top: 6px;
  opacity: 0.7;
}

.chat-input-area {
  padding: 24px;
  border-top: 1px solid var(--header-border);
  display: flex;
  gap: 16px;
  background-color: var(--header-pill-bg);
}

.chat-input-area input {
  padding: 16px 24px;
  font-size: 16px;
}

.chat-input-area .chat-send-btn {
  width: 52px;
  height: 52px;
}

/* Hero Section Styles */
main#content {
  margin: 0;
  padding: 0;
  max-width: 100%;
}

main#content .hero-section {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
  background-color: #050505;
  overflow: hidden;
  color: #ffffff;
}

main#content .hero-section .hero-bg-perspective {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  perspective: 800px;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}

main#content .hero-section .hero-bg-grid {
  position: relative;
  top: -20%;
  width: 50%;
  height: 140%;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 80px 80px;
}

@media (max-width: 1024px) {
  main#content .hero-section .hero-bg-grid {
    background-size: 40px 40px;
  }
}

main#content .hero-section .hero-bg-grid.left {
  transform-origin: left center;
  transform: rotateY(35deg) scale(1.2);
  -webkit-mask-image: linear-gradient(to right, black 10%, transparent 90%);
  mask-image: linear-gradient(to right, black 10%, transparent 90%);
  left: -5%;
}

main#content .hero-section .hero-bg-grid.right {
  transform-origin: right center;
  transform: rotateY(-35deg) scale(1.2);
  -webkit-mask-image: linear-gradient(to left, black 10%, transparent 90%);
  mask-image: linear-gradient(to left, black 10%, transparent 90%);
  right: -5%;
}

main#content .hero-section .hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

main#content .hero-section .hero-title {
  font-family: var(--font-body);
  font-size: clamp(24px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.03em;
  word-break: break-word;
  padding: 0 15px;
}


main#content .hero-section .hero-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}





main#content .hero-section .hero-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  pointer-events: none;
}

main#content .hero-section .hero-card-1 {
  background: linear-gradient(135deg, #8B5CF6, #6D28D9);
  transform: translateX(-180px) translateY(40px) rotate(-12deg);
  z-index: 1;
}

main#content .hero-section .hero-card-2 {
  background: linear-gradient(135deg, #EF4444, #B91C1C);
  transform: translateX(0) translateY(0) scale(1.1);
  z-index: 3;
}

main#content .hero-section .hero-card-3 {
  background: linear-gradient(135deg, #10B981, #047857);
  transform: translateX(180px) translateY(40px) rotate(12deg);
  z-index: 2;
}

main#content .hero-section .hero-card:hover {
  transform: translateY(-20px) scale(1.15);
  z-index: 10;
}

main#content .hero-section .hero-card-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4px;
  text-transform: uppercase;
  z-index: 2;
}

main#content .hero-section .hero-card-title {
  font-family: var(--font-body);
  font-size: clamp(20px, 6vw, 28px); word-break: break-word;
  font-weight: 900;
  color: white;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  text-transform: uppercase;
  z-index: 2;
  letter-spacing: -0.02em;
}

main#content .hero-section .hero-card-rating {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

@media (max-width: 768px) {
  main#content .hero-section .hero-card-rating {
    bottom: 12px;
    right: 12px;
    padding: 2px 8px;
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  
  
  
}

main#content .hero-section .hero-search {
  margin-top: 32px;
  position: relative;
  width: 100%;
  max-width: 450px;
}

main#content .hero-section .hero-search input {
  width: 100%;
  padding: 16px 56px 16px 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

main#content .hero-section .hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

main#content .hero-section .hero-search input:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

main#content .hero-section .hero-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.5);
}

main#content .hero-section .hero-search-filter {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.2s ease;
}

main#content .hero-section .hero-search-filter:hover {
  color: #ffffff;
}

/* Floating Images Placeholders */
main#content .hero-section .hero-floating-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

main#content .hero-section .floating-img {
  position: absolute;
  width: 140px;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
  animation: float 6s ease-in-out infinite;
}

main#content .hero-section .floating-img:nth-child(1) { top: 15%; left: 5%; animation-delay: 0s; transform: rotate(-15deg); }
main#content .hero-section .floating-img:nth-child(2) { top: 10%; right: 10%; animation-delay: -2s; transform: rotate(10deg); }
main#content .hero-section .floating-img:nth-child(3) { top: 55%; left: 15%; animation-delay: -4s; transform: rotate(5deg); }
main#content .hero-section .floating-img:nth-child(4) { top: 50%; right: 15%; animation-delay: -1s; transform: rotate(-20deg); }

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* About Section */
.about-section {
  background-color: #ffffff;
  color: #111111;
  padding: 100px 24px;
  font-family: var(--font-body);
  position: relative;
  z-index: 20;
  overflow: hidden;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 10;
}

.about-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  color: #111111;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block !important;
}

.about-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--header-accent);
  border-radius: 2px;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 100%;
}

.about-card {
  background-color: #f8fafc;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  border: 1px solid #f1f5f9;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-image {
  height: auto;
  width: 100%;
  background-size: cover;
  background-position: top center;
  background-color: #e2e8f0;
  position: relative;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(248, 250, 252, 1), transparent);
}

.amira-image {
  background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRuqaahnu9KZmtgJ_xtm9cW8Pn_9Bur94xCbmcKZBQG2cICrgcNEMRUG8g&s=10');
  /* Background image will be set when photos are provided */
}

.hauser-image {
  background-image: url('https://shorefire.com/images/uploads/gallery/image2_9.jpg');
  /* Background image will be set when photos are provided */
}

.about-content {
  padding: 0 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.about-content h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.about-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

@media (max-width: 1024px) {
  .about-section {
    padding: 64px 20px;
  }
  
  .about-cards {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .about-image {
    height: 240px;
  }
  
  .about-content {
    padding: 0 24px 24px 24px;
  }
}

/* Games Section */
.games-section {
  background-color: #f8fafc;
  color: #111111;
  padding: 100px 24px;
  font-family: var(--font-body);
  position: relative;
  z-index: 20;
  overflow: hidden;
}

.games-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 10;
}

.games-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  color: #111111;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block !important;
}

.games-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--header-accent);
  border-radius: 2px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
  width: 100%;
}

.game-card {
  background-color: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  border: 1px solid #f1f5f9;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.game-image {
  height: 240px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-color: #e2e8f0;
  position: relative;
}

.game-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(255, 255, 255, 1), transparent);
}

.wheel-image {
  background-image: url('https://images.unsplash.com/photo-1518895949257-7621c3c786d7?q=80&w=2070&auto=format&fit=crop');
}

.game-content {
  padding: 0 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
  flex-grow: 1;
}

.game-content h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.game-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
  flex-grow: 1;
}

.game-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #111111;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  margin-top: 8px;
  transition: background-color 0.2s ease, transform 0.2s ease;
  align-self: flex-start;
}

.game-card:hover .game-btn {
  background-color: var(--header-accent);
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .games-section {
    padding: 64px 20px;
  }
  
  .games-grid {
    gap: 32px;
  }
  
  .game-image {
    height: 200px;
  }
  
  .game-content {
    padding: 0 24px 24px 24px;
  }
}


/* Testimonials Section */
.testimonials-section {
  background-color: #111111;
  color: #ffffff;
  padding: 100px 0;
  font-family: var(--font-body);
  overflow: hidden;
}

.testimonials-container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.testimonials-header {
  text-align: center;
  padding: 0 24px;
}

.testimonials-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
  color: #ffffff;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block !important;
  margin-bottom: 24px;
}

.testimonials-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--header-accent);
  border-radius: 2px;
}

.testimonials-subtitle {
  font-size: 18px;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-slider-wrapper {
  position: relative;
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  display: flex;
}

/* Gradient fades for the slider edges */
.testimonials-slider-wrapper::before,
.testimonials-slider-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.testimonials-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #111111 0%, transparent 100%);
}

.testimonials-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #111111 0%, transparent 100%);
}

.testimonials-track {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  /* Animation moves the track leftwards. Duration depends on number of items */
  animation: scroll-testimonials 80s linear infinite;
  width: max-content;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-testimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Translate by exactly half the width since we duplicated the items */
    transform: translateX(calc(-50% - 12px));
  }
}

.testimonial-card {
  background-color: #1e293b;
  border-radius: 20px;
  padding: 32px;
  width: 380px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid #334155;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--header-accent);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: #fbbf24;
}

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

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #e2e8f0;
  margin: 0;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--header-accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
}

.author-name {
  font-weight: 600;
  color: #ffffff;
  font-size: 15px;
}

@media (max-width: 1024px) {
  .testimonials-section {
    padding: 64px 0;
  }
  
  .testimonial-card {
    width: 300px;
    padding: 24px;
  }
  
  .testimonials-slider-wrapper::before,
  .testimonials-slider-wrapper::after {
    width: 40px;
  }
}

/* FAQ Section */
.faq-section {
  background-color: #ffffff;
  padding: 100px 24px;
  font-family: var(--font-body);
  color: #111111;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.faq-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
  color: #111111;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block !important;
  margin-bottom: 24px;
}

.faq-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--header-accent);
  border-radius: 2px;
}

.faq-subtitle {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  background-color: #f8fafc;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-color: #cbd5e1;
}

.faq-item[open] {
  background-color: #ffffff;
  border-color: var(--header-accent);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
}

.faq-question {
  padding: 24px;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none; /* Hide default arrow */
  position: relative;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  color: #64748b;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-question .faq-icon {
  transform: rotate(180deg);
  color: var(--header-accent);
}

.faq-answer {
  padding: 0 24px 24px 24px;
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
}

.faq-answer p {
  margin: 0;
}

@media (max-width: 1024px) {
  .faq-section {
    padding: 64px 20px;
  }
  
  .faq-question {
    padding: 20px;
    font-size: 16px;
  }
  
  .faq-answer {
    padding: 0 20px 20px 20px;
  }
}

/* ====== TYPOGRAPHY OVERRIDES ====== */

/* Headings: Playfair Display */
h1, h2, h3, h4, h5, h6,
.hero-title, 
.about-title, 
.games-title, 
.testimonials-title, 
.faq-title, 
.contact-title,
.jeu-title {
  font-family: var(--font-heading) !important;
}

/* Accents/Buttons/Numbers: Space Grotesk */
.hero-btn,
.game-btn,
.contact-submit,
.chat-send-btn,
.about-stats-number,
.header-balance-pill,
.header-badge,
.faq-question,
.form-group label,
.author-name,
.play-btn {
  font-family: var(--font-accent) !important;
}

/* Ensure Body inherits Inter properly where not explicitly set */
body, p, a, input, textarea, span {
  font-family: var(--font-body);
}

/* Some specific overrides for typography sizing to make Playfair look perfect */
.hero-title {
  letter-spacing: normal !important; /* Playfair shouldn't be too tight */
}
.about-title, .games-title, .testimonials-title, .faq-title {
  letter-spacing: normal !important;
}

/* Game Miniature Iframe CSS */
.game-image-wrapper {
  height: 240px;
  width: 100%;
  position: relative;
  background-color: #f1f5f9;
  overflow: hidden;
}

.game-iframe-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 250%;
  height: 250%;
  transform: scale(0.4);
  transform-origin: 0 0;
  border: none;
  pointer-events: none;
  user-select: none;
}

.game-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(255, 255, 255, 1), transparent);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .game-image-wrapper {
    height: 200px;
  }
}


/* ====== REUSABLE CURVED GRID BACKGROUNDS ====== */
.bg-perspective {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  perspective: 800px;
  z-index: 1;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
}

.bg-grid {
  position: relative;
  top: -20%;
  width: 50%;
  height: 140%;
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 80px 80px;
}

.bg-grid.citron {
  background-image: 
    linear-gradient(to right, var(--header-accent) 1px, transparent 1px),
    linear-gradient(to bottom, var(--header-accent) 1px, transparent 1px);
  opacity: 0.3;
}

@media (max-width: 1024px) {
  .bg-grid {
    background-size: 40px 40px;
  }
}

.bg-grid.left {
  transform-origin: left center;
  transform: rotateY(35deg) scale(1.2);
  -webkit-mask-image: linear-gradient(to right, black 10%, transparent 90%);
  mask-image: linear-gradient(to right, black 10%, transparent 90%);
  left: -5%;
}

.bg-grid.right {
  transform-origin: right center;
  transform: rotateY(-35deg) scale(1.2);
  -webkit-mask-image: linear-gradient(to left, black 10%, transparent 90%);
  mask-image: linear-gradient(to left, black 10%, transparent 90%);
  right: -5%;
}

/* Abstract Underline Highlight */
.abstract-underline {
    position: relative;
    display: inline;
    z-index: 1;
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: #a3e635;
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
}

/* Registration Overlay */
.registration-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.registration-modal {
    background: #111111;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #333333;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    width: 90%;
    max-width: 500px;
    text-align: center;
}

.registration-modal h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-top: 0;
    font-weight: 900;
    text-transform: uppercase;
}

.registration-modal p {
    color: #a1a1aa;
    margin-bottom: 30px;
}

.registration-modal input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: #000000;
    border: 1px solid #333333;
    color: #ffffff;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 1rem;
}

.registration-modal input:focus {
    outline: none;
    border-color: #a3e635;
}

.registration-modal .btn {
    width: 100%;
    background-color: #a3e635;
    color: #111111;
    border: none;
    padding: 15px;
    font-size: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s;
}

.registration-modal .btn:hover {
    background-color: #84cc16;
}

/* Profile Dropdown */
.header-profile.dropdown {
    position: relative;
    cursor: pointer;
}



.profile-dropdown-menu.show {
    display: flex;
}

.profile-dropdown-menu a {
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.profile-dropdown-menu a:hover {
    background: #222222;
}
.registration-modal {
    position: relative;
}


.header-login-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}
.header-avatar-circle {
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.profile-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 12px;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    width: 280px;
    display: none;
    flex-direction: column;
    z-index: 9999;
    overflow: hidden;
}

.profile-dropdown-menu.show {
    display: flex;
}

.profile-info-header {
    padding: 16px;
    border-bottom: 1px solid var(--header-border);
    background: rgba(255,255,255,0.02);
}

.profile-wins-section {
    padding: 16px;
    border-bottom: 1px solid var(--header-border);
}

#menu-logout:hover {
    background: rgba(239, 68, 68, 0.1);
}

/* Video Section */
.video-section {
  background-color: var(--header-bg);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.video-slider {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  background: #000;
  aspect-ratio: 9/16; max-height: 80vh; max-width: 450px; margin: 0 auto;
}

@media (max-width: 768px) {
  .video-slider {
    aspect-ratio: 9/16;
  }
}

.video-slide {
  display: none;
  width: 100%;
  height: 100%;
}

.video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: none;
}

/* Fading animation */
.video-slide.fade {
  animation-name: fade;
  animation-duration: 0.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* Next & previous buttons */
.slider-prev, .slider-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.3s ease;
  border-radius: 50%;
  background-color: rgba(0,0,0,0.5);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  z-index: 10;
}

.slider-prev {
  left: 16px;
}

.slider-next {
  right: 16px;
}

.slider-prev:hover, .slider-next:hover {
  background-color: var(--header-accent);
  color: #000;
}

/* The dots/bullets/indicators */
.slider-dots {
  text-align: center;
  margin-top: 24px;
}

.video-dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: rgba(255,255,255,0.3);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.video-dot.active, .video-dot:hover {
  background-color: var(--header-accent);
}

/* Desktop video side-by-side override */
@media (min-width: 769px) {
  .video-slider {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 32px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    aspect-ratio: auto;
    max-height: none;
  }

  .video-slide {
    display: block !important;
    width: 320px;
    height: auto;
    aspect-ratio: 9/16;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background: #000;
  }

  .slider-prev,
  .slider-next,
  .slider-dots {
    display: none !important;
  }
}

/* ====== BLOG PAGE ====== */
.blog-page-main {
  position: relative;
  min-height: 100vh;
  padding: 140px 24px 80px 24px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.blog-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 48px;
  color: #fff;
}

.blog-header {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 64px;
}

.blog-section h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--header-accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #cbd5e1;
  margin: 0;
}

/* Comments Section */
.blog-comments-section {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.comments-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 32px;
  color: #fff;
}

.fake-comments-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comment-item {
  display: flex;
  gap: 16px;
}

.comment-reply {
  margin-left: 48px;
  position: relative;
}

.comment-reply::before {
  content: '';
  position: absolute;
  left: -28px;
  top: -20px;
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

.comment-reply::after {
  content: '';
  position: absolute;
  left: -28px;
  top: 20px;
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #475569, #1e293b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-avatar {
  background: linear-gradient(135deg, var(--header-accent), #d97706);
  color: #000;
}

.comment-body {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.comment-author {
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comment-time {
  font-size: 12px;
  color: #64748b;
  font-weight: 400;
}

.admin-author {
  color: var(--header-accent);
}

.badge {
  background: rgba(245, 158, 11, 0.2);
  color: var(--header-accent);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comment-text {
  font-size: 15px;
  line-height: 1.6;
  color: #cbd5e1;
}

/* WP Default Comments Overrides */
.wp-real-comments .comment-respond {
  background: rgba(255, 255, 255, 0.03);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.wp-real-comments .comment-form-comment label,
.wp-real-comments .comment-form-author label,
.wp-real-comments .comment-form-email label {
  display: block;
  margin-bottom: 8px;
  color: #cbd5e1;
  font-size: 14px;
}

.wp-real-comments input[type="text"],
.wp-real-comments input[type="email"],
.wp-real-comments textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px;
  color: #fff;
  font-family: inherit;
  margin-bottom: 16px;
}

.wp-real-comments input[type="submit"] {
  background: var(--header-accent);
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wp-real-comments input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.wp-real-comments .comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.wp-real-comments .comment {
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .blog-container {
    padding: 24px;
  }
  .blog-title {
    font-size: 28px;
  }
  .blog-comments-section {
    padding: 20px;
  }
  .comment-reply {
    margin-left: 24px;
  }
  .comment-reply::before {
    left: -12px;
  }
  .comment-reply::after {
    left: -12px;
    width: 8px;
  }
}
