body {
  background: #181818;
  color: #f5f5f5;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  cursor: url("images-Photoroom.png"), pointer;
}

.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100vw;
  position: relative;
  gap: 0;
}

.arrow {
  background: #232323;
  color: #ff4e4e;
  border: none;
  font-size: 2.2em;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  z-index: 2;
  height: 56px;
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 -18px;
}
.arrow:hover {
  background: #ff4e4e;
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 4px 24px rgba(255, 78, 78, 0.25);
}

.container {
  width: 95%;
  max-width: 600px;
  background: #232323;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.5s;
}
.slide.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.profile-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #444;
  margin-bottom: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  background: #111;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.profile-img:hover {
  transform: scale(1.05);
  border-color: #ff4e4e;
}

h1 {
  margin: 0;
  font-size: 2.2em;
  color: #ff4e4e;
  transition: color 0.3s ease;
}

h1:hover {
  color: #ff6666;
}

h2 {
  margin: 8px 0 20px 0;
  font-size: 1.2em;
  color: #ffa500;
  transition: color 0.3s ease;
}

h2:hover {
  color: #ffbb33;
}

.quote {
  display: block;
  margin: 18px 0 0 0;
  font-style: italic;
  color: #b0b0b0;
}

.fail-list {
  margin-top: 28px;
  background: #1a1a1a;
  border-radius: 10px;
  padding: 16px;
  transition: background 0.3s ease;
}

.fail-list:hover {
  background: #2a2a2a;
}

.fail-list h3 {
  margin: 0 0 10px 0;
  color: #ff4e4e;
}

.fail-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fail-list li {
  margin: 6px 0;
  color: #f5f5f5;
  transition: color 0.3s ease;
}

.fail-list li:hover {
  color: #ffa500;
}

.logo {
  height: 100px !important;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 32px 0 0 0;
  align-items: center;
}
.social {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #181818;
  color: #f5f5f5;
  text-decoration: none;
  font-size: 1.15em;
  padding: 12px 28px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  border: 1.5px solid transparent;
}
.social i {
  font-size: 1.4em;
}
.social.instagram:hover {
  background: #e1306c;
  color: #fff;
  border-color: #e1306c;
  transform: scale(1.05);
}
.social.twitter:hover {
  background: #1da1f2;
  color: #fff;
  border-color: #1da1f2;
  transform: scale(1.05);
}
.social.discord:hover {
  background: #5865f2;
  color: #fff;
  border-color: #5865f2;
  transform: scale(1.05);
}
.social.youtube:hover {
  background: #ff0000;
  color: #fff;
  border-color: #ff0000;
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .slider-container {
    min-height: 100vh;
    width: 100vw;
  }
  .container {
    width: 94vw;
    max-width: 380px;
    margin: 32px auto 56px auto;
    border-radius: 14px;
    min-height: unset;
    max-height: 95vh;
    padding: 24px 6vw;
    box-sizing: border-box;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    background: #232323;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .profile-img {
    width: 120px;
    height: 120px;
  }
  h1 {
    font-size: 1.4em;
  }
  h2 {
    font-size: 1.1em;
  }
  .fail-list {
    padding: 10px;
  }
  .arrow {
    font-size: 1.5em;
    height: 40px;
    width: 40px;
    margin: 0 -8px;
  }
  .social {
    font-size: 1em;
    padding: 10px 12px;
  }
}
