/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #1f1f2e, #2d2d44);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
}

/* Container Card */
.container {
  width: 100%;
  max-width: 480px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  text-align: center;
}

/* Card look */
.card {
  background: rgba(20, 20, 35, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

/* Headings */
h1 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
p {
  margin-bottom: 20px;
  color: #ddd;
  font-size: 0.95rem;
}

/* Links on Linktree page */
.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.link-btn {
  display: block;
  padding: 14px;
  background: #5865F2;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.link-btn:hover {
  background: #4752C4;
  transform: translateY(-2px);
}

/* Giveaway Page Styles */
.input-group {
  margin: 15px 0;
  text-align: left;
}
.input-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.input-group input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 0.95rem;
}

/* Task list like Gleam.io */
.tasks {
  margin: 20px 0;
}
.task {
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(6px); /* Safari/Chrome */
  backdrop-filter: blur(6px); /* Modern browsers */

  border-radius: 12px;
  padding: 15px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.2s, background 0.3s;
}
.task:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.task-info {
  text-align: left;
}
.task h3 {
  margin: 0;
  font-size: 1.1rem;
}
.task p {
  margin: 5px 0 0;
  font-size: 0.9rem;
  opacity: 0.8;
}
.task-btn {
  padding: 10px 15px;
  background: #5865F2;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s;
}
.task-btn:hover {
  background: #4752C4;
}

/* Discord Login Button */
button#discordLogin {
  margin-top: 20px;
  padding: 14px;
  width: 100%;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  background: #5865F2;
  color: white;
  transition: background 0.2s, transform 0.2s;
}
button#discordLogin:hover {
  background: #4752C4;
  transform: translateY(-2px);
}
