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

body {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #050010 0%, #1a0933 50%, #000000 100%);
    cursor: url("https://cur.cursors-4u.net/cursors/cur-11/cur1056.ani"),
         url("https://cur.cursors-4u.net/cursors/cur-11/cur1056.png"),
         auto !important;
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
}
a, .nav-button {
  cursor: url("https://cur.cursors-4u.net/cursors/cur-11/cur1056.ani"),
         url("https://cur.cursors-4u.net/cursors/cur-11/cur1056.png"),
         pointer !important;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 30%, rgba(157, 78, 221, 0.35) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 50% 20%, rgba(255, 0, 255, 0.22) 0%, transparent 55%);
    background-size: 500px 500px, 450px 450px, 400px 400px;
    animation: neonFlow 10s ease-in-out infinite;
    filter: blur(2px);
    transition: transform 0.2s ease-out;
    
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        repeating-linear-gradient(
            45deg,
            rgba(0, 255, 255, 0.05) 0px,
            rgba(0, 255, 255, 0.05) 2px,
            transparent 2px,
            transparent 40px
        );
    animation: neonShift 8s linear infinite;
    transition: transform 0.2s ease-out;
}

@keyframes neonFlow {
    0% {
        background-position: 0% 0%, 100% 100%, 50% 0%;
        filter: hue-rotate(0deg) brightness(1);
    }
    33% {
        background-position: 40% 60%, 70% 30%, 20% 80%;
        filter: hue-rotate(90deg) brightness(1.2);
    }
    66% {
        background-position: 70% 30%, 30% 70%, 80% 20%;
        filter: hue-rotate(180deg) brightness(1.1);
    }
    100% {
        background-position: 0% 0%, 100% 100%, 50% 0%;
        filter: hue-rotate(270deg) brightness(1.3);
    }
}

@keyframes neonShift {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 0.25;
    }
    50% {
        transform: translateX(30px) translateY(-20px);
        opacity: 0.15;
    }
    100% {
        transform: translateX(0) translateY(0);
        opacity: 0.25;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    grid-template-rows: auto 1fr;
    gap: 20px;
    min-height: calc(100vh - 40px);
}

.header {
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4); 
    border: 2px solid rgba(157, 78, 221, 0.5);
    border-radius: 10px;
    box-shadow:
        0 0 20px rgba(157, 78, 221, 0.3),
        inset 0 0 20px rgba(157, 78, 221, 0.1);
    backdrop-filter: blur(12px);
}

