    :root {
      --theme-primary: #b0ecff;   /* main accent color (buttons, gradients) default: #b0ecff */
      --theme-secondary: #ffffff; /* lighter accent for gradients default #ffffff*/
      --theme-text: #003366;      /* general text color defalt: #003366*/
      --link-text: #003366;	  /* color of hyper links, both clicked and unclicked, default: #003366*/
      --theme-pfp: #5aecf9;      /* pfp ring color, default: #5aecf9*/
      --theme-highlight: #5aecf980; /* header background, default:5aecf980 */
      --theme-bg: rgba(255, 255, 255, 0.6); /* frosted glass panels */

    }

    html, body {
      min-height: 100%;
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', Arial, sans-serif;
      background: url('images/backgrounds/wind.jpg') center/cover no-repeat fixed;
      color: var(--theme-text);
      line-height: 1.6;
      display: flex;
      flex-direction: column;
    }

    body { overflow-x: hidden; }

    header {
      background: url('images/backgrounds/header.webp') center/cover no-repeat;
      backdrop-filter: blur(4px);
      text-align: center;
      padding: 2.5em 1em;
      color: #ffffff;
      box-shadow: 0 4px 10px rgba(0,0,0,1);
    }

    header h1 {
      background: var(--theme-highlight);
      backdrop-filter: blur(4px);
      display: inline-block;
      padding: 0.5em 1em;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    nav {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(4px);
      padding: 0.8em;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1em;
    }

    nav ul li a {
      background: linear-gradient(to bottom, var(--theme-primary), var(--theme-secondary));
      padding: 0.6em 1.2em;
      border-radius: 10px;
      text-decoration: none;
      color: var(--theme-text);
      font-weight: bold;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      transition: background 0.3s;
    }

    nav ul li a:hover {
      background: linear-gradient(to bottom, var(--theme-primary), var(--theme-secondary));
    }

    main {
      flex: 1;
      max-width: 800px;
      margin: 2em auto;
      padding: 1.5em;
      background: var(--theme-bg);
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      backdrop-filter: blur(8px);
    }

    .profile-pic {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      border: 4px solid var(--theme-pfp);
      display: block;
      margin: 0 auto 1.5em;
    }

    .skill-item {
      background: linear-gradient(to bottom, var(--theme-primary), var(--theme-secondary));
      color: var(--theme-text);
      padding: 0.6em 1em;
      border-radius: 20px;
      font-size: 0.9em;
      margin: 0.3em;
      display: inline-block;
      box-shadow: inset 0 1px 2px rgba(255,255,255,0.7), 0 3px 6px rgba(0,0,0,0.2);
      transition: transform 0.2s ease;
    }

    .skill-item:hover { transform: scale(1.05); }

    .aero-player {
      margin-top: 2em;
      padding: 1em;
      background: linear-gradient(to bottom, var(--theme-primary), var(--theme-secondary));
      border-radius: 15px;
      box-shadow: inset 0 1px 2px rgba(255,255,255,0.7), 0 4px 10px rgba(0,0,0,0.15);
      text-align: center;
    }

    .aero-player a { color: inherit; text-decoration: none; }
    .aero-player a:hover { text-decoration: underline; }

    footer {
      background: rgba(255,255,255,0.4);
      backdrop-filter: blur(4px);
      color: var(--theme-text);
      text-align: center;
      padding: 0.4em;
      width: 100%;
      font-size: 0.9em;
      box-shadow: 0 -2px 6px rgba(0,0,0,0.1);
      animation: slideUp 0.8s ease-out;
    }

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

    a:link, a:visited {
       color: var(--link-text);
	}
/* Aero Webring*/
#aero-ring {
  background: linear-gradient(to bottom, var(--theme-primary) 0%, var(--theme-secondary) 100%);
  border-radius: 10px;
  box-shadow: 
    0 0 4px rgba(0, 0, 0, 0.5),
    inset 0 2px 1px rgba(255, 255, 255, 0.15),
    inset 0 -2px 1px rgba(0, 0, 0, 0.35);
  font-family: sans-serif;
  margin: 10px auto 0px auto;
  max-width: 15rem;
  padding: 0.75rem;
}

#aero-ring a,
#aero-ring a:visited {
  color: var(--link-text) !important;
}

#aero-ring a:focus,
#aero-ring a:hover,
#aero-ring a:active {
  color: lightgrey !important;
}

/* Spoiler Text*/
spoiler, spoiler2, spoiler a, spoiler2 a{ 
  color: var(--theme-text); 
  background-color: var(--theme-text);
}

spoiler:hover, spoiler:hover a {
  color: white;
}

spoiler2:hover, spoiler2:hover a { 
 background-color:white; 
}

.post-header {
  background:linear-gradient(to bottom,var(--theme-primary), var(--theme-secondary));
  display:inline-block;
  border-radius:8px;
  padding:0.3em 0.6em;
  font-weight:bold;
  font-size:0.9em;
}

#blog {
  background: rgba(255,255,255,0.6);
  border-radius: 15px;
  padding: 0.8em;
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.7),
    0 3px 6px rgba(0,0,0,0.2);
}
