* {
margin:0;
padding:0;
box-sizing:border-box;
font-family:"Courier New",monospace;
}
.banner img {
  width: 100%;              /* ensures image stretches full width */
  height: 300px;             /* fill container height */
  object-fit: cover;        /* crop/fill nicely without distortion */
  display: block;
  row-gap: 20px;
}
body{
background:#000;
color:#00FFFF;
overflow-x:hidden;
opacity:0;
animation:fadeIn 1s forwards;
cursor:none;
}

@keyframes fadeIn{to{opacity:1;}}

nav{
position:sticky;
top:0;
background:#000;
padding:18px;
display:flex;
justify-content:center;
gap:40px;
border-bottom:2px solid #FF00FF;
box-shadow:0 0 20px #FF00FF;
z-index:100;
}

nav a{
color:#FF00FF;
text-decoration:none;
font-weight:bold;
transition:0.3s;
position:relative;
}

nav a::after{
content:"";
position:absolute;
bottom:-5px;
left:0;
width:0%;
height:2px;
background:#00FFFF;
transition:0.3s;
}

nav a:hover::after{
width:100%;
}

.container{
max-width:1200px;
margin:auto;
padding:60px 20px;
}

.card{
background:#000000dd;
padding:25px;
margin-bottom:30px;
border:2px solid #00FFFF;
box-shadow:0 0 15px #00FFFF;
transition:0.4s;
backdrop-filter:blur(8px);
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 0 30px #FF00FF;
}

h1{
margin-bottom:25px;
text-shadow:0 0 10px #FF00FF;
}

button{
background:none;
border:1px solid #FF00FF;
color:#FF00FF;
padding:8px 15px;
cursor:pointer;
transition:0.3s;
}

button:hover{
background:#FF00FF;
color:#000;
}
.cursor{
width:14px;
height:14px;
border:2px solid #FF00FF;
border-radius:50%;
position:fixed;
pointer-events:none;
z-index:9999;
box-shadow:0 0 15px #FF00FF;
}

.trail{
width:8px;
height:8px;
background:#00FFFF;
border-radius:50%;
position:fixed;
pointer-events:none;
z-index:9998;
box-shadow:0 0 10px #00FFFF;
}
/* Reset & default */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Courier New",monospace;
}

body{
  background:#000;
  color:#00FFFF;
  overflow-x:hidden;
  opacity:0;
  animation:fadeIn 0.8s forwards;
}

/* Smooth fade-in on load */
@keyframes fadeIn {
  to {opacity:1;}
}

/* Sticky nav */
nav{
  position:sticky;
  top:0;
  background:#000;
  padding:15px;
  display:flex;
  justify-content:center;
  gap:30px;
  border-bottom:2px solid #FF00FF;
  box-shadow:0 0 20px #FF00FF;
  z-index:100;
  animation:slideDown 0.6s ease forwards;
}

nav a{
  color:#FF00FF;
  text-decoration:none;
  transition:0.3s;
}

nav a:hover{
  color:#00FFFF;
  text-shadow:0 0 10px #00FFFF;
}

/* Slide down animation for nav */
@keyframes slideDown {
  0% {transform: translateY(-50px); opacity:0;}
  100% {transform: translateY(0); opacity:1;}
}

/* Container */
.container{
  max-width:1100px;
  margin:auto;
  padding:10px 10px;
}

/* Cards default */
.card{
  background:#000000dd;
  padding:25px;
  margin-bottom:30px;
  border:2px solid #00FFFF;
  box-shadow:0 0 15px #00FFFF;
  transition:0.3s;
  animation:popUp 0.8s ease forwards;
}

.card:hover{
  box-shadow:0 0 25px #FF00FF;
  transform:translateY(-5px);
}

/* Pop-up animation */
@keyframes popUp {
  0% {opacity:0; transform:scale(0.9);}
  100% {opacity:1; transform:scale(1);}
}

/* Headings */
h1,h2{
  margin-bottom:15px;
  animation:textGlow 1s infinite alternate;
}

