/*pallet #1B211A #628141 #8BAE66 #EBD5AB*/

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

html {
  background-color: #ebd5ab;
  color: #1b211a;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.header {
  background-color: #1b211a;
  padding: 30px 0;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header h1 {
  color: #ebd5ab;
  font-family: "Coustard", serif;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.tagline {
  color: #8bae66;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.main-content {
  flex: 1;
  padding: 40px 0 60px;
  text-align: center;
}

.main-content h2 {
  color: #1b211a;
  font-family: "Coustard", serif;
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 900;
}

.icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.icon-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  text-decoration: none;
  color: #1b211a;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(27, 33, 26, 0.08);
  border: 2px solid transparent;
  cursor: pointer;
}

.icon-card:hover {
  transform: translateY(-8px);
  border-color: #8bae66;
}

.icon-container {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  background-color: #ebd5ab;
  color: #1b211a;
  font-size: 2.8rem;
  transition: all 0.3s ease;
}

.icon-card:hover .icon-container {
  background-color: #628141;
  color: #ebd5ab;
}

.icon-card h3 {
  font-family: "Coustard", serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 900;
  text-align: center;
  color: #1b211a;
}

.icon-card p {
  color: #628141;
  margin-bottom: 20px;
  text-align: center;
  font-size: 0.95rem;
  flex-grow: 1;
}

.status {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: #1b211a !important;
  color: #ebd5ab !important;
}

.social-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #8bae66;
}

.social-section h2 {
  color: #1b211a;
  font-family: "Coustard", serif;
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 900;
}

.social-note {
  color: #628141;
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 20px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.social-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px 15px;
  text-decoration: none;
  color: #1b211a;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.social-card:hover {
  transform: translateY(-5px);
}

.social-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.social-card span {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1b211a;
}

.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.steam {
  background-color: #000;
  color: white;
}

.youtube {
  background-color: #ff0000;
  color: white;
}

.tiktok {
  background: linear-gradient(45deg, #25f4ee, #fe2c55, #000000);
  color: white;
}

.footer {
  padding: 25px 0;
  text-align: center;
  margin-top: auto;
}

.footer p {
  color: #8bae66;
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .icons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 2.8rem;
  }

  .main-content h2 {
    font-size: 2rem;
  }

  .social-section h2 {
    font-size: 1.8rem;
  }

  .icons-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 400px;
  }

  .icon-card {
    padding: 25px 15px;
  }

  .social-card {
    padding: 20px 10px;
  }
}

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

  .tagline {
    font-size: 1rem;
  }

  .main-content h2 {
    font-size: 1.8rem;
  }

  .social-section h2 {
    font-size: 1.6rem;
  }

  .icon-container {
    width: 85px;
    height: 85px;
    font-size: 2.2rem;
  }

  .social-icon {
    width: 60px;
    height: 60px;
    font-size: 1.7rem;
  }

  .social-grid {
    grid-template-columns: 1fr;
    max-width: 250px;
  }
}

@media (prefers-color-scheme: dark) {
  html {
    background-color: #1b211a !important;
  }

  .main-content {
    background-color: #1b211a;
  }

  .main-content h2 {
    color: #ebd5ab;
  }

  .social-section h2 {
    color: #ebd5ab;
  }

  .icon-card {
    background-color: #2a3329;
    color: #ebd5ab;
  }

  .social-card {
    background-color: #2a3329;
    color: #ebd5ab;
  }

  .icon-card h3 {
    color: #ebd5ab;
  }

  .social-card span {
    color: #ebd5ab;
  }

  .icon-card p {
    color: #8bae66;
  }

  .social-note {
    color: #8bae66;
  }
}
