/* ---------------------
#  CSS - Void-Space 
--------------------- */
* 
  {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

:root 
  {
      --primary: #FF6B9D;
      --secondary: #FFA07A;
      --accent: #FFD700;
      --dark: #1A0F2E;
      --light: #2D1B3D;
      --cream: #3A2654;
      --soft-pink: #C97BA7;
      --text-light: #E8D5F2;
  }

html 
  {
      height: 100%;
      background-image: url("void-space.jpg");
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
  }

body 
  {
      margin: 0;
      padding: 20px;
      min-height: 100vh;
      font-family: 'Quicksand', sans-serif;
      color: var(--text-light);
      background: transparent;
      display: flex;
      flex-direction: column;
  }

/* Header */
header 
  {
      text-align: center;
      margin-bottom: 30px;
      animation: slideDown 0.6s ease-out;
  }

header h1 
  {
      font-size: 3.5em;
      font-weight: 700;
      color: var(--primary);
      text-shadow: 3px 3px 0px rgba(255, 182, 193, 0.3);
      font-family: 'Courier Prime', monospace;
      letter-spacing: 2px;
      margin-bottom: 10px;
  }

header p 
  {
      color: var(--soft-pink);
      font-size: 1.1em;
      font-style: italic;
  }

/* Main container */
.container 
  {
      display: grid;
      grid-template-columns: 250px 1fr 250px;
      gap: 20px;
      flex: 1;
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
  }

/* Sidebars */
.sidebar 
  {
      background: linear-gradient(135deg, rgba(45, 27, 61, 0.85) 0%, rgba(58, 38, 84, 0.85) 100%);
      border-radius: 20px;
      padding: 25px;
      border: 3px dashed var(--primary);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
      animation: fadeInSidebar 0.7s ease-out;
      overflow-y: auto;
      max-height: 600px;
  }

.sidebar-left 
  {
      animation-delay: 0.1s;
  }

.sidebar-right 
  {
      animation-delay: 0.2s;
  }

.sidebar h2 
  {
      font-size: 1.4em;
      color: var(--primary);
      margin-bottom: 20px;
      font-family: 'Courier Prime', monospace;
      border-bottom: 2px solid var(--secondary);
      padding-bottom: 10px;
  }

.menu-item 
  {
      margin-bottom: 15px;
  }

.menu-item a 
  {
      display: block;
      padding: 12px 15px;
      background: linear-gradient(90deg, var(--soft-pink), var(--secondary));
      color: white;
      text-decoration: none;
      border-radius: 12px;
      font-weight: 600;
      transition: all 0.3s ease;
      border: 2px solid transparent;
      box-shadow: 0 4px 12px rgba(255, 107, 157, 0.2);
  }

.menu-item a:hover 
  {
      background: linear-gradient(90deg, var(--primary), var(--accent));
      transform: translateX(5px);
      box-shadow: 0 6px 16px rgba(255, 107, 157, 0.4);
      border-color: var(--accent);
  }

/* Content area */
.content 
  {
      background: linear-gradient(135deg, rgba(58, 38, 84, 0.9) 0%, rgba(45, 27, 61, 0.9) 100%);
      border-radius: 20px;
      padding: 40px;
      border: 3px solid var(--accent);
      box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
      animation: slideUp 0.8s ease-out;
      position: relative;
      overflow: hidden;
  }

.content::before 
  {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: 
          radial-gradient(circle at 20% 50%, rgba(255, 107, 157, 0.05) 0%, transparent 50%),
          radial-gradient(circle at 80% 80%, rgba(255, 160, 122, 0.05) 0%, transparent 50%);
      pointer-events: none;
      z-index: 0;
  }

.content > * 
  {
      position: relative;
      z-index: 1;
  }

.content h2 
  {
      color: var(--primary);
      font-size: 2.2em;
      margin-bottom: 25px;
      font-family: 'Courier Prime', monospace;
      border-bottom: 3px dashed var(--secondary);
      padding-bottom: 15px;
  }

.content h3 
  {
      color: var(--secondary);
      font-size: 1.5em;
      margin-top: 25px;
      margin-bottom: 12px;
  }

.content p 
  {
      line-height: 1.8;
      margin-bottom: 15px;
      font-size: 1.05em;
      color: var(--text-light);
  }

.content a 
  {
      color: var(--primary);
      text-decoration: underline wavy var(--secondary);
      font-weight: 600;
      transition: all 0.3s ease;
  }

.content a:hover 
  {
      color: var(--secondary);
      text-decoration: underline solid var(--primary);
  }

/* Lists */
.content ul, .content ol 
  {
      margin-left: 25px;
      margin-bottom: 20px;
  }

.content li 
  {
      margin-bottom: 10px;
      line-height: 1.7;
  }

/* Decorative box */
.info-box 
  {
      background: linear-gradient(90deg, rgba(201, 123, 167, 0.3), rgba(255, 160, 122, 0.3));
      border-radius: 15px;
      padding: 20px;
      margin: 25px 0;
      border-left: 5px solid var(--primary);
      color: var(--text-light);
      box-shadow: 0 4px 15px rgba(255, 107, 157, 0.15);
  }

.info-box strong 
  {
      color: var(--accent);
  }

/* Responsive */
@media (max-width: 1024px) 
  {
      .container 
        {
            grid-template-columns: 1fr;
        }
  
      .sidebar 
        {
            max-height: none;
        }
  
      header h1 
        {
            font-size: 2.5em;
        }
  }

/* Animations */
@keyframes slideDown 
  {
      from 
        {
            opacity: 0;
            transform: translateY(-30px);
        }
      to 
        {
            opacity: 1;
            transform: translateY(0);
        }
  }

@keyframes slideUp 
  {
      from 
        {
            opacity: 0;
            transform: translateY(30px);
        }
      to 
        {
            opacity: 1;
            transform: translateY(0);
        }
  }

@keyframes fadeInSidebar 
  {
      from 
        {
            opacity: 0;
        }
      to 
        {
            opacity: 1;
        }
  }

/* Scrollbar styling */
.sidebar::-webkit-scrollbar 
  {
      width: 8px;
  }

.sidebar::-webkit-scrollbar-track 
  {
      background: rgba(255, 107, 157, 0.1);
      border-radius: 10px;
  }

.sidebar::-webkit-scrollbar-thumb 
  {
      background: var(--primary);
      border-radius: 10px;
  }

.sidebar::-webkit-scrollbar-thumb:hover 
  {
      background: var(--secondary);
  }