html, body {
  margin: 0;
  padding: 0;
  background: #15141A;
  color: #FFFFFF;
  font-family: 'Courier New', monospace;
  min-height: 100vh;
  transition: all 0.5s ease;
}

.container {
  position: relative;
  z-index: 1;
  background: rgba(30, 20, 30, 0.95);
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  margin: 2rem auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border: 1px solid #FFB7C5;
  text-align: center;
  transition: all 0.5s ease;
}

.pride-container {
  border: 2px solid white;
  background: rgba(0, 0, 0, 0.85) !important;
  box-shadow: 
    0 0 20px rgba(255, 255, 255, 0.3),
    0 0 40px rgba(255, 255, 255, 0.1) !important;
  animation: prideContainer 15s ease infinite;
}

.pride-style {
  background: linear-gradient(
    45deg,
    rgba(255, 0, 24, 0.2),
    rgba(255, 165, 44, 0.2),
    rgba(255, 255, 65, 0.2),
    rgba(0, 128, 24, 0.2),
    rgba(0, 0, 251, 0.2),
    rgba(134, 0, 125, 0.2)
  ) !important;
}

.trans-style {
  background: linear-gradient(
    45deg,
    rgba(85, 205, 252, 0.2),
    rgba(247, 168, 184, 0.2),
    rgba(255, 255, 255, 0.2)
  ) !important;
}

@keyframes prideContainer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.pride-title {
  color: white !important;
  text-shadow: 
    0 0 5px rgba(0,0,0,0.8),
    0 0 10px rgba(255,255,255,0.5) !important;
  animation: prideTitle 5s linear infinite;
}

@keyframes prideTitle {
  0% { text-shadow: 
        0 0 5px rgba(0,0,0,0.8),
        0 0 10px rgba(255, 0, 24, 0.8); }
  16% { text-shadow: 
        0 0 5px rgba(0,0,0,0.8),
        0 0 10px rgba(255, 165, 44, 0.8); }
  32% { text-shadow: 
        0 0 5px rgba(0,0,0,0.8),
        0 0 10px rgba(255, 255, 65, 0.8); }
  48% { text-shadow: 
        0 0 5px rgba(0,0,0,0.8),
        0 0 10px rgba(0, 128, 24, 0.8); }
  64% { text-shadow: 
        0 0 5px rgba(0,0,0,0.8),
        0 0 10px rgba(0, 0, 251, 0.8); }
  80% { text-shadow: 
        0 0 5px rgba(0,0,0,0.8),
        0 0 10px rgba(134, 0, 125, 0.8); }
  100% { text-shadow: 
        0 0 5px rgba(0,0,0,0.8),
        0 0 10px rgba(255, 0, 24, 0.8); }
}

.trans-title {
  color: white !important;
  text-shadow: 
    0 0 5px rgba(0,0,0,0.8),
    0 0 10px rgba(255,255,255,0.5) !important;
  animation: transTitle 5s linear infinite;
}

@keyframes transTitle {
  0% { text-shadow: 
        0 0 5px rgba(0,0,0,0.8),
        0 0 10px rgba(85, 205, 252, 0.8); }
  33% { text-shadow: 
        0 0 5px rgba(0,0,0,0.8),
        0 0 10px rgba(247, 168, 184, 0.8); }
  66% { text-shadow: 
        0 0 5px rgba(0,0,0,0.8),
        0 0 10px rgba(255, 255, 255, 0.8); }
  100% { text-shadow: 
        0 0 5px rgba(0,0,0,0.8),
        0 0 10px rgba(85, 205, 252, 0.8); }
}

.pride-element {
  border-color: white !important;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3) !important;
}

.halloween-container {
  border: 1px solid #FF7A33;
  background: rgba(30, 10, 0, 0.95);
  box-shadow: 0 0 20px rgba(255, 122, 51, 0.5);
}

.halloween-title {
  color: #FF7A33 !important;
  text-shadow: 0 0 10px rgba(255, 122, 51, 0.3) !important;
}

.halloween-element {
  border-color: #FF7A33 !important;
  box-shadow: 0 0 15px rgba(255, 122, 51, 0.3) !important;
}

.halloween-badge {
  background-color: #FF7A33 !important;
  color: #15141A !important;
}

#halloweenBanner {
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #FF7A33;
  color: #FF7A33;
  text-shadow: 0 0 10px rgba(255, 122, 51, 0.8);
}

