/**
 * VPS Creator Voice - Styles
 */

.creator-voice-section {
    padding: 80px 0;
    background: #F5F5F7;
    position: relative;
    overflow: hidden;
}

/* Background Wave SVG */
.creator-voice-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 800' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-50 0 Q150 200 50 400 T-50 800' stroke='%23E0E0E3' stroke-width='1.5' fill='none'/%3E%3Cpath d='M0 0 Q200 200 100 400 T0 800' stroke='%23E8E8EB' stroke-width='1' fill='none'/%3E%3Cpath d='M50 0 Q250 200 150 400 T50 800' stroke='%23E0E0E3' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

.creator-voice-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 800' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M450 0 Q250 200 350 400 T450 800' stroke='%23E0E0E3' stroke-width='1.5' fill='none'/%3E%3Cpath d='M400 0 Q200 200 300 400 T400 800' stroke='%23E8E8EB' stroke-width='1' fill='none'/%3E%3Cpath d='M350 0 Q150 200 250 400 T350 800' stroke='%23E0E0E3' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

.creator-voice-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.creator-voice-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 60px;
    color: #000;
}

/* Slider */
.creator-voice-slider {
    position: relative;
    overflow: hidden;
    padding: 0 70px;
}

.creator-voice-slides {
    display: flex;
    transition: transform 0.5s ease;
    overflow: visible;
}

.creator-voice-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Avatar */
.creator-voice-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 28px;
    display: block;
}

/* Text */
.creator-voice-name {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #000;
}

.creator-voice-role {
    font-size: 18px;
    color: #666;
    margin: 0 0 28px;
}

.creator-voice-comment {
    font-size: 20px;
    line-height: 2;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

/* Navigation Arrows */
.creator-voice-prev,
.creator-voice-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px !important;
    height: 56px !important;
    min-width: 56px;
    min-height: 56px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color 0.3s ease;
    display: block;
}

.creator-voice-prev svg,
.creator-voice-next svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    stroke: #333;
    transition: stroke 0.3s ease;
}

.creator-voice-prev:hover,
.creator-voice-next:hover {
    border-color: #007AFF;
}

.creator-voice-prev:hover svg,
.creator-voice-next:hover svg {
    stroke: #007AFF;
}

.creator-voice-prev {
    left: 0;
}

.creator-voice-next {
    right: 0;
}


/* Dots */
.creator-voice-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.creator-voice-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease;
}

.creator-voice-dot:hover {
    background: #999;
}

.creator-voice-dot.active {
    background: #007AFF;
}

/* Responsive */
@media (max-width: 767px) {
    .creator-voice-section {
        padding: 80px 0;
    }

    .creator-voice-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .creator-voice-slide {
        padding: 0;
    }

    .creator-voice-slider {
        padding: 0 50px;
    }

    .creator-voice-avatar {
        width: 90px;
        height: 90px;
    }

    .creator-voice-name {
        font-size: 20px;
    }

    .creator-voice-role {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .creator-voice-comment {
        font-size: 16px;
    }

    /* Arrows on mobile */
    .creator-voice-prev,
    .creator-voice-next {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px;
        min-height: 44px;
    }

    .creator-voice-prev svg,
    .creator-voice-next svg {
        width: 20px;
        height: 20px;
    }

    .creator-voice-dots {
        margin-top: 32px;
    }
}
