* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rajdhani', sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.logo {
    height: 70px;
    margin-bottom: 10px;
}

.hero {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/hero-bg.jpg') center/cover;
    border-radius: 10px;
    margin-bottom: 50px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Syncopate', sans-serif;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background-color: #e22424;
    color: white;
    padding: 15px 30px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Syncopate', sans-serif;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #ff3333;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 30, 30, 0.3);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature {
    background-color: #111;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #e22424;
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
}

.testimonials {
    margin-bottom: 50px;
}

.testimonial {
    background-color: #111;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 5px solid #e22424;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: bold;
    color: #e22424;
}

.faq {
    margin-bottom: 50px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    background-color: #111;
    padding: 15px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #222;
}

.faq-answer {
    background-color: #0c0c0c;
    padding: 15px;
    border-radius: 0 0 5px 5px;
    margin-top: 2px;
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #e22424;
}

.active::after {
    content: '-';
}

.active + .faq-answer {
    display: block;
}

.join-section {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('img/join-bg.jpg') center/cover;
    border-radius: 10px;
    margin-bottom: 50px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Syncopate', sans-serif;
    letter-spacing: 1px;
}

.join-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

footer {
    text-align: center;
    padding: 30px 0;
    background-color: #111;
    margin-top: 50px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icon {
    font-size: 1.5rem;
    color: #fff;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #e22424;
}

.copyright {
    color: #777;
}

.subtitle {
    color: #e22424;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Chakra Petch', sans-serif;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #e22424;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    text-decoration: none;
}

.floating-button:hover {
    transform: scale(1.1);
    background-color: #ff3333;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animated {
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Logo estilo */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-japanese {
    background-color: #e22424;
    color: white;
    padding: 10px;
    font-weight: bold;
    font-size: 2rem;
    border-radius: 5px;
    margin-right: 10px;
    font-family: 'Chakra Petch', sans-serif;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'Syncopate', sans-serif;
    letter-spacing: 2px;
}

/* Progress bar section */
.progress-section {
    margin-bottom: 50px;
}

.progress-bar {
    width: 100%;
    height: 30px;
    background-color: #111;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(to right, #e22424, #ff3333);
    border-radius: 15px;
    position: relative;
    transition: width 1.5s ease;
}

.progress-1 {
    width: 30%;
}

.progress-2 {
    width: 70%;
}

.progress-3 {
    width: 95%;
}

.stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.stat {
    flex: 1;
    text-align: center;
    padding: 20px;
    background-color: #111;
    border-radius: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e22424;
    margin-bottom: 10px;
    font-family: 'Chakra Petch', sans-serif;
}

/* Video Gallery Styles */
.hero-carousel {
    padding: 40px 0;
    text-align: center;
    margin-bottom: 50px;
}

.hero-carousel h2 {
    color: #e22424;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: left;
    padding-left: 10%;
}

/* LightGallery customization */
.video-gallery-container {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    height: 500px;
    background-color: rgba(17, 17, 17, 0.5);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

/* Custom styles for thumbnails */
.lg-outer .lg-thumb-item {
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
    border-color: #e22424;
}

/* Custom styles for lightgallery */
.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.9);
}

.lg-toolbar {
    background-color: transparent;
}

.lg-toolbar .lg-icon {
    color: #fff;
}

.lg-toolbar .lg-icon:hover {
    color: #e22424;
}

.lg-next, .lg-prev {
    background-color: rgba(226, 36, 36, 0.7);
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.lg-next:hover, .lg-prev:hover {
    background-color: #e22424;
}

/* Video play button styling */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(226, 36, 36, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.3s;
    cursor: pointer;
}

.video-play-button:hover {
    background-color: #e22424;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 26px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 7px;
}

/* Video title styles */
.video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    text-align: left;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .video-gallery-container {
        max-width: 95%;
        height: 300px;
    }
    
    .video-play-button {
        width: 60px;
        height: 60px;
    }
    
    .video-play-button:after {
        border-width: 10px 0 10px 20px;
        margin-left: 5px;
    }
}