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

body { 
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #333;
}

.container { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 20px;
  width: 100%;
}

header { 
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 40px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

header .container {
  text-align: center;
}

h1 { 
  font-size: 2.5rem; 
  color: #fa7e1e;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.subtitle {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

main { 
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero { 
  background: white;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

.domains {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.domain-badge {
  background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  box-shadow: 0 4px 15px rgba(253, 160, 133, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.domain-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(253, 160, 133, 0.7);
}

footer { 
  background: rgba(0, 0, 0, 0.2);
  color: white;
  text-align: center;
  padding: 30px 20px;
  margin-top: 40px;
}

footer p {
  font-size: 0.95rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  .subtitle { font-size: 1rem; }
  .hero { padding: 40px 25px; }
  .hero h2 { font-size: 1.5rem; }
  .domain-badge { padding: 12px 24px; font-size: 1rem; }
}