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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
}

@media (prefers-color-scheme: dark) {
  body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  }
}

/* Navigation Styles */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-link:hover {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.nav-link.active {
  border-bottom-color: #ffffff;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    width: 70%;
    max-width: 300px;
    height: 100vh;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 0.75rem 0;
  }
}

/* Main Content */
main {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.container {
  width: 100%;
  max-width: 600px;
  text-align: center;
  animation: fadeIn 1s ease-in;
}

.page-content {
  text-align: left;
}

.page-content h1 {
  text-align: center;
  margin-bottom: 2rem;
}

.page-content .message,
.page-content .submessage {
  text-align: center;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.message {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 1rem;
  font-weight: 500;
}

.submessage {
  font-size: clamp(1rem, 2vw, 1.1rem);
  opacity: 0.9;
  margin-bottom: 2rem;
}

.dots {
  font-size: 2rem;
  letter-spacing: 0.5rem;
  text-align: center;
}

.dots span {
  animation: blink 1.4s infinite;
  opacity: 0;
}

.dots span:nth-child(1) { animation-delay: 0s; }
.dots span:nth-child(2) { animation-delay: 0.2s; }
.dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 480px) {
  .dots {
    font-size: 1.5rem;
  }
}

.contact {
  margin-top: 3rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
  opacity: 0.95;
  text-align: center;
}

.contact a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  padding-bottom: 2px;
}

.contact a:hover {
  border-bottom-color: #ffffff;
  opacity: 1;
}

.contact a:focus {
  outline: 2px dashed rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
}

/* Page-specific Styles */
.coming-soon {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.coming-soon p {
  font-weight: 600;
  margin-bottom: 1rem;
}

.coming-soon ul {
  list-style: none;
  padding-left: 0;
}

.coming-soon li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.coming-soon li:before {
  content: "→";
  position: absolute;
  left: 0;
}

.coffee-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.coffee-emoji {
  font-size: 4rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.coffee-placeholder p {
  font-size: 1.2rem;
  font-weight: 500;
}

/* Footer Styles */
.footer {
  width: 100%;
  background: transparent;
  padding: 3rem 1.5rem 2rem;
  margin-top: auto;
}

.footer-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.footer-meta {
  font-size: 0.75rem;
  opacity: 0.4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-support {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-support:hover {
  opacity: 0.8;
}

.footer-separator {
  opacity: 0.5;
}

.footer-disclaimer {
  font-weight: 400;
}

@media (max-width: 480px) {
  .footer {
    padding: 2.5rem 1.5rem 1.5rem;
  }
  
  .footer-copyright {
    font-size: 0.85rem;
  }
  
  .footer-meta {
    font-size: 0.7rem;
  }
}
