* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
@font-face {
  font-family: "WiiNTLG";
  src: url("https://assetscdn.revivemii.xyz/misc/wii/nintendo_NTLGDB_001.ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --btn-path: "https://assetscdn.revivemii.xyz/misc/wii/iplsetting.ash.d/EU/COMMON/BTN/";
}

body {
  font-family: "WiiNTLG", Arial, sans-serif;
  background-color: #121212;
  background-image: url("https://assetscdn.revivemii.xyz/misc/wii/iplsetting.ash.d/EU/COMMON/BG/BG_common_M.gif");
  background-repeat: repeat;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}

a {
  text-decoration: none;
  color: #00c2ff;
}

ul {
  list-style: none;
}

header {
  background: transparent;
  padding: 20px 40px;
  position: static;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

header .logo-img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  display: block;
}

header .logo span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00c2ff;
  line-height: 1;
}

header nav {
  display: flex;
  gap: 20px;
}

header nav a {
  color: #ffffff;
  font-size: 1rem;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: #00c2ff;
}

.hero {
  background: transparent;
  color: white;
  padding: 80px 20px;
  text-align: center;
  min-height: 100vh;
}

.hero .container {
  max-width: 1200px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 64px;
  padding: 0 20px;
  font-family: inherit;
  font-size: 1.1rem;
  color: #555555;
  text-shadow: 0 1px 0 #ffffff;
  background-image: url("https://assetscdn.revivemii.xyz/misc/wii/iplsetting.ash.d/EU/COMMON/BTN/Under.gif");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
}

.cta:hover {
  color: #ffffff;
  text-shadow: none;
  background-image: url("https://assetscdn.revivemii.xyz/misc/wii/iplsetting.ash.d/EU/COMMON/BTN/Under_on.png"), url("https://assetscdn.revivemii.xyz/misc/wii/iplsetting.ash.d/EU/COMMON/BTN/Under.gif");
}

section {
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3 {
  color: #ffffff;
  margin-bottom: 20px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #b0b0b0;
}

.projects-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.project-card {
  background: #1f1f1f;
  border-radius: 10px;
  overflow: hidden;
  width: 90%;
  transition: transform 0.3s ease;
  z-index:-10px;
}
.project-card img {
  border-radius: 10px;
  border:2px solid #00c2ff;
}

.project-card:hover {
  transform: translateY(-10px);
  z-index:-10px;
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 1rem;
  color: #999999;
}

.card-content .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 68px;
  padding: 0 16px;
  margin-top: 15px;
  color: #555555;
  text-shadow: 0 1px 0 #ffffff;
  text-align: center;
  background-image: url("https://assetscdn.revivemii.xyz/misc/wii/iplsetting.ash.d/EU/COMMON/BTN/Btn_List_M.gif");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.card-content .btn:hover {
  color: #ffffff;
  text-shadow: none;
  background-image: url("https://assetscdn.revivemii.xyz/misc/wii/iplsetting.ash.d/EU/COMMON/BTN/List_M_on.png"), url("https://assetscdn.revivemii.xyz/misc/wii/iplsetting.ash.d/EU/COMMON/BTN/Btn_List_M.gif");
}

.about {
  background: #1f1f1f;
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
}

.about p {
  color: #b0b0b0;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

footer {
  background: transparent;
  padding: 40px 20px;
  text-align: center;
  color: #cccccc;
}

footer p {
  margin-bottom: 10px;
}

footer a {
  color: #00c2ff;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #0094cc;
}

form {
  background-color: #1f1f1f;
  padding: 20px;
  border-radius: 10px;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  background-color: #2c2c2c;
  color: #ffffff;
  border: 1px solid #444;
  border-radius: 5px;
}

form button {
  width: 170px;
  height: 54px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 1rem;
  color: #555555;
  text-shadow: 0 1px 0 #ffffff;
  background-image: url("https://assetscdn.revivemii.xyz/misc/wii/iplsetting.ash.d/EU/COMMON/BTN/Btn_List_M02.gif");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
}

form button:hover {
  color: #ffffff;
  text-shadow: none;
  background-image: url("https://assetscdn.revivemii.xyz/misc/wii/iplsetting.ash.d/EU/COMMON/BTN/List_M02_on.png"), url("https://assetscdn.revivemii.xyz/misc/wii/iplsetting.ash.d/EU/COMMON/BTN/Btn_List_M02.gif");
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: #00c2ff;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0094cc;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  header .logo-container {
    margin-bottom: 20px;
  }

  .projects-list {
    flex-direction: column;
  }

  .project-card {
    width: 100%;
  }

  .cta {
    font-size: 1.2rem;
    width: 260px;
    height: 70px;
  }
}
