* {
	user-select:none;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
*::-webkit-scrollbar 
{
  display: none;
}

        html, body {
            font-family: 'Geist', system-ui, -apple-system, sans-serif;
            width: 100%;
            height: 100%;
            background-color: #ffffff;
            color: #1a1a1a;
            overflow-x: hidden;
            /* Firefox */
  			scrollbar-width: none;
  
  			/* IE and Edge */
  			-ms-overflow-style: none;
        }

        body {
            transition: background-color 0.3s ease;
            background-color: #0a0a0a;
            color: #ffffff;
        }

        /* Animaciones */
        @keyframes slideUp {
            0% {
                opacity: 0;
                transform: translateY(100px);
            }
            20% {
                opacity: 1;
            }
            80% {
                opacity: 1;
                transform: translateY(0);
            }
            90%, 100% {
                opacity: 0;
                transform: translateY(-100px);
            }
        }

        @keyframes fadeInScale {
            0% {
                opacity: 0;
                transform: scale(0.9);
            }
            90%, 100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes pulseGlow {
            0%, 100% {
                opacity: 0.6;
                text-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
            }
            50% {
                opacity: 1;
                text-shadow: 0 0 40px rgba(239, 68, 68, 0.8);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInDisclaimer {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Sección Hero */
        .hero {
            min-height: 100dvh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .main-text {
            font-size: 18vw;
            font-weight: 700;
            text-align: center;
            letter-spacing: -0.8vw;
            position: relative;
            align-items: center;
            justify-content: center;
        }

        .word-tu {
            display: block;
            position: absolute;
            animation: slideUp 4s ease-in-out forwards;
            white-space: nowrap;
        }

        .word-perdiste {
            display: block;
            animation: fadeInScale 0.8s ease-out 3.5s both;
            color: #ef4444;
            animation: fadeInScale 0.8s ease-out 3.5s both, pulseGlow 2s ease-in-out 3.5s infinite;
            white-space: nowrap;
        }

        .victim-counter {
            font-size: 18px;
            color: #999;
            font-weight: 500;
            animation: fadeInUp 0.8s ease-out 4.3s both;
        }


        /* Botón flotante */
        .scroll-button 
        {
            position: absolute;
            bottom: 50px;
            transform: translateX(-100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            z-index: 100;
            animation: fadeInUp 0.8s ease-out 4.5s both;
        }

        .scroll-button p {
            font-size: 14px;
            color: #999;            
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .arrow-icon {
            font-size: 24px;
            animation: float 3s ease-in-out infinite;
            color: #ef4444;
        }

        .scroll-button:hover p {
            color: #ef4444;
        	
        }

        /* Sección de contenido */
        .content-section {
            min-height: 100vh;
            padding: 80px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin: 0 auto;
            align-items: center;
        }

        .content-section.whatToDo
        {
        	background-color: black;
        }

        .content-block {
            animation: fadeInUp 0.8s ease-out forwards;
            max-width: 900px;
            width: 100%;
        }

        hr
        {
        	width: 100%;
        	max-width: 1000px;
        	background-color: red;
        	border: none;
  			height: 1px; /* Set the thickness */
  			background-color: #181915;
  			margin-top: 40px;
  			margin-bottom: 40px;
        }

        .content-block:nth-child(1) {
            animation-delay: 0s;
        }

        .content-block:nth-child(2) {
            animation-delay: 0.2s;
        }

        .content-block:nth-child(3) {
            animation-delay: 0.4s;
        }

        .content-block h2 
        {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
            border-bottom: color(white);
        }

        .content-block p {
            font-size: 20px;
            line-height: 1.3;
            color: #ccc;
            margin-bottom: 12px;
        }
        .content-block .quote
        {
          color: #ef4444;
          font-weight: bold;
        }


        .content-block a {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .content-block a:hover {
            color: #ef4444;
        }

        /* Disclaimer */
        .disclaimer {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: rgba(0, 0, 0, 0.8);
            color: #ffffff;
            padding: 20px 25px;
            border-radius: 8px;
            font-size: 14px;
            max-width: 300px;
            opacity: 0;
            pointer-events: none;
            animation: slideInDisclaimer 0.5s ease-out forwards;
            z-index: 90;
            border-left: 4px solid #3b82f6;
            background-color: rgba(255, 255, 255, 0.9);
            color: #000000;
        }


        .disclaimer.show {
            opacity: 1;
            pointer-events: all;
        }

        .disclaimer p {
            margin: 0;
            line-height: 1.6;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .main-text {
                letter-spacing: -1px;
            }

            .victim-counter {
                font-size: 16px;
            }

            .content-section {
                padding: 60px 30px;
            }

            .content-block h2 {
                font-size: 24px;
            }

            .content-block p {
                font-size: 16px;
            }

            .disclaimer {
                bottom: 20px;
                right: 20px;
                max-width: 250px;
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {

            .scroll-button {
                bottom: 30px;
            }

            .content-section {
                padding: 40px 20px;
            }

            .content-block h2 {
                font-size: 20px;
            }

            .content-block p {
                font-size: 14px;
            }
        }