/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0A0A0F;
  color: white;
  font-family: Arial, sans-serif;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
}

.header.scrolled {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.icon-dices {
  width: 40px;
  height: 40px;
  color: #FFD700;
}

.logo-text h1 {
  color: #FFD700;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
}

.logo-text p {
  color: #FF1744;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
}

/* Desktop Nav */
.nav-desktop {
  display: flex;
  gap: 2rem;
}

.nav-desktop button {
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}

.nav-desktop button:hover {
  color: #FFD700;
}

.nav-desktop button::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FFD700;
  transition: width 0.3s;
}

.nav-desktop button:hover::after {
  width: 100%;
}

/* Login Button */
.login-btn {
  background: linear-gradient(to right, #FFD700, #FFA500);
  color: black;
  font-weight: 600;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: linear-gradient(to right, #FFE55C, #FFD700);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* Mobile menu */
.menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile button {
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s;
}

.nav-mobile button:hover {
  color: #FFD700;
}

@media (max-width: 768px) {
  .nav-desktop,
  .login-desktop {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav-mobile.open {
    display: flex;
  }
}

/* Dummy sections for scroll testing */
.section {
  height: 100vh;
  padding-top: 100px;
  font-size: 2rem;
  text-align: center;
}
