/* === BASE STYLES === */:root {
  --bg-deep: #0a0e27;
  --bg-surface: #131a3d;
  --bg-card: #1a2350;
  --accent: #00e5ff;
  --accent-bright: #14f0ff;
  --accent-glow: rgba(0, 229, 255, 0.4);
  --secondary: #ffb800;
  --text-primary: #ffffff;
  --text-muted: #b8c2e0;
  --border-subtle: rgba(0, 229, 255, 0.18);
  --gradient-main: linear-gradient(135deg, #00e5ff 0%, #0080ff 100%);
  --gradient-gold: linear-gradient(135deg, #ffb800 0%, #ff8a00 100%);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(0, 229, 255, 0.3);
}

* { box-sizing: border-box; }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.65;
  margin: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0, 229, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 184, 0, 0.06) 0%, transparent 50%);
}

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

p { color: var(--text-muted); margin-bottom: 1.2rem; }

a { color: var(--accent); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--accent-bright); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

.cta-button {
  display: inline-block;
  padding: 16px 36px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-main) !important;
  color: #000814 !important;
  box-shadow: 0 10px 30px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.3);
  border: none !important;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.3);
  color: #000814 !important;
}

.btn-gold {
  background: var(--gradient-gold);
  color: #1a0f00;
  box-shadow: 0 10px 30px rgba(255, 184, 0, 0.4);
}

.btn-gold:hover {
  transform: translateY(-3px);
  color: #1a0f00;
}

.content-image {
  margin: 2rem 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

.content-image.portrait img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: none;
  object-fit: unset;
  margin: 0 auto;
}
.content-image.wide img { max-height: 380px; }

/* === LAYOUT STYLES === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 14, 39, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--accent);
  letter-spacing: 2px;
  text-decoration: none;
  text-shadow: 0 0 20px var(--accent-glow);
}

.logo:hover { color: var(--accent-bright); }

.hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s;
}

.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.main-nav a:hover { color: var(--accent); }

.site-header .cta-button {
  padding: 12px 26px;
  font-size: 1rem;
}

.site-footer {
  background: #06091a;
  padding: 50px 0 30px;
  border-top: 1px solid var(--border-subtle);
  margin-top: 80px;
}

.footer-nav {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.copyright {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
    padding: 20px;
  }
  
  .main-nav.is-open { display: block; }
  
  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }
  
  .site-header .cta-button {
    max-width: 200px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .header-inner { gap: 10px; padding: 14px 16px; }
  .logo { font-size: 1.4rem; }
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
    padding: 20px;
  }
  
  .main-nav.is-open { display: block; }
  
  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }
  
  .site-header .cta-button {
    max-width: 200px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .header-inner { gap: 10px; padding: 14px 16px; }
  .logo { font-size: 1.4rem; }
}