:root {
  --color-bg: #090a0f;
  --color-surface: #12141c;
  --color-surface-hover: #181b26;
  --color-card: #151822;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-glow: rgba(223, 88, 22, 0.4);
  --color-orange: #DF5816;
  --color-orange-glow: rgba(223, 88, 22, 0.5);
  --color-orange-light: #f97316;
  --color-text: #f8fafc;
  --color-text-muted: #94a3b8;
  --font-main: 'Outfit', sans-serif;
  --font-title: 'Orbitron', 'Outfit', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(223, 88, 22, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, rgba(9, 10, 15, 0.90) 0%, rgba(9, 10, 15, 0.97) 100%),
    url('/assets/banner.png');
  background-attachment: fixed;
  background-position: center top;
  background-size: cover;
  min-height: 100vh;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #090a0f;
}
::-webkit-scrollbar-thumb {
  background: #2a2e3d;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-orange);
}

/* Top Header Wrapper & Navbar */
.top-header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
}

.navbar {
  position: relative;
  height: 80px;
  background: rgba(9, 10, 15, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
}

.nav-container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 2px solid var(--color-orange);
  box-shadow: 0 0 15px var(--color-orange-glow);
}

.brand-titles {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
}

.brand-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 8px 14px;
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.discord-btn {
  background: rgba(88, 101, 242, 0.15);
  color: #5865F2 !important;
  border: 1px solid rgba(88, 101, 242, 0.3);
}
.discord-btn:hover {
  background: #5865F2 !important;
  color: #fff !important;
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-play {
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
  color: #fff;
  padding: 10px 22px;
  box-shadow: 0 4px 20px var(--color-orange-glow);
}
.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(223, 88, 22, 0.7);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--color-orange-glow);
}

.btn-secondary {
  background: #202432;
  color: #fff;
  border: 1px solid var(--color-border);
}
.btn-secondary:hover {
  background: #292e40;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid var(--color-border);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 12px;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding-top: 180px;
  padding-bottom: 90px;
  text-align: center;
  overflow: hidden;
  background: 
    radial-gradient(ellipse at 50% 30%, rgba(223, 88, 22, 0.22) 0%, transparent 65%),
    linear-gradient(180deg, rgba(9, 10, 15, 0.65) 0%, rgba(9, 10, 15, 0.85) 60%, #090a0f 100%),
    url('/assets/banner.png') center top / cover no-repeat;
  border-bottom: 1px solid rgba(223, 88, 22, 0.25);
  box-shadow: inset 0 -40px 60px #090a0f;
}

.hero-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(223, 88, 22, 0.12);
  border: 1px solid rgba(223, 88, 22, 0.35);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
  100% { opacity: 1; transform: scale(1); }
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #fff 30%, var(--color-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: var(--color-text-muted);
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* Connect Box */
.connect-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 16px 20px;
  max-width: 600px;
  margin: 0 auto 36px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.connect-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.connect-input-group {
  display: flex;
  gap: 10px;
}

.connect-input-group input {
  flex: 1;
  background: #090a0f;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--color-orange);
  font-family: monospace;
  font-size: 15px;
  font-weight: 700;
  outline: none;
}

.btn-copy {
  background: #252a3a;
  color: #fff;
  border: 1px solid var(--color-border);
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-copy:hover {
  background: var(--color-orange);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Metrics Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.metric-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: all 0.3s ease;
}
.metric-card:hover {
  border-color: var(--color-border-glow);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.metric-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.metric-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.metric-value {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

/* Section Shared Styles */
.section-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--color-orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

.section-desc {
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.6;
}

/* Steam Verification Card */
.verify-card-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.verify-card {
  background: linear-gradient(135deg, rgba(21, 24, 34, 0.9), rgba(15, 17, 24, 0.9));
  border: 1px solid var(--color-border-glow);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.verify-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.step-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  position: relative;
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--color-orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  margin: 0 auto 16px;
}

.step-box h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-box p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.verify-action-box {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-steam {
  background: linear-gradient(135deg, #1b2838, #2a475e);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  border: 1px solid rgba(102, 192, 244, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}
.btn-steam:hover {
  background: linear-gradient(135deg, #2a475e, #1b2838);
  border-color: #66c0f4;
  transform: translateY(-2px);
}

.btn-group {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  border: 1px solid var(--color-border);
}
.btn-group:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Store Filter Tabs */
.store-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--color-orange);
  color: #fff;
  border-color: var(--color-orange);
  box-shadow: 0 4px 15px var(--color-orange-glow);
}

/* Kits Grid */
.kits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}

.kit-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.kit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--kit-color, var(--color-orange));
}

.kit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.kit-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--kit-color, #fff);
  border: 1px solid currentColor;
}

.kit-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.kit-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.kit-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-orange);
}

