* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Marzo W00 Regular";
  background: #f9f9f9;
  color: #222;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
 
main {
  width: 100%;
  min-height: 100vh; 
  padding: 2rem 1rem;
  text-align: center;
  background-image: url('./images/EldenRing_ShadowBG.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; 
  color: #fff; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.content-box {
  background-color: rgba(0, 0, 0, 0.6); 
  padding: 2rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center; 
  max-width: 80%; 
}

img[src="./images/CrescoYugenNameDesign.png"] {
  max-width: 300px; 
  height: auto;
  margin: 0.5rem 0 -1rem -3rem; 
  object-fit: contain;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.5rem 0; 
}

p[class="subtitle"] {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0.2rem 0 0 0; 
  letter-spacing: 0.05em;
}

.button-container {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  width: 100%; 
  margin-top: 1.5rem; 
  max-width: 600px; 
}

.nav-button {
  background-color: rgba(0, 0, 0, 0.6); 
  border: none;
  border-radius: 0; 
  padding: 0.5rem 1rem; 
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 700;
  font-size: 1rem;
  color: #fff; 
}

.nav-button:hover {
  background-color: rgba(0, 0, 0, 0.8); 
}

.nav-button a {
  color: #fff;
  text-decoration: none;
  display: block;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.1);
}

.social-links img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.social-links a:hover img {
  transform: scale(1.1);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  main {
    padding: 1rem;
  }

  .content-box {
    padding: 1.5rem;
    max-width: 90%;
  }

  img[src="./images/CrescoYugenNameDesign.png"] {
    max-width: 250px; 
  }

  h1 {
    font-size: 1.5rem;
  }

  p[class="subtitle"] {
    font-size: 1rem;
  }

  .button-container {
    margin-top: 1rem;
    max-width: 500px;
  }

  .nav-button {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  .social-links {
    gap: 1rem;
  }
    
    .social-links img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  main {
    padding: 0.5rem;
  }

  .content-box {
    padding: 1rem;
    max-width: 95%;
  }

  .social-links {
    gap: 0.75rem;
  }
    
    .social-links img {
    width: 24px;
    height: 24px;
  }

  img[src="./images/CrescoYugenNameDesign.png"] {
    max-width: 200px; 
  }

  h1 {
    font-size: 1.2rem;
  }

  p[class="subtitle"] {
    font-size: 0.9rem;
  }

  .button-container {
    flex-direction: column; 
    margin-top: 0.75rem;
    max-width: 100%;
    gap: 0.5rem; 
  }

  .nav-button {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }

  .social-links {
    margin-top: 0.75rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .social-links a {
    font-size: 0.8rem;
  }
}

@import url(https://db.onlinewebfonts.com/c/1e6ec96c95301fa73aa1d026f161a269?family=Marzo+W00+Regular); 

@font-face {
    font-family: "Marzo W00 Regular";
    src: url("https://db.onlinewebfonts.com/t/1e6ec96c95301fa73aa1d026f161a269.eot");
    src: url("https://db.onlinewebfonts.com/t/1e6ec96c95301fa73aa1d026f161a269.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/1e6ec96c95301fa73aa1d026f161a269.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/1e6ec96c95301fa73aa1d026f161a269.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/1e6ec96c95301fa73aa1d026f161a269.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/1e6ec96c95301fa73aa1d026f161a269.svg#Marzo W00 Regular")format("svg");
}