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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px;
  max-width: 1200px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.content {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.left-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.right-section {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 500px;
  height: auto;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 100%;
  height: auto;
}

h1 {
  color: #333;
  margin-bottom: 15px;
  font-size: 2.5em;
  text-align: center;
}

.description {
  color: #666;
  margin-bottom: 30px;
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
}

.discord-widget {
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  background: #5865f2;
  color: white;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #4752c4;
}

@media (max-width: 900px) {
  .content {
    flex-direction: column;
  }

  .logo {
    width: 300px;
  }

  .container {
    padding: 30px 20px;
  }

  h1 {
    font-size: 2em;
  }
}

@media (max-width: 600px) {
  .logo {
    width: 250px;
  }
}
