* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: white;
    overflow-x: hidden;
}

.container {
    background: rgba(15, 12, 41, 0.8);
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(106, 17, 203, 0.5),
                0 0 100px rgba(37, 117, 252, 0.3),
                inset 0 0 20px rgba(255, 215, 0, 0.1);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    border: 1px solid rgba(106, 17, 203, 0.3);
    backdrop-filter: blur(10px);
}

.container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #6a11cb, #2575fc, #ffd700, #6a11cb);
    border-radius: 22px;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% {
        filter: blur(5px) opacity(0.7);
    }
    50% {
        filter: blur(8px) opacity(1);
    }
    100% {
        filter: blur(5px) opacity(0.7);
    }
}

.logo {
    width: 160px;
    height: 160px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(106, 17, 203, 0.7),
                0 0 60px rgba(37, 117, 252, 0.4);
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease;
    background: rgba(15, 12, 41, 0.9);
    padding: 10px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    filter: brightness(1.1) contrast(1.1);
}

.logo:hover {
    transform: scale(1.05) rotate(5deg);
}

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

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

.message {
    font-size: 26px;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.4;
    text-shadow: 0 0 10px rgba(106, 17, 203, 0.7);
    font-weight: 300;
    letter-spacing: 1px;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.button {
    display: block;
    padding: 18px 25px;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.4);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    letter-spacing: 1px;
}

.button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(106, 17, 203, 0.6),
                0 0 15px rgba(255, 215, 0, 0.4);
    background: linear-gradient(to right, #7a1bdb, #3585ff);
}

.button:active {
    transform: translateY(0);
}

.button::after {
    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;
}

.button:hover::after {
    left: 100%;
}

.best-site {
    font-size: 22px;
    color: #ffd700;
    font-weight: bold;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(106, 17, 203, 0.3);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    letter-spacing: 1.5px;
    position: relative;
}

.best-site::before {
    content: '✦';
    position: absolute;
    left: 10%;
    top: -10px;
    color: #ffd700;
    font-size: 24px;
}

.best-site::after {
    content: '✦';
    position: absolute;
    right: 10%;
    top: -10px;
    color: #ffd700;
    font-size: 24px;
}

/* Efectos de partículas futuristas */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 215, 0, 0.7);
    border-radius: 50%;
    animation: float 10s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
    }
    
    .logo {
        width: 140px;
        height: 140px;
    }
    
    .message {
        font-size: 22px;
    }
    
    .button {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .best-site {
        font-size: 20px;
    }
}

@media (max-width: 400px) {
    .logo {
        width: 120px;
        height: 120px;
    }
    
    .message {
        font-size: 20px;
    }
    
    .button {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .best-site {
        font-size: 18px;
    }
}