:root {
  --newyear-primary: #2d4a2b;
  --newyear-secondary: #3c643a;
  --newyear-accent: #4a7d46;
  --newyear-light: #d1ffce;
}

body.newyear-theme {
  background: #0d1a0c !important;
}

.newyear-container {
  background: rgba(18, 28, 17, 0.95) !important;
  border: 1px solid var(--newyear-accent) !important;
  box-shadow: 
    0 0 15px rgba(58, 92, 56, 0.6),
    0 0 30px rgba(46, 79, 45, 0.3) !important;
}

.newyear-title {
  color: var(--newyear-light) !important;
  text-shadow: 0 0 10px rgba(74, 143, 69, 0.7) !important;
}

.newyear-element {
  border-color: var(--newyear-secondary) !important;
  box-shadow: 0 0 10px rgba(74, 125, 70, 0.4) !important;
}

.newyear-container pre {
  background: #1a2c19 !important;
  border: 1px solid var(--newyear-secondary) !important;
}

.newyear-badge {
  background-color: var(--newyear-primary) !important;
  color: var(--newyear-light) !important;
  border: 1px solid var(--newyear-accent) !important;
}

#newyearBanner {
  background: linear-gradient(
    to right,
    rgba(25, 35, 25, 0.8),
    rgba(40, 60, 40, 0.8)
  );
  border: 1px solid var(--newyear-accent);
  color: var(--newyear-light);
  text-shadow: 0 0 10px rgba(90, 156, 85, 0.8);
  box-shadow: 0 0 15px rgba(58, 92, 56, 0.6);
  display: none
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: block;
  border: 3px solid #FFB7C5;
  box-shadow: 0 0 15px rgba(255, 183, 197, 0.3);
  transition: all 0.5s ease;
}

h1, h2 {
  color: #FFB7C5;
  text-align: center;
  text-shadow: 0 0 10px rgba(255, 183, 197, 0.3);
  margin: 1rem 0;
  transition: all 0.5s ease;
}

a {
  color: #FFB7C5;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #FFC7D6;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  background-color: #FFB7C5;
  color: #15141A;
  margin: 5px auto;
  transition: all 0.5s ease;
}

pre {
  background: #1C1A2A;
  padding: 1rem;
  border-radius: 5px;
  border: 1px solid #FFB7C5;
  overflow-x: auto;
  text-align: left;
  margin: 1rem auto;
  max-width: 90%;
  transition: all 0.5s ease;
}

code {
  color: #FFC7D6;
}

.tech-stack {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.cyber-life-list {
  text-align: left;
  padding-left: 20px;
  margin: 1rem auto;
  max-width: 80%;
  list-style-type: none;
}

.cyber-life-list li {
  margin: 0.5rem 0;
  padding-left: 1em;
  text-indent: -1em;
}

.cyber-life-list li::before {
  content: "•";
  color: #FFB7C5;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.code-block {
  position: relative;
}

.code-runner {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 183, 197, 0.1);
  border: 1px solid #FFB7C5;
  border-radius: 3px;
  color: #FFC7D6;
  padding: 4px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
  width: 24px;
  height: 24px;
  display: none;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.code-block:hover .code-runner {
  opacity: 1;
}

.code-runner:hover {
  background: rgba(255, 183, 197, 0.2);
}

.code-runner i {
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.code-output {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1C1A2A;
  padding: 1rem;
  white-space: pre-wrap;
  display: none;
}

.code-output.show {
  display: block;
  animation: fadeIn 0.2s ease;
}

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

.banner {
  display: none;
  text-align: center;
  margin: 15px 0;
  padding: 10px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.4em;
  color: #FFC7D6;
  animation: pulse 2s infinite;
}

.pride-banner {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid white;
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  display: block;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.social-links {
  list-style-type: none;
  padding-left: 0;
  text-align: center;
}

.social-links li {
  margin: 0.5rem 0;
  padding-left: 0;
  text-indent: 0;
}

.social-icon {
     width: 1em;
     height: 1em;
     display: inline-block;
     vertical-align: middle;
     margin-right: 0.3em;
     fill: currentColor;
}

.icon-container {
  display: inline-block;
  pointer-events: none;
}

.svg-icon {
    vertical-align: middle;
    border: none !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-block;
    pointer-events: none;
    user-select: none;
}