:root {
  --primary-bg: #050505;
  --secondary-bg: #111111;
  --card-bg: #1a1a1a;
  --accent-color: #00ff88; /* Updated to Green Accent */
  --accent-hover: #00cc6a;
  --text-main: #ffffff;
  --text-dim: #999999;
  --border-subtle: #333333;
  --success: #00ff88;
}

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

html, body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-dim);
  line-height: 1.7;
}

body {
  background: radial-gradient(circle at 50% 0%, #1a1a1a 0%, #050505 100%);
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.header {
  text-align: center;
  margin-bottom: 4rem;
}

.header h1 {
  font-size: 3rem;
  color: var(--text-main);
  letter-spacing: -1px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  background: linear-gradient(to bottom, #ffffff 0%, #999999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header p {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.main {
  background: var(--secondary-bg);
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.main > span {
  display: block;
  text-align: center;
  background: rgba(255, 62, 62, 0.1);
  color: var(--accent-color);
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 62, 62, 0.2);
}

.m-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.m-list li a {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: 1rem;
  border: 1px solid var(--border-subtle);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.m-list li a span:first-child {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.m-list li a span:last-child {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--success);
  display: flex;
  align-items: center;
  font-weight: 800;
}

.m-list li a span:last-child::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 10px var(--success);
  animation: blink 1s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}

.m-list li a:hover {
  transform: scale(1.03);
  border-color: var(--accent-color);
  background: #222;
}

.notice {
  background: #000;
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-left: 5px solid var(--accent-color);
}

.notice i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.notice .heading {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.main article h2 {
  color: var(--text-main);
  font-size: 1.8rem;
  margin: 3rem 0 1.5rem;
  border-bottom: 2px solid var(--accent-color);
  display: inline-block;
  padding-bottom: 0.5rem;
}

.main article p {
  margin-bottom: 1.5rem;
}

.main article ul {
  margin-bottom: 2rem;
  list-style: none;
}

.main article ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.main article ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.footer {
  text-align: center;
  margin-top: 5rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border-subtle);
}

.footer p {
  font-size: 0.85rem;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .m-list {
    grid-template-columns: 1fr;
  }
  .header h1 {
    font-size: 2.2rem;
  }
}
