/* Basic Reset & Body */
* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: 'Inter', sans-serif;
  background: #121212;
  color: #fff;
  min-height: 100vh;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 25px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
nav .logo { display: flex; align-items: center; gap: 10px; color: #00bfae; font-weight: 700; font-size: 1.4em; flex-shrink: 0; margin-left: -6px; }
nav .logo img { height: 40px; width: auto; display: block; }
nav ul { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; align-items: center; }
nav ul li a { text-decoration: none; color: #fff; font-weight: 600; transition: color 0.3s; }
nav ul li a:hover { color: #00bfae; }
.hamburger { display: none; flex-direction: column; gap: 4px; cursor: pointer; }
.hamburger div { width: 25px; height: 3px; background: #fff; transition: all 0.3s ease; }
.hamburger.open div:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open div:nth-child(2) { opacity: 0; }
.hamburger.open div:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media(max-width:768px) {
  nav ul { position: fixed; top: 60px; left: -100%; flex-direction: column; width: 100%; background: #1e1e1e; gap: 15px; padding: 20px; transition: left 0.3s ease; z-index: 999; }
  nav ul.active { left: 0; }
  .hamburger { display: flex; margin-right: -3px; }
}

/* Giveaway Section */
.giveaway-section {
  max-width: 600px;
  margin: 100px auto 40px;
  background: #1e1e1e;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  text-align: center;
  border: 1px solid #00bfae;
}
.giveaway-section h1 { color: #00bfae; margin-bottom: 10px; font-size: 28px; }
.giveaway-section p { margin-bottom: 25px; color: #ccc; font-size: 16px; }
.giveaway-section form { display: flex; flex-direction: column; gap: 15px; }
.giveaway-section input {
  padding: 12px;
  border: 1px solid #333;
  border-radius: 8px;
  outline: none;
  font-size: 16px;
  background: #121212;
  color: #fff;
  transition: border 0.3s, background 0.3s;
}
.giveaway-section input:focus { border: 1px solid #00bfae; background: #1a1a1a; }
.giveaway-section button {
  background: #00bfae;
  color: #121212;
  border: none;
  padding: 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
}
.giveaway-section button:hover { background: #06d6a0; }

.membership-img {
  max-width: 250px;
  margin: 20px auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
}

/* Confirmation message */
.confirmation-message {
  margin-top: 15px;
  font-weight: 600;
  color: #06d6a0;
}

/* Entries List Heading */
.entries-list::before {
  content: "Entries List";
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #00bfae;
  margin-bottom: 12px;
  text-align: left;
}

/* Entries list container */
.entries-heading {
  margin-top: 30px;
  color: #00bfae;
  font-size: 20px;
  text-align: left;
}

.winner-notice {
  margin-top: 20px;
  font-size: 16px;
  color: #06d6a0;
  text-align: center;
  font-weight: 600;
}

.entries-list {
  margin-top: 25px;
  max-height: 300px;
  overflow-y: auto;
  border-top: 1px solid #00bfae;
  padding-top: 15px;
  text-align: left;
  padding-left: 8px;
  padding-right: 8px;
}
.entry-item {
  padding: 8px 12px;
  border-bottom: 1px solid #333;
  color: #fff;
  font-weight: 500;
}

/* Footer */
footer {
  background:#1e1e1e;
  color:#ccc;
  padding:40px 20px;
  font-family:'Inter',sans-serif;
  margin-top:40px;
}
.footer-grid {
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
  gap:30px;
}
footer h3 { color:#00bfae; margin-bottom:12px; }
footer ul { list-style:none; padding:0; line-height:1.8; }
footer ul li a { color:#ccc; text-decoration:none; }
footer p a { color:#ccc; text-decoration:none; }
.footer-bottom {
  margin-top:40px;
  border-top:1px solid #333;
  padding-top:20px;
  text-align:center;
  font-size:0.85em;
  line-height:1.5;
}
.footer-bottom p { color:#888; margin:0; }
.social-icons a { color:#888; margin:0 8px; font-size:1.2em; }
