/* anima-live.css - Styles for the Anima Live Landing Page */

.anima-live-page {
    background: #000;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
}

/* HERO SECTION */
.live-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.6;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, #000 100%);
    z-index: 1;
}

.hero-live-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-live-content h1 {
    font-size: 5rem;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-live-content p {
    font-size: 1.5rem;
    color: var(--neon-cyan, #00F0FF);
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

/* VALUE BULLETS */
.value-section {
    padding: 100px 20px;
    background: #050505;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    padding: 40px;
    border-radius: 12px;
    transition: 0.3s;
    text-align: center;
}

.value-card:hover {
    border-color: var(--neon-purple, #BC13FE);
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.2);
    transform: translateY(-5px);
}

.value-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* ROADMAP */
.roadmap-section {
    padding: 100px 20px;
    background: #000;
}

.roadmap-container {
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid #222;
    border-radius: 8px;
}

.roadmap-item.completed {
    border-color: var(--neon-green, #00FF94);
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid #555;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.completed .checkbox-custom {
    background: var(--neon-green, #00FF94);
    border-color: var(--neon-green, #00FF94);
    color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-live-content h1 {
        font-size: 3rem;
    }
}