* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
    z-index: 2;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.logo-japanese {
    background-color: #e22424;
    color: white;
    padding: 15px;
    font-weight: bold;
    font-size: 3.5rem;
    border-radius: 8px;
    margin-right: 15px;
    font-family: 'Chakra Petch', sans-serif;
}

.logo-text {
    font-size: 4rem;
    font-weight: bold;
    font-family: 'Syncopate', sans-serif;
    letter-spacing: 3px;
}

.description {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.description strong {
    color: #e22424;
    font-weight: 700;
}

.cta-button {
    display: inline-block;
    background-color: #e22424;
    color: white;
    padding: 15px 40px;
    font-family: 'Syncopate', sans-serif;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: 2px solid #e22424;
}

.cta-button:hover {
    background-color: transparent;
    color: #e22424;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(226, 36, 36, 0.2);
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
    background: 
        linear-gradient(45deg, transparent 90%, #e22424 90%, #e22424 95%, transparent 95%),
        linear-gradient(135deg, transparent 90%, #e22424 90%, #e22424 95%, transparent 95%),
        linear-gradient(225deg, transparent 90%, #e22424 90%, #e22424 95%, transparent 95%),
        linear-gradient(315deg, transparent 90%, #e22424 90%, #e22424 95%, transparent 95%);
    background-size: 60px 60px;
    background-position: center;
}

/* Animación de pulsación para el botón */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(226, 36, 36, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(226, 36, 36, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(226, 36, 36, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@media (max-width: 500px) {
    .logo-japanese {
        font-size: 2.5rem;
        padding: 10px;
    }
    
    .logo-text {
        font-size: 3rem;
    }
    
    .description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}