:root {
  --gold: #f2c94c;
  --white: #ffffff;
  --black: #121212;
  --soft: #1e1e1e;
}

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

body {
  font-family: 'Cardo', Georgia, serif;
  background-color: var(--black);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 1rem;
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
}

.logo-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 0.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  animation: iconFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(242, 201, 76, 0.3));
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0px) scale(1);
    filter: drop-shadow(0 0 20px rgba(242, 201, 76, 0.3));
  }
  50% {
    transform: translateY(-8px) scale(1.05);
    filter: drop-shadow(0 0 30px rgba(242, 201, 76, 0.5));
  }
}

.brand {
  font-size: 3.5rem;
  font-weight: normal;
  letter-spacing: 6px;
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1.1;
  animation: brandGlow 4s ease-in-out infinite;
}

@keyframes brandGlow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(242, 201, 76, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(242, 201, 76, 0.6);
  }
}

.subtitle {
  font-size: 1.3rem;
  color: #ddd;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  font-weight: 400;
}

.description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #bbb;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--gold);
  background: rgba(242, 201, 76, 0.1);
  border: 2px solid var(--gold);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: iconPulse 2s ease-in-out infinite;
}

.social-icon:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(242, 201, 76, 0.4);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

@keyframes iconPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(242, 201, 76, 0.3);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(242, 201, 76, 0);
  }
}

/* Tablet */
@media (max-width: 768px) {
  .container {
    padding: 1.5rem;
  }
  
  .brand {
    font-size: 3rem;
    letter-spacing: 5px;
  }
  
  .subtitle {
    font-size: 1.2rem;
  }
  
  .description {
    font-size: 1rem;
  }
  
  .logo-icon {
    width: 70px;
    height: 70px;
  }
  
  .social-icons {
    gap: 1.25rem;
  }
  
  .social-icon {
    width: 44px;
    height: 44px;
  }
  
  .social-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  body {
    padding: 0.5rem;
  }
  
  .container {
    padding: 1rem;
  }
  
  .brand {
    font-size: 2.5rem;
    letter-spacing: 3px;
  }
  
  .subtitle {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .logo-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0.25rem;
  }
  
  .social-icons {
    gap: 1rem;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
  }
  
  .social-icon svg {
    width: 16px;
    height: 16px;
  }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
  body {
    padding: 0.5rem;
  }
  
  .container {
    padding: 1rem;
  }
  
  .brand {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }
  
  .subtitle {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .logo-icon {
    width: 50px;
    height: 50px;
  }
} 