@keyframes shine {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.main-title, .welcome-title {
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffff00, #ff00ff, #00ffff, #ffff00);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
    text-shadow: 0 0 8px #ff00ff, 0 0 16px #00ffff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.subtitle {
    font-family: 'VT323', monospace;
    color: #00ff00;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00;
    line-height: 1.5;
}

.sidebar {
    background: rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(157, 78, 221, 0.4);
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(15px);
}
@keyframes neon-pulse {
  0%, 100% { text-shadow: 0 0 5px #00ffff, 0 0 10px #ff00ff; }
  50% { text-shadow: 0 0 15px #00ffff, 0 0 25px #ff00ff; }
}

.nav-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    margin-bottom: 12px;
    border-radius: 14px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.85rem;
    overflow-wrap: anywhere;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    background: #3E1463;
    border: 2px solid rgba(255,255,255,0.15);
    color: #ffffff;
    box-shadow:
      0 4px 12px rgba(0,0,0,0.5),
      inset 0 2px 4px rgba(255,255,255,0.2),
      0 0 8px rgba(62,20,99,0.8);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease-in-out;
    animation: neon-pulse 2s infinite;
    line-height: 1.4;
    
}


.nav-button:hover {
    color: #ff00ff;
    text-shadow: 0 0 15px #ff00ff, 0 0 25px #00ffff;
    transform: translateX(5px) scale(1.05);
}

.nav-button.active {
    background: #00e5ff;
    border-color: #ffffff;
    color: #000; 
    box-shadow:
      0 4px 10px rgba(0,0,0,0.6),
      0 0 15px #00e5ff,
      inset 0 2px 6px rgba(255,255,255,0.4);
}

.main-content {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(157, 78, 221, 0.4);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(157, 78, 221, 0.2);
    font-size: 1.2rem;
    line-height: 1.8;
    font-family: 'VT323', monospace;
}

.welcome-text {
    font-family: 'VT323', monospace;
    color: #ffffff;
    line-height: 1.9;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.3rem;
    text-shadow: 0 0 3px #00ffff;
}

.stats-box {
    background: rgba(157, 78, 221, 0.2);
    border: 1px solid rgba(157, 78, 221, 0.5);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

@keyframes retro-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0.6; text-shadow: none; }
}

.stats-title, .widget-title {
    font-family: 'Press Start 2P', monospace;
    color: #39ff14;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 0 5px #39ff14, 0 0 10px #00ff00;
    animation: retro-blink 1.5s infinite step-start;
    line-height: 1.4;
}

.stats-info {
    font-family: 'VT323', monospace;
    color: #00ff00;
    font-size: 1.2rem;
    text-align: center;
    text-shadow: 0 0 3px #00ff00;
    line-height: 1.7;
}

.right-sidebar {
    background: rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(157, 78, 221, 0.4);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(15px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(157, 78, 221, 0.2);
}

.widget {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.widget-content {
    font-family: 'VT323', monospace;
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
    text-shadow: 0 0 3px #00ffff;
}

.blog-post {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    position: relative;
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    line-height: 1.8;
}

.blog-post:hover {
    background: rgba(157, 78, 221, 0.1);
    border-bottom: 2px solid #00ffff;
    transform: translateX(5px);
}

.blog-post:hover::after {
    content: ">>> KLIKNIJ ABY CZYTAĆ DALEJ <<<";
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    text-align: center;
    color: #00ffff;
    font-size: 1rem;
    animation: blink 1s infinite;
}

.footer-text {
      grid-column: 1 / -1;
    text-align: center;
    font-family: 'VT323', monospace;
    font-size: 1rem;
    margin-top: 20px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);;
    border: 2px solid rgba(157, 78, 221, 0.4);
    border-radius: 8px;
    color: #ff00ff; 
    text-shadow: 0 0 6px #ff00ff, 0 0 14px #ff66ff;
    animation: footerPulse 2s infinite alternate;
    backdrop-filter: blur(10px);
}

@keyframes footerPulse {
  from { opacity: 0.8; text-shadow: 0 0 6px #ff00ff, 0 0 14px #ff66ff; }
  to   { opacity: 1; text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff66ff; }
}
.blink {
    animation: blink 1.5s infinite;
    font-family: 'VT323', monospace;
}

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

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto 1fr auto;
        gap: 15px;
    }
    
    .sidebar,
    .right-sidebar {
        display: flex;
        overflow-x: auto;
        gap: 10px;
    }
    
    .nav-button {
        min-width: 120px;
        margin-bottom: 0;
    }
    
    .widget {
        min-width: 200px;
        margin-bottom: 0;
        margin-right: 10px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
}

.retro-marquee {
  overflow: hidden;
  white-space: nowrap;
  border: 2px solid #ff00ff;
  padding: 5px;
  margin-top: 10px;
  border-radius: 8px;
  background: black;
  box-shadow: 0 0 10px #ff00ff;
}

.retro-marquee span {
  display: inline-block;
  padding-left: 100%; 
  color: #ff00ff;
  font-family: 'VT323', monospace;
  font-size: 1.2rem;
  line-height: 1.6;
  text-shadow: 0 0 6px #ff00ff, 0 0 14px #ff66ff;
  animation: scroll-left 12s linear infinite, blink-glow 1.2s step-start infinite;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@keyframes blink-glow {
  50% { text-shadow: none; opacity: 0.6; }
}

.link-board {
  margin: 30px auto;
  padding: 20px;
  max-width: 600px;
  text-align: center;
  background: #0a0010;
  border: 2px solid #ff00ff;
  border-radius: 16px;
  box-shadow: 0 0 15px #ff00ff;
  font-family: 'VT323', monospace;
  font-size: 1.2rem;
  line-height: 1.7;
}

.link-board h2 {
  font-family: 'Orbitron', sans-serif;
  color: #00ffff;
  margin-bottom: 20px;
  text-shadow: 0 0 6px #00ffff, 0 0 12px #ff00ff;
  animation: neon-pulse 2s infinite;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    margin-bottom: 12px;
    border-radius: 14px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.85rem;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    background: #3E1463;
    border: 2px solid rgba(255,255,255,0.15);
    color: #ffffff;
    box-shadow:
      0 4px 12px rgba(0,0,0,0.5),
      inset 0 2px 4px rgba(255,255,255,0.2),
      0 0 8px rgba(62,20,99,0.8);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease-in-out;
    animation: neon-pulse 2s infinite;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.link-card:hover {
  color: #ff00ff;
    text-shadow: 0 0 15px #ff00ff, 0 0 25px #00ffff;
    transform: translateX(5px) scale(1.05);
}


.loading-inline {
  text-align: center;
  padding: 40px 20px;
  background: transparent;
  color: #ff00ff;
  font-family: 'VT323', monospace;
  font-size: 1.5rem;
  z-index: 2;
}
.loading-inline .loading-title {
  font-weight: bold;
  font-size: 1.6rem;
  color: #ff00ff;
  text-shadow: 0 0 6px #ff00ff, 0 0 14px #ff66ff;
  margin-bottom: 14px;
}

.loading-inline .loading-lines p {
  margin: 8px 0;
  font-size: 1rem;
  color: #ff66ff;    
  text-shadow: 0 0 4px rgba(255,0,255,0.35);
}

.gif-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  background: rgba(15, 0, 30, 0.5);
  border: 2px solid rgba(255, 0, 255, 0.4);
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
  backdrop-filter: blur(10px);
  margin-top: 15px;
}

.gif-gallery img {
  width: 88px;
  height: 31px;
  image-rendering: pixelated;
  border-radius: 6px;
  border: 1px solid rgba(255, 0, 255, 0.4);
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: rgba(0, 0, 0, 0.4);
}

.gif-gallery img:hover {
  transform: scale(1.2) rotate(-2deg);
  box-shadow: 0 0 20px #ff00ff, 0 0 40px #00ffff;
  border-color: #ff00ff;
}

.shoutbox, .shoutbox * { box-sizing: border-box; }

.shoutbox {
  display: flex;
  flex-direction: column;
  width: 100% !important;    
  min-width: 0 !important;   
  height: 320px;             
  margin-top: 12px;
  background: rgba(20, 0, 40, 0.6);
  border: 2px solid rgba(255, 0, 255, 0.4);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
  color: #ffb3ff;
  overflow: hidden;
  backdrop-filter: blur(8px);
  padding: 6px;
}

.shoutbox-header {
  flex: 0 0 auto;
  text-align: center;
  background: radial-gradient(circle at 20% 30%, rgba(157, 78, 221, 0.35) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 50% 20%, rgba(255, 0, 255, 0.22) 0%, transparent 55%);
  background-size: 200% 100%;
  animation: moveGradient 4s linear infinite;
  color: #FFF;
  text-shadow: 0 0 6px #fff;
  font-size: 12px;
  padding: 6px 8px;
  border-radius: 6px;
  margin-bottom: 6px;
  font-family: 'Press Start 2P', 'Courier New', monospace;
}

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

.shoutbox-messages {
  flex: 1 1 auto;
  overflow-y: auto;
  background: rgba(0,0,0,0.45);
  padding: 8px;
  font-family: 'VT323', monospace;
  font-size: 12px;
  line-height: 1.3;
  border-radius: 6px;
  margin-bottom: 8px;
  min-height: 80px;
  border: 1px solid rgba(255, 0, 255, 0.3);
  box-shadow: inset 0 0 10px rgba(255, 0, 255, 0.2);
}

.shoutbox-message {
  margin-bottom: 6px;
  word-break: break-word;
}
.shoutbox-user {
  color: #00ffff;
  font-weight: bold;
  margin-right: 6px;
  
}

.shoutbox-form {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}


.shoutbox-label {
  font-size: 8px;
  color: #ffccff;
  font-family: 'Press Start 2P', 'Courier New', monospace;
}

.shoutbox-input-field,
.shoutbox-textarea {
  width: 100%;
  min-width: 0;            
  padding: 6px 8px;
  background: rgba(0,0,0,0.7);
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
  color: #ffb3ff;
  font-size: 10px;
  border-radius: 6px;
  outline: none;
  resize: vertical;
}

.shoutbox-send {
  display: block;
  width: 100%;
  background: #3E1463;
  color: #ffffff;
  font-family: 'Press Start 2P', 'Courier New', monospace;
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  padding: 10px 0;
  margin-top: 6px;
  border: 2px solid rgba(255,255,255,0.15);
    color: #ffffff;
    box-shadow:
      0 4px 12px rgba(0,0,0,0.5),
      inset 0 2px 4px rgba(255,255,255,0.2),
      0 0 8px rgba(62,20,99,0.8);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease-in-out;
    animation: neon-pulse 2s infinite;
    line-height: 1.4;
    text-transform: uppercase;
}

.shoutbox-send:hover {
  color: #ff00ff;
    text-shadow: 0 0 15px #ff00ff, 0 0 25px #00ffff;
}
.shoutbox-send:active {
  background: #00e5ff;
    border-color: #ffffff;
    color: #000; 
    box-shadow:
      0 4px 10px rgba(0,0,0,0.6),
      0 0 15px #00e5ff,
      inset 0 2px 6px rgba(255,255,255,0.4);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(30, 10, 40, 0.6);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff00cc, #8000ff);
  border-radius: 5px;
  box-shadow: 0 0 10px #ff00ff;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff66cc, #a000ff);
}
