@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
  --primary-bg: #041522;
  --secondary-bg: #08293D;
  --surface-color: rgba(16, 58, 82, 0.7);
  --surface-border: rgba(0, 191, 255, 0.25);
  --aqua-blue: #00BFFF;
  --coral-green: #00D9A3;
  --treasure-gold: #FFC857;
  --text-light: #F0F8FF;
  --text-muted: #A0C0D0;
  --premium-gradient: linear-gradient(135deg, #00BFFF, #00D9A3, #FFC857);
  --glow-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
  --gold-glow: 0 0 25px rgba(255, 200, 87, 0.4);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--primary-bg);
  color: var(--text-light);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Beautiful custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--primary-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--surface-border);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--aqua-blue);
}

/* Animated Water Background Effects */
.ocean-ambient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: radial-gradient(circle at 50% 10%, #093754 0%, #041522 70%);
  overflow: hidden;
}

.ocean-ambient::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&w=1920&q=50') center/cover no-repeat;
  opacity: 0.12;
  mix-blend-mode: screen;
}

/* Bubbles System */
.bubbles {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.bubble {
  position: absolute;
  bottom: -50px;
  background: rgba(0, 191, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5);
  animation: rise 15s infinite linear;
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(0.6) rotate(0deg);
    opacity: 0;
    left: var(--bubble-left, 10%);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-110vh) scale(1.2) rotate(360deg);
    opacity: 0;
    left: var(--bubble-drift, 15%);
  }
}

/* Navigation Header - Enhanced Slim & Fluid */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(4, 21, 34, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 191, 255, 0.1);
  transition: var(--transition-smooth);
  padding: 4px 0;
}

header.site-header.scrolled {
  background: rgba(4, 21, 34, 0.92);
  border-bottom: 1px solid rgba(0, 191, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 191, 255, 0.1);
  padding: 2px 0;
}

.header-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 32px;
  transition: var(--transition-smooth);
}

@media (max-width: 1200px) {
  .header-container {
    padding: 6px 20px;
  }
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-light);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.logo-wrapper:hover {
  transform: translateY(-1px);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--premium-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(0, 191, 255, 0.2);
  font-size: 0.85rem;
  transition: var(--transition-smooth);
  animation: float 4s ease-in-out infinite;
}

.logo-text span {
  color: var(--aqua-blue);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: var(--transition-smooth);
  position: relative;
  padding: 6px 12px;
  border-radius: 4px;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-light);
  background: rgba(0, 191, 255, 0.05);
  text-shadow: 0 0 8px rgba(0, 191, 255, 0.4);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 12px;
  width: 0;
  height: 2px;
  background: var(--premium-gradient);
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: calc(100% - 24px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .btn {
  padding: 8px 20px;
  font-size: 0.8rem;
}

/* Button & UI Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background: var(--premium-gradient);
  color: #041522;
  box-shadow: var(--glow-shadow);
  background-size: 200% auto;
}

.btn-primary:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 191, 255, 0.5);
}

.btn-secondary {
  background: rgba(16, 58, 82, 0.6);
  color: var(--text-light);
  border: 1px solid var(--surface-border);
}

.btn-secondary:hover {
  background: rgba(0, 191, 255, 0.15);
  border-color: var(--aqua-blue);
  color: var(--aqua-blue);
  transform: translateY(-3px);
}

.btn-gold {
  background: linear-gradient(135deg, #FFD700, #FFC857);
  color: #041522;
  box-shadow: var(--gold-glow);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 200, 87, 0.6);
}

/* Hamburger menu for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text-light);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 80px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(4,21,34,0.4) 0%, rgba(4,21,34,0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 217, 163, 0.15);
  border: 1px solid var(--coral-green);
  color: var(--coral-green);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-light);
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
  margin-bottom: 24px;
}

.hero-title span {
  background: var(--premium-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Feature Grid Layouts */
.section-wrapper {
  padding: 100px 24px;
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  color: var(--aqua-blue);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-light);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--treasure-gold);
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Glass Card styling */
.glass-card {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 40px 30px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transition: 0.5s;
}

.glass-card:hover::before {
  left: 100%;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: var(--aqua-blue);
  box-shadow: var(--glow-shadow);
}

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

.feature-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: rgba(0, 191, 255, 0.1);
  border: 1px solid rgba(0, 191, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--aqua-blue);
  font-size: 1.8rem;
}

.feature-card:nth-child(even) .feature-icon-box {
  background: rgba(0, 217, 163, 0.1);
  border-color: rgba(0, 217, 163, 0.2);
  color: var(--coral-green);
}