.kit-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.kit-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kit-feature-item {
  font-size: 13px;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.kit-card-actions {
  display: flex;
  gap: 10px;
}

.btn-inspect {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid var(--color-border);
  padding: 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: 0.2s;
}
.btn-inspect:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 30px;
  transition: all 0.3s;
}
.feature-card:hover {
  border-color: var(--color-border-glow);
  transform: translateY(-3px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(223, 88, 22, 0.1);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Rules List */
.rules-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rule-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.rule-num {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 900;
  color: var(--color-orange);
  opacity: 0.8;
}

.rule-text h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.rule-text p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-card {
  background: #141722;
  border: 1px solid var(--color-border-glow);
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9);
}

.modal-header {
  padding: 20px 26px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.modal-close {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 28px;
  cursor: pointer;
}
.modal-close:hover {
  color: #fff;
}

.modal-body {
  padding: 24px 26px;
}

.modal-desc {
  color: var(--color-text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.modal-perks-box, .modal-items-box {
  margin-bottom: 20px;
}

.modal-perks-box h4, .modal-items-box h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-orange);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-perks-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-perks-box li {
  font-size: 13px;
  color: #cbd5e1;
}

.kit-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}

.kit-item-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  font-size: 12px;
}

.kit-item-badge span {
  display: block;
  font-weight: 700;
  color: #fff;
}
.kit-item-badge small {
  color: var(--color-orange);
}

.modal-command-box {
  background: #090a0f;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.modal-command-box code {
  color: var(--color-orange);
  font-family: monospace;
  font-weight: 800;
  font-size: 15px;
}

.modal-footer {
  padding: 16px 26px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--color-border);
  background: #06070a;
  padding: 40px 24px;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.footer-left h3 {
  font-family: var(--font-title);
  font-size: 16px;
  margin-bottom: 2px;
}

.footer-left p {
  font-size: 12px;
  color: var(--color-text-muted);
}

.footer-right {
  display: flex;
  gap: 20px;
}

.footer-right a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s;
}
.footer-right a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 868px) {
  .nav-links {
    display: none;
  }
}

/* Modals Overlay and Styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  padding: 20px;
  animation: modalFadeIn 0.2s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.modal-content {
  background: #12141d;
  border: 1px solid rgba(223, 88, 22, 0.4);
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 40px rgba(223, 88, 22, 0.2);
  overflow: hidden;
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.modal-close {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover {
  color: #fff;
}

.modal-body {
  padding: 24px;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

/* Floating Rust Gaming Promo Popup Widget */
.floating-bubble-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999999 !important;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: bubblePopIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, bubbleHoverFloat 3.5s ease-in-out infinite alternate;
}

@keyframes bubblePopIn {
  0% { transform: scale(0.6) translateY(30px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

@keyframes bubbleHoverFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-5px); }
}

.bubble-body {
  position: relative;
  background: linear-gradient(135deg, rgba(20, 22, 34, 0.95), rgba(12, 13, 20, 0.98));
  backdrop-filter: blur(20px);
  color: #fff;
  padding: 12px 18px 12px 14px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(223, 88, 22, 0.25);
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  border: 1px solid rgba(223, 88, 22, 0.45);
  max-width: 440px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.bubble-body:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: #DF5816;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.8), 0 0 35px rgba(223, 88, 22, 0.45);
}

.bubble-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #DF5816, #b91c1c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(223, 88, 22, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bubble-text-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.bubble-header-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bubble-tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #DF5816;
}

.bubble-badge-pill {
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(223, 88, 22, 0.18);
  color: #ffaa75;
  border: 1px solid rgba(223, 88, 22, 0.35);
  letter-spacing: 0.5px;
}

.bubble-message {
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.35;
}

.bubble-action-arrow {
  color: #DF5816;
  font-size: 13px;
  transition: transform 0.2s ease;
  margin-left: 2px;
}

.bubble-body:hover .bubble-action-arrow {
  transform: translateX(4px);
  color: #ff7733;
}

.bubble-close-btn {
  background: rgba(18, 20, 29, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #94a3b8;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.bubble-close-btn:hover {
  background: #ef4444;
  color: #fff;
  border-color: #ef4444;
  transform: scale(1.1);
}

@media (max-width: 640px) {
  .floating-bubble-widget {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }
  .bubble-body {
    max-width: 100%;
    flex: 1;
    padding: 10px 12px;
  }
}
