* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        .textfr strong {
        color:red;
        }
         .textfr {
         background: hsla(0, 0%, 100%, .1);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid hsla(0, 0%, 100%, .2);
    color: #b3d1ff;
    width: 100%;
    max-width: 100%;
    padding: 26px 30px;
    margin-left: auto;
    margin-right: auto;
         }
        body {
            font-family: 'Arial', sans-serif;
            min-height: 100vh; /* Cambiado de height a min-height */
            overflow-x: hidden; /* Solo esconder scroll horizontal */
            background: linear-gradient(135deg, #0f0f23, #1a1a2e, #16213e);
            position: relative;
        }

        /* Animated background with movie reels */
        .bg-animation {
            position: fixed; /* Cambiado a fixed para que quede fijo */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .movie-reel {
            position: absolute;
            width: 60px;
            height: 60px;
            border: 3px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .movie-reel::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .movie-reel:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
        .movie-reel:nth-child(2) { top: 20%; right: 10%; animation-delay: 1s; }
        .movie-reel:nth-child(3) { bottom: 20%; left: 15%; animation-delay: 2s; }
        .movie-reel:nth-child(4) { bottom: 10%; right: 20%; animation-delay: 3s; }
        .movie-reel:nth-child(5) { top: 50%; left: 5%; animation-delay: 4s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        /* Particles effect */
        .particles {
            position: fixed; /* Cambiado a fixed */
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: sparkle 4s linear infinite;
        }

        .particle:nth-child(odd) { animation-delay: 2s; }

        @keyframes sparkle {
            0% { opacity: 0; transform: translateY(100vh) scale(0); }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { opacity: 0; transform: translateY(-100px) scale(1); }
        }

        /* Main content */
        .container {
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh; /* Cambiado de height a min-height */
            text-align: center;
            padding: 20px;
        }

        .logo-container {
            margin-bottom: 40px;
            animation: logoEntrance 1.5s ease-out;
        }

        .logo {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .logo::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            animation: shine 3s infinite;
        }

        .logo-inner {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            z-index: 2;
            border: 3px solid rgba(255, 255, 255, 0.2);
            box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
        }

        @keyframes logoEntrance {
            0% { transform: scale(0) rotate(-180deg); opacity: 0; }
            50% { transform: scale(1.1) rotate(-90deg); }
            100% { transform: scale(1) rotate(0deg); opacity: 1; }
        }

        @keyframes shine {
            0% { transform: rotate(45deg) translateX(-200%); }
            100% { transform: rotate(45deg) translateX(200%); }
        }

        .title {
            font-size: 3rem;
            color: white;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            animation: textGlow 2s ease-in-out infinite alternate;
            background: linear-gradient(45deg, #ffffff, #db020d, #ffffff);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @keyframes textGlow {
            0% { text-shadow: 0 0 20px #d1000b; }
            100% { text-shadow: 0 0 30px #fe343e, 0 0 40px rgba(255, 170, 0, 0.3); }
        }

        .subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            animation: fadeInUp 1s ease-out 0.5s both;
        }

        .cta-button {
            background: linear-gradient(135deg, #dc020e, #fe353f);
            color: white;
            padding: 18px 40px;
            font-size: 1.3rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out 1s both;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        @keyframes fadeInUp {
            0% { opacity: 0; transform: translateY(30px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .title { font-size: 2rem; }
            .subtitle { font-size: 1rem; }
            .logo { width: 120px; height: 120px; }
            .logo-inner { font-size: 60px; }
            .cta-button { 
                padding: 15px 30px; 
                font-size: 1.1rem; 
            }
        }
        /* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0f0f23, #1a1a2e, #16213e);
    color: white;
    padding: 40px 20px 20px;
    margin-top: 50px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #ff6b35;
    font-size: 1.4rem;
}

/* Social Share Buttons */
.social-share {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.social-btn.telegram { 
    background: linear-gradient(135deg, #0088cc, #229ed9); 
}

.social-btn.facebook { 
    background: linear-gradient(135deg, #1877f2, #42a5f5); 
}

.social-btn.twitter { 
    background: linear-gradient(135deg, #000000, #333333); 
}

.social-btn svg {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-btn:hover svg {
    transform: scale(1.2);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-share {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .social-btn {
        width: 55px;
        height: 55px;
    }
    
    .social-btn svg {
        width: 25px;
        height: 25px;
    }
}-filter: blur(10px);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3, 
.footer-section h4 {
    margin-bottom: 15px;
    color: #ff6b35;
    font-size: 1.2rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.5;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

/* Social Share Buttons */
.social-share {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    min-width: 150px;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: white;
}

.social-btn.telegram { 
    background: linear-gradient(135deg, #00000075, #00000075); 
}

.social-btn.telegram:hover {
    background: linear-gradient(135deg, #006bb3, #1e8bc3);
}

.social-btn.facebook { 
   background: linear-gradient(135deg, #00000075, #00000075);
}
a.social-btn.tiktok {
    background: linear-gradient(135deg, #00000075, #00000075);
}
.social-btn.facebook:hover {
    background: linear-gradient(135deg, #155db8, #2196f3);
}

.social-btn.twitter { 
    background: linear-gradient(135deg, #00000075, #00000075);
}

.social-btn.twitter:hover {
    background: linear-gradient(135deg, #1a1a1a, #4a4a4a);
}

.social-icon {
    font-size: 18px;
    display: inline-block;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-section {
        min-width: 100%;
    }
    
    .social-share {
        align-items: center;
    }
    
    .social-btn {
        min-width: 200px;
        justify-content: center;
    }
}