@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');

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

body {
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: 'Orbitron', monospace;
    overflow: hidden;
}

.bond-intro {
    text-align: center;
    position: relative;
    z-index: 10;
}

.film-strip {
    width: 100vw;
    height: 40px;
    background: repeating-linear-gradient(
        90deg,
        #1a1a1a 0px,
        #1a1a1a 20px,
        #d4af37 20px,
        #d4af37 24px,
        #1a1a1a 24px,
        #1a1a1a 44px
    );
    margin: 20px 0;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.intro-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: 8px;
}

.name {
    color: #d4af37;
    text-shadow: 
        0 0 20px #d4af37,
        0 0 40px #d4af37,
        0 0 60px rgba(212, 175, 55, 0.5);
    animation: slideInLeft 0.8s ease-out;
}

.mmurr {
    color: #ffffff;
    text-shadow: 
        0 0 20px #ffffff,
        0 0 40px #d4af37,
        0 0 60px rgba(212, 175, 55, 0.8);
    animation: slideInRight 0.8s ease-out 0.2s backwards;
}

.dot {
    color: #d4af37;
    font-size: 2em;
    text-shadow: 0 0 20px #d4af37;
    animation: pulse 0.8s ease-out 0.4s backwards;
}

.mmurrai {
    color: #d4af37;
    content: 'murr';
    text-shadow: 
        0 0 20px #d4af37,
        0 0 40px #d4af37,
        0 0 60px rgba(212, 175, 55, 0.5);
    animation: slideInRight 0.8s ease-out 0.6s backwards;
    user-select: none;
}

.mmurrai::after {
    content: '.ai';
    color: #ffffff;
    text-shadow: 
        0 0 20px #ffffff,
        0 0 40px #d4af37,
        0 0 60px rgba(212, 175, 55, 0.8);
            animation: slideInRight 1.8s ease-out 0.6s backwards;
            user-select: none;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@media (max-width: 768px) {
    .intro-text {
        flex-direction: column;
        gap: 10px;
    }
    
    .film-strip {
        height: 30px;
    }
}