/* Neon text glow */
@keyframes textGlow {
  0% {text-shadow: 0 0 5px #FF00FF, 0 0 10px #00FFFF;}
  100% {text-shadow: 0 0 15px #FF00FF, 0 0 25px #00FFFF;}
}

/* Lists */
ul{list-style:none;}
li{margin-bottom:8px; transition:0.3s;}
li:hover{color:#FF00FF; transform:translateX(5px);}

/* Links */
a{color:#00FFFF;text-decoration:none; transition:0.3s;}
a:hover{color:#FF00FF; text-shadow:0 0 10px #FF00FF;}

/* Images animation */
img{
  transition:0.4s;
}
img:hover{
  transform:scale(1.05) rotate(-2deg);
  box-shadow:0 0 20px #FF00FF;
}

/* Floating effect */
.float {
  animation:floatAnim 3s ease-in-out infinite;
}
@keyframes floatAnim {
  0% {transform: translateY(0);}
  50% {transform: translateY(-10px);}
  100% {transform: translateY(0);}
}

/* Pulse glow effect */
.pulse {
  animation: pulseGlow 2s infinite;
}
@keyframes pulseGlow {
  0%, 100% {box-shadow:0 0 15px #FF00FF;}
  50% {box-shadow:0 0 25px #00FFFF;}
}

/* Spin animation */
.spin {
  animation:spinAnim 4s linear infinite;
}
@keyframes spinAnim {
  0% {transform:rotate(0deg);}
  100% {transform:rotate(360deg);}
}

/* Banner fade in */
.banner img {
  width:100%;
  max-height:250px;
  object-fit: cover;
  display:block;
  border-top:2px solid #FF00FF;
  border-bottom:2px solid #FF00FF;
  animation:bannerFade 1.2s ease forwards;
  margin-top:10px;
  margin-bottom:10px;
  overflow: hidden;
  /* banner responsive*/
  
}
@keyframes bannerFade {
  0% {opacity:0; transform:translateY(-20px);}
  100% {opacity:1; transform:translateY(0);}
}

/* Staggered fade for lists/cards */
.stagger-fade {
  opacity:0;
  animation:fadeUp 0.8s forwards;
  animation-delay:var(--delay, 0s);
}
@keyframes fadeUp {
  0% {opacity:0; transform:translateY(20px);}
  100% {opacity:1; transform:translateY(0);}
}

/* Neon border blink */
.blink-border {
  border:2px solid #FF00FF;
  animation:blink 1s infinite alternate;
}
@keyframes blink {
  0% {border-color:#FF00FF;}
  50% {border-color:#00FFFF;}
  100% {border-color:#FF00FF;}
}
/* Grid layout for game cards */
.card ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  padding: 0;
}

/* Each game item */
.card li {
  list-style: none;
  background: #000000cc;
  border: 2px solid #00FFFF;
  border-radius: 12px;
  text-align: center;
  padding: 15px;
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
  animation: fadeInUp 0.6s forwards;
  perspective: 800px;
}

/* Stagger animations */
.card li:nth-child(1) {animation-delay: 0s;}
.card li:nth-child(2) {animation-delay: 0.1s;}
.card li:nth-child(3) {animation-delay: 0.2s;}

/* Hover effect with tilt & glow */
.card li:hover {
  transform: scale(1.05) rotateY(5deg) rotateX(3deg);
  box-shadow: 0 0 25px #00FFFF, 0 0 40px #FF00FF;
  border-color: #FF00FF;
}

/* Thumbnail image */
.card li img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #FF00FF;
  margin-bottom: 10px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.card li img:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 0 20px #00FFFF;
  border-color: #00FFFF;
}

/* Title and description inside card */
.card li a {
  display: block;
  color: #FF00FF;
  font-weight: bold;
  margin-bottom: 5px;
  text-decoration: none;
}

.card li p {
  font-size: 0.85em;
  color: #00FFFF;
  margin: 0;
}

/* Fade-up animation */
@keyframes fadeInUp {
  0% {opacity:0; transform:translateY(20px);}
  100% {opacity:1; transform:translateY(0);}
}


.donate-btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(45deg,#FF00FF,#00FFFF);
  color: black;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 0 20px #FF00FF, 0 0 30px #00FFFF;
  transition: 0.3s;
}

.donate-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px #00FFFF, 0 0 40px #FF00FF;
}

/* Floating Social Dock */
.social-dock {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

/* Icon Styling */
.social-dock a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000cc;
  border: 2px solid #FF00FF;
  border-radius: 12px;
  color: #00FFFF;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #FF00FF;
  animation: pulseGlow 3s infinite;
}

/* Hover Animation */
.social-dock a:hover {
  transform: scale(1.2) rotate(8deg);
  border-color: #00FFFF;
  color: #FF00FF;
  box-shadow: 0 0 20px #00FFFF, 0 0 35px #FF00FF;
}

/* Subtle Pulse */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 10px #FF00FF; }
  50% { box-shadow: 0 0 20px #00FFFF; }
  100% { box-shadow: 0 0 10px #FF00FF; }
}

/* Mobile adjustment */
@media(max-width: 768px) {
  .social-dock {
    right: 10px;
    bottom: 10px;
  }

  .social-dock a {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}
/* ===== Wrapper ===== */
.social-wrapper {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  animation: slideIn 1s ease forwards;
}

/* Slide In Animation */
@keyframes slideIn {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===== Toggle Button ===== */
.social-toggle {
  width: 55px;
  height: 55px;
  background: linear-gradient(45deg,#FF00FF,#00FFFF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 0 20px #FF00FF, 0 0 40px #00FFFF;
  transition: 0.4s;
}

.social-toggle:hover {
  transform: rotate(180deg) scale(1.1);
}

/* ===== Dock ===== */
.social-dock {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: 0.4s ease;
}

.social-wrapper.active .social-dock {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ===== Icons ===== */
.social-dock a {
  position: relative;
  width: 45px;
  height: 45px;
  background: #000000dd;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00FFFF;
  font-size: 18px;
  border: 2px solid #FF00FF;
  text-decoration: none;
  transition: 0.3s;
  overflow: hidden;
}

/* Glow wave */
.social-dock a::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  background: linear-gradient(45deg,transparent,#00FFFF,transparent);
  transform: rotate(45deg);
  animation: wave 3s linear infinite;
  opacity: 0.2;
}

@keyframes wave {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.social-dock a:hover {
  transform: scale(1.2) rotate(6deg);
  box-shadow: 0 0 25px #00FFFF, 0 0 40px #FF00FF;
}

/* ===== Tooltip Label ===== */
.social-dock a::after {
  content: attr(data-name);
  position: absolute;
  right: 60px;
  background: #111;
  color: #00FFFF;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  opacity: 0;
  white-space: nowrap;
  transition: 0.3s;
}

.social-dock a:hover::after {
  opacity: 1;
}

/* ===== Mobile Mode ===== */
@media (max-width: 768px) {

  .social-wrapper {
    right: 50%;
    transform: translateX(50%);
    bottom: 20px;
  }

  .social-wrapper.active .social-dock {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 300px;
  }

  .social-dock a::after {
    display: none;
  }
}

.presence-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  margin: 15px auto;
  width: fit-content;
  background: rgba(0,0,0,0.6);
  border-radius: 20px;
  border: 1px solid #00ffff;
  animation: fadeIn 1s ease forwards;
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: lime;
  box-shadow: 0 0 10px lime;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

.presence-text {
  font-size: 14px;
}
.dev-status {
  text-align: center;
  margin: 10px;
  font-size: 14px;
  opacity: 0.8;
  animation: fadeIn 1.5s ease;
}
.theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  background: black;
  color: white;
}

body.neon-mode {
  background: #0f0f1a;
  color: #00ffff;
}

body.chaos-mode {
  animation: shake 0.2s infinite;
}

@keyframes shake {
  0% { transform: translate(0px); }
  25% { transform: translate(1px,-1px); }
  50% { transform: translate(-1px,1px); }
  75% { transform: translate(1px,1px); }
  100% { transform: translate(0px); }
}
.card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}

img:hover {
  transform: scale(1.05);
  transition: 0.4s ease;
}

button {
  transition: 0.3s ease;
}