.feature-card:nth-child(3n) .feature-icon-box {
  background: rgba(255, 200, 87, 0.1);
  border-color: rgba(255, 200, 87, 0.2);
  color: var(--treasure-gold);
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Stats Section */
.stats-banner {
  background: linear-gradient(180deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
  padding: 60px 24px;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-num {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  font-family: var(--font-display);
  background: var(--premium-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* Game Interface Page Styles */
.game-showcase-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.game-viewport-card {
  background: #020b12;
  border: 4px solid var(--surface-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8), var(--glow-shadow);
  position: relative;
}

.game-frame-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.game-frame-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.game-controls-bar {
  background: var(--secondary-bg);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--surface-border);
}

.game-meta-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.game-title {
  font-weight: 700;
  color: var(--text-light);
  font-size: 1.15rem;
}

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

.btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-icon:hover {
  background: var(--aqua-blue);
  color: #041522;
  box-shadow: var(--glow-shadow);
  transform: scale(1.1);
}

.btn-icon.active {
  background: var(--coral-green);
  border-color: var(--coral-green);
  color: #041522;
}

/* Informational / Content Page styling */
.content-layout {
  max-width: 900px;
  margin: 0 auto;
}

.rich-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.rich-text h2 {
  font-family: var(--font-display);
  color: var(--text-light);
  font-size: 1.8rem;
  margin: 40px 0 20px;
}

.rich-text h3 {
  color: var(--aqua-blue);
  font-size: 1.3rem;
  margin: 30px 0 15px;
}

.rich-text p {
  margin-bottom: 20px;
}

.rich-text ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.rich-text li {
  margin-bottom: 10px;
}

/* FAQ Accordion Styling */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-trigger {
  width: 100%;
  padding: 22px 30px;
  background: none;
  border: none;
  color: var(--text-light);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon-arrow {
  transition: var(--transition-smooth);
  color: var(--aqua-blue);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 30px;
}

.faq-item.open .faq-content {
  max-height: 1000px;
  transition: max-height 0.6s cubic-bezier(1, 0, 1, 0);
  padding-bottom: 24px;
}

.faq-item.open .faq-icon-arrow {
  transform: rotate(180deg);
}

/* Adventure / Reef Explorer Hub Grid */
.adventure-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.tier-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.tier-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tier-gold-badge {
  background: rgba(255, 200, 87, 0.15);
  border: 1px solid var(--treasure-gold);
  color: var(--treasure-gold);
}

.tier-aqua-badge {
  background: rgba(0, 191, 255, 0.15);
  border: 1px solid var(--aqua-blue);
  color: var(--aqua-blue);
}

.tier-coral-badge {
  background: rgba(0, 217, 163, 0.15);
  border: 1px solid var(--coral-green);
  color: var(--coral-green);
}

/* Forms (Contact Page) */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
}

.contact-info-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(0, 191, 255, 0.1);
  border: 1px solid var(--surface-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aqua-blue);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--text-light);
}

.contact-info-text p {
  color: var(--text-muted);
}

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

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.form-control {
  background: rgba(4, 21, 34, 0.6);
  border: 1px solid var(--surface-border);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--aqua-blue);
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.2);
}

/* Age verification overlay banner */
.age-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(4, 21, 34, 0.95);
  backdrop-filter: blur(15px);
  border-top: 2px solid var(--coral-green);
  z-index: 10000;
  padding: 24px;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.8);
  transition: var(--transition-smooth);
}

.age-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.age-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.age-banner-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.age-banner-text strong {
  color: var(--text-light);
}

.age-banner-actions {
  display: flex;
  gap: 16px;
}

/* Footer style */
footer.site-footer {
  background: #020b12;
  border-top: 1px solid var(--surface-border);
  padding: 80px 24px 30px;
  position: relative;
  overflow: hidden;
}

.wave-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: linear-gradient(90deg, transparent 50%, var(--surface-border) 50%), linear-gradient(90deg, var(--surface-border) 50%, transparent 50%);
  background-size: 20px 12px;
  background-repeat: repeat-x;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 15px 0 24px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--aqua-blue);
}

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

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--aqua-blue);
  transform: translateX(5px);
}

.footer-disclaimer-card {
  background: rgba(16, 58, 82, 0.4);
  border: 1px solid rgba(0, 191, 255, 0.15);
  border-radius: 12px;
  padding: 20px;
}

.footer-disclaimer-card h5 {
  color: var(--coral-green);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.footer-disclaimer-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-legal-links a:hover {
  color: var(--aqua-blue);
}

/* Animations Definitions */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hamburger {
    display: flex;
    z-index: 1001;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    left: auto;
    width: 320px;
    height: 100vh;
    background: rgba(4, 21, 34, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid rgba(0, 191, 255, 0.2);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 24px;
    gap: 24px;
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .header-actions {
    margin-left: auto;
    margin-right: 20px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .header-actions .btn {
    display: none;
  }
}