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

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

.character-intro-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.character-intro-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.character-intro-display {
    position: absolute;
    width: 300px;
    height: 450px;
    right: -300px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: all 1s ease;
}

.character-intro-display img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.character-intro-name {
    position: absolute;
    left: -150px;
    bottom: 200px;
    z-index: 2;
    transition: all 1s ease;
}

.character-intro-name img {
    width: 150px;
    height: auto;
}

.character-intro-info {
    position: absolute;
    left: -200px;
    bottom: 100px;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 10px;
    border-radius: 5px;
    z-index: 2;
    transition: all 1s ease;
}

.character-intro-header {
    position: absolute;
    left: -100px;
    top: 80px;
    z-index: 2;
    transition: all 1s ease;
}

.character-intro-header img {
    width: 100px;
    height: auto;
}

.character-intro-slider {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.character-intro-slider-container {
    display: flex;
    width: 240px;
    height: 50px;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.character-intro-slider-item {
    flex: 0 0 auto;
    width: 50px;
    height: 40px;
    margin-right: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.character-intro-slider-item.active {
    background-color: #ff0000;
    transform: scale(1.2);
}

.character-intro-slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}