html {
  overflow-y: scroll;
}

* {
  box-sizing: border-box;
}

/* colores */
:root {
    --rosa: #d6879c;     
    --negro: #111111;          
    --blanco: #f4f4f0;         
    --gris: #cccccc;
    --amarillo: #ffcc00;
    --blurple: #5865F2;
    --azul: #0066ff;
    --cyan: #00c8ff;
}

/* selección de texto en rosa */
::selection {
    background-color: var(--rosa);
    color: var(--negro);
}

body {
    background-color: var(--negro);
    background-image: radial-gradient(var(--blanco) 2px, transparent 2px);
    background-size: 20px 20px;
    font-family: "Courier New", Courier, monospace;
    color: var(--negro);
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    cursor: url('images/cursor.gif'), auto;
}

/* Fondo gris */
#container {

    background-color: var(--gris);
    width: 100%;
    max-width: 550px;
    border: 6px solid var(--negro);
    box-shadow: 15px 15px 0px var(--rosa);
    padding: 30px;
}

/* Titulo Reno Quintero*/
h1 {
    background-color: var(--rosa);
    display: inline-block;
    padding: 10px 30px;
    border: 4px solid var(--negro);
    transform: rotate(-2deg);
    font-size: 3rem;
    margin-bottom: 1px;
    margin-top: 10px;
    transition: 0.2s ease-in-out;
}

h1 a {
    text-decoration: none;
    color: var(--blanco);
    transition: color 0.2s;
    cursor: url('images/ani_cursor.gif'), pointer;
}

h1:hover {
    transform: rotate(0deg) scale(1.02);
    background-color: var(--amarillo); 
    border-color: var(--negro);
}

h1:hover a {
    color: var(--negro);
    cursor: url('images/ani_cursor.gif'), pointer;
}

/* Discord */
h3 {
    background-color: var(--blurple);
    display: inline-block;
    padding: 10px;
    border: 4px solid var(--negro);
    transform: rotate(4deg);
    font-size: 2.5rem;
    margin-bottom: 1px;
    margin-top: 10px;
    transition: 0.2s ease-in-out;
}

h3 a {
    text-decoration: none;
    color: var(--blanco);
    transition: color 0.2s;
    cursor: url('images/ani_cursor.gif'), pointer;
}

h3:hover {
    transform: rotate(0deg) scale(1.02);
    background-color: var(--amarillo); 
    border-color: var(--negro);
}

h3:hover a {
    color: var(--negro);
    cursor: url('images/ani_cursor.gif'), pointer;
}

/* Texto regular SEO */
h2 {
font-size: 1.2rem;
color: var(--negro);
background: none;
border: none;
padding: 0;
text-transform: none;
font-family: 'Courier New', Courier, monospace;
margin-bottom: 1px;
}

/* Botones de opcion */
.btn-negro {
    display: inline-block;
    background-color: var(--negro); 
    color: var(--blanco);           
    padding: 12px 20px;
    font-weight: bold;
    text-decoration: none;
    border: 4px solid var(--negro);
    box-shadow: 6px 6px 0px var(--rosa);
    transition: all 0.15s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-negro:hover {
    background-color: var(--amarillo); 
    color: var(--negro);
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px var(--negro);
    cursor: url('images/ani_cursor.gif'), pointer;
}

.btn-negro:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--negro);
    cursor: url('images/ani_cursor.gif'), pointer;
}

/* Imagen neocities*/
.neocities {
  display: flex;
  justify-content: center;
  padding: 10px;
}

.neocities:hover a {
    cursor: url('images/ani_cursor.gif'), pointer;
}

/* pfp */
.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

/* botones dropdown */
.dropdown-content { 
  display: none; 
  margin-bottom: 30px; 
  flex-direction: column; 
  gap: 10px; 
}

.dropdown-btn { 
  width: 100%; 
  text-align: center; 
  cursor: pointer; 
  border: 4px solid var(--negro);
  padding: 12px 20px; 
  font-weight: bold; 
  text-transform: uppercase;
  background-color: var(--blanco); 
  margin-bottom: 10px;
  box-shadow: 6px 6px 0px var(--negro); 
  font-family: "Courier New", Courier, monospace;
}

.dropdown-btn a {
 cursor: url('images/ani_cursor.gif'), pointer;
}

.dropdown-btn:hover { 
  background-color: var(--amarillo); 
  transform: translate(-2px, -2px); 
  box-shadow: 8px 8px 0px var(--negro);
  cursor: url('images/ani_cursor.gif'), pointer;
}

.dropdown-btn:hover a {
    cursor: url('images/ani_cursor.gif'), pointer;
}

/* SFN */
.sfn-float-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

.sfn-float-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(0, 140, 255, 1);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(1, 1, 1, 1), 0 0 10px rgba(0, 140, 255, 0.2);
  backdrop-filter: blur(4px);
  text-decoration: none;
  transition: all 0.25s ease;
}

.sfn-float-link:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: rgba(0, 140, 255, 0.8);
  box-shadow: 0 6px 20px rgba(1, 1, 1, 1), 0 0 16px rgba(0, 140, 255, 0.5);
  cursor: url('images/ani_cursor.gif'), pointer;
}

.sfn-float-icon {
  width: 48px;
  height: 48px;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  filter: drop-shadow(0 0 6px rgba(0, 140, 255, 0.6));
}

.sfn-tooltip {
  position: absolute;
  right: 68px;
  background: #0d0d0d;
  color: #ffffff;
  font-family: monospace;
  font-size: 11px;
  padding: 4px 8px;
  border: 1px solid #222222;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(6px);
  cursor: url('images/ani_cursor.gif'), pointer;
}

.sfn-float-link:hover .sfn-tooltip {
  opacity: 1;
  transform: translateX(0);
  cursor: url('images/ani_cursor.gif'), pointer;
}