/* 3D Sword Section Styles */

#sword-section {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full viewport height */
    overflow: hidden;
    background: linear-gradient(180deg, #0B0F1A 0%, #151C2F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

#sword-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Text Overlay */
.sword-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #E5E7EB;
    pointer-events: none;
    /* Let clicks pass through to canvas if needed */
    padding: 20px;
    max-width: 800px;
}

.sword-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #3B82F6;
    margin-bottom: 20px;
    opacity: 0;
    /* Animated by GSAP */
    transform: translateY(20px);
}

.sword-headline {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
    opacity: 0;
    /* Animated by GSAP */
    transform: translateY(30px);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sword-subline {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #9CA3AF;
    opacity: 0;
    /* Animated by GSAP */
    transform: translateY(20px);
}

/* Optional: Dust Particles styling handled in JS */

@media (max-width: 768px) {
    .sword-headline {
        font-size: 2.5rem;
    }

    .sword-subline {
        font-size: 1rem;
    }
}