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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  background: #121212;
}

:root {
  --color-primary: #ffffff;
  --color-secondary: #9d9d9d;
  --color-accent: #f64a35;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  width: 100%;
}

.logo {
  display: block;
  text-decoration: none;
}

.logo img {
  width: auto;
}

.container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  flex: 1 1 0;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  background: url('../images/bg.webp') no-repeat center;
  background-size: contain;
}

h1 {
  color: var(--color-accent);
  margin-bottom: 1rem;
  font-size: 2.8rem;
  font-weight: 600;
  font-family: 'Unbounded', 'Inter', sans-serif;
}

a {
  color: var(--color-accent);
}

.subtitle {
  color: var(--color-secondary);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.footer {
  margin-top: auto;
  text-align: center;
  padding: 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #191919;
  border-radius: 12px;
  color: #9d9d9d;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.social-link img {
  width: 20px;
  height: 20px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .container {
    padding: 2rem;
    margin: 1rem;
    background-size: cover;
  }

  h1 {
    font-size: 2rem;
  }

  .social-links {
    gap: 10px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .social-link img {
    width: 18px;
    height: 18px;
  }
}
