:root {
  --bg-color: #0d0d0d;
  --text-color: #ffffff;
  --accent-color: #64aee1; /* Gold-ish for premium feel */
  --hover-color: #3b9fe1;
  --font-main: "Inter", sans-serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
}

/* Background texture or subtle effect */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.03"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
  pointer-events: none;
  z-index: 1;
}

.container {
  text-align: center;
  z-index: 2;
  padding: 2rem;
  max-width: 600px;
  animation: fadeIn 1.2s ease-out;
}

.logo {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff 0%, #aaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 2px solid var(--accent-color);
  display: inline-block;
  padding-bottom: 0.5rem;
}

.logo img {
  width: 100%;
  height: auto;
  max-width: 150px;
}

.badge {
      display: block;
    background: rgba(201, 165, 92, 0.1);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    width: max-content;
    margin: 1.5rem auto;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 300;
  line-height: 1.2;
}

p {
  font-size: 1.1rem;
  color: #888;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.contact-btn {
  display: inline-block;
  text-decoration: none;
  color: var(--bg-color);
  background-color: var(--accent-color);
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: var(--hover-color);
  transform: translateY(-2px);
}

.footer {
  position: absolute;
  bottom: 2rem;
  font-size: 0.8rem;
  color: #444;
  z-index: 2;
}

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

@media (max-width: 480px) {
  .logo {
    font-size: 2rem;
  }
  h1 {
    font-size: 2rem;
  }
}
