* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: serif;
      scroll-behavior: smooth;
}


.header {
    position: relative;
    text-align: center;
    height: 100vh;
    color: white;
    overflow: hidden;
    animation: fadeIn 3s ease-in-out;
}

.header h1 {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    background: rgba(0, 0, 0, 0);
    padding: 20px;
    display: inline-block;
    margin-top: 20px;
    text-shadow: 
        0 0 5px #00ffcc,
        0 0 10px #00ffcc,
        0 0 15px #00ffcc,
        0 0 20px #00ccff,
        0 0 30px #00ccff,
        0 0 40px #00ccff;
    animation: multi-shadow 30s infinite;
    font-weight: 400;
}

.suzume-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
 
    
}




.about {
    padding: 60px 20px;
    background: transparent;
    text-align: center;
}

.about h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}


.characters {
    padding: 60px 20px;
    background: transparent;
    text-align: center;
}

.characters h2 {
    font-size: 1.7rem;
    margin-bottom: 20px;
}

.character-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px; 
}

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    max-width: 250px;
    max-height: 400px;
    text-align: center;
}

.card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.character-image {
    width: 100px; 
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.card p {
    font-size: 1rem;
    color: #555;
}

footer {
    padding: 40px 20px;
    background: linear-gradient(135deg, #333, #555);
    color: #fff;
    text-align: center;
    font-family: Arial, sans-serif;
    position: relative;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    letter-spacing: 1.2px;
}

.footer-credits {
    font-size: 14px;
    margin: 8px 0 0;
    color: #ccc;
    font-style: italic;
    opacity: 0.9;
}
/*
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    width: 50px;
    background-color: #ccc;
    border-radius: 2px;
}
*/

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


@keyframes multi-shadow {
    0% {
        text-shadow: 
            0 0 5px #00ffcc, 
            0 0 10px #00ffcc, 
            0 0 15px #00ffcc, 
            0 0 20px #00ccff, 
            0 0 30px #00ccff,
            0 0 40px #00ccff; 
    }
    25% {
        text-shadow: 
            0 0 10px #ff00cc, 
            0 0 15px #ff00cc, 
            0 0 20px #ff00cc, 
            0 0 30px #cc00ff, 
            0 0 40px #cc00ff,
            0 0 50px #cc00ff; 
    }
    50% {
        text-shadow: 
            0 0 15px #ffcc00, 
            0 0 20px #ffcc00, 
            0 0 30px #ffcc00, 
            0 0 40px #cccc00, 
            0 0 50px #cccc00,
            0 0 60px #cccc00; 
    }
    75% {
        text-shadow: 
            0 0 20px #00ccff, 
            0 0 25px #00ccff, 
            0 0 30px #00ccff, 
            0 0 40px #00ffcc, 
            0 0 50px #00ffcc,
            0 0 60px #00ffcc; 
    }
    100% {
        text-shadow: 
            0 0 5px #00ffcc, 
            0 0 10px #00ffcc, 
            0 0 15px #00ffcc, 
            0 0 20px #00ccff, 
            0 0 30px #00ccff,
            0 0 40px #00ccff; 
    }
}
.movie-text {
    text-align: center;
    font-size: 1.6rem; 
    font-weight: bold; 
    color: #333; 
    margin: 20px 0; 
    margin-top: 40px;
}




.video-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: transparent;
}

.video-container video {
    width: 100%; 
    max-width: 100%; 
    height: auto; 
    border-radius: 10px; 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); 
}

.bet-text {
    text-align: center;
    font-size: 1.4rem; 
    font-weight: bold; 
    color: #333;
    margin: 20px 0; 
    margin-top: 60px;
}






.quotes-container {
    padding: 40px 20px;
    background-color: #f0f8ff;
    max-width: 540px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}



.quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    text-align: left;
    position: relative;
    padding-left: 20px;
}


.movie-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}




.movie-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.label {
    font-weight: bold;
    color: #555;
}

.value {
    color: #333;
    text-align: right;
    max-width: 70%; 
}


@media (max-width: 480px) {
    

    .detail-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .label {
        margin-bottom: 5px;
    }

    .value {
        text-align: left;
        max-width: 100%;
    }
}



.movie-section {
            display: flex;
            flex-direction: row;
            margin-bottom: 30px;
            padding: 20px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .movie-details {
            flex: 1;
            margin-right: 20px;
        }
        .movie-title {
            font-size: 24px;
            font-weight: bold;
        }
        .movie-description {
            font-size: 14px;
            color: #666;
        }
        .movie-info {
            margin-top: 10px;
            padding: 10px;
            background-color: transparent;
            border-radius: 5px;
        }
        .movie-info p {
            margin: 5px 0;
        }

video {
            width: 100%;
    max-width: 100%; 
    height: auto; 
    border-radius: 10px; 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); 
        }