:root {
  --primary-color: #ff3e3e;
  --secondary-color: #2c2f33;
  --accent-color: #5cdb5c;
  --text-color: #ffffff;
  --background-color: #1a1a1a;
  --card-color: #2c2c2c;
}

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

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

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

/* Header */
header {
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  backdrop-filter: blur(10px);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://hebbkx1anhila5yf.public.blob.vercel-storage.com/ChatGPT%20Image%2014%20maj%202025%2C%2015_02_46-2eXIYc1c8FzQ0miXpOi0peM5IFJPF4.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

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

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-color);
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, background-color 0.3s;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-5px);
  background-color: #ff5252;
}

.mascot {
  position: absolute;
  right: 10%;
  bottom: 0;
  width: 300px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Features Section */
.features {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: var(--primary-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--card-color);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Bot Section */
.bot-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-top: 30px;
}

.bot-info {
  flex: 1;
}

.bot-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.bot-info p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.bot-features {
  list-style-type: none;
  margin-bottom: 30px;
}

.bot-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 30px;
}

.bot-features li::before {
  content: "✓";
  color: var(--accent-color);
  position: absolute;
  left: 0;
}

.bot-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.bot-avatar {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 5px solid var(--primary-color);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 62, 62, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 62, 62, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 62, 62, 0);
  }
}

/* Join Section */
.join {
  padding: 100px 0;
  background-color: var(--secondary-color);
  text-align: center;
}

.join-content {
  max-width: 700px;
  margin: 0 auto;
}

.join h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

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

.discord-invite {
  background-color: #5865f2;
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
  display: inline-block;
}

.discord-invite p {
  margin-bottom: 10px;
  font-weight: 600;
}

.invite-link {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
}

/* Privacy Page */
.privacy-content {
  padding: 150px 0 50px;
}

.privacy-section {
  background-color: var(--card-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
}

.privacy-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.privacy-section p {
  margin-bottom: 15px;
}

.privacy-section ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.privacy-section ul li {
  margin-bottom: 10px;
}

/* 404 Page */
.error-page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.error-code {
  font-size: 10rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 62, 62, 0.5);
}

.error-message {
  font-size: 2rem;
  margin-bottom: 30px;
}

.error-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
}

/* Footer */
footer {
  background-color: #111;
  padding: 40px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.footer-links a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.copyright {
  margin-top: 20px;
  color: #777;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero h2 {
    font-size: 2.5rem;
  }

  .mascot {
    width: 250px;
    right: 5%;
  }

  .bot-content {
    flex-direction: column;
  }

  .bot-info,
  .bot-image {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .mascot {
    width: 200px;
    position: relative;
    right: auto;
    margin: 30px auto 0;
  }

  .hero {
    height: auto;
    padding: 150px 0 50px;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero h2 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .feature-card {
    padding: 20px;
  }

  .join h2 {
    font-size: 2rem;
  }

  .error-code {
    font-size: 6rem;
  }

  .error-message {
    font-size: 1.5rem;
  }
}
