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

body {
  font-family: 'Lato', sans-serif;
  background: #1a1a1a url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
  color: #e0e0e0;
}

/* Layout */
.wrapper {
  width: 960px;
  margin: 20px auto;
  background: #222;
  border: 1px solid #444;
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.1);
}

/* Header */
header {
  background: linear-gradient(to bottom, #8e44ad, #5e3370);
  padding: 20px;
  color: white;
  border-bottom: 2px solid #4b2354;
}

header h1 {
  margin-bottom: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}

nav ul li a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ff66ff;
}

/* Main */
.main {
  display: flex;
}

aside {
  width: 25%;
  padding: 20px;
  background: #2b2b2b;
  border-right: 1px solid #444;
}

aside h2 {
  margin-bottom: 10px;
  color: #c592e0;
}

aside ul {
  list-style: square inside;
}

aside ul li {
  margin-bottom: 8px;
}

aside ul li a {
  color: #c7a3ff;
  text-decoration: none;
}

aside ul li a:hover {
  color: #ff66ff;
}

/* Content */
.content {
  padding: 20px;
  width: 75%;
}

.content h2 {
  margin-bottom: 10px;
  color: #dba8ff;
}

.content p {
  margin-bottom: 15px;
  color: #ddd;
}

/* Button */
.button {
  display: inline-block;
  background: linear-gradient(to bottom, #a84be3, #6c2aa4);
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 0 10px rgba(168, 75, 227, 0.4);
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, box-shadow 0.3s;
}

.button:hover {
  background: linear-gradient(to bottom, #c56af0, #8032c5);
  box-shadow: 0 0 12px #c56af0;
}

a:hover {
  color: #e0b3ff;
  text-shadow: 0 0 5px #a94eff, 0 0 10px #a94eff, 0 0 20px #a94eff;
  transition: all 0.3s ease;
}

/* Glow on buttons */
.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #5e3370;
  color: #fff;
  border: none;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  box-shadow: 0 0 5px #000;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #7c3aad;
  box-shadow: 0 0 10px #a94eff, 0 0 20px #a94eff, 0 0 30px #a94eff;
}

/* Footer */
footer {
  padding: 10px 20px;
  background: #1b1b1b;
  font-size: 0.9em;
  text-align: center;
  color: #aaa;
  border-top: 1px solid #333;
}
