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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow: hidden;
    overflow-x: hidden;
    height: 100vh;
    width: 100vw;
    max-width: 100%;
}

body.result-page-active {
    overflow-y: auto;
    overflow-x: hidden;
    height: auto;
    min-height: 100vh;
    max-width: 100%;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(102, 51, 153, 0.7) 0%, rgba(30, 0, 60, 0.9) 100%);
    z-index: 1;
}

.quiz-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 1;
}

.promo-content {
    text-align: center;
    color: white;
    z-index: 2;
    padding: 20px;
    max-width: 600px;
    margin-bottom: 60px;
}

.promo-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.promo-subtitle {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.start-button {
    background: linear-gradient(135deg, #9333ea, #ec4899);
    color: white;
    border: none;
    padding: 18px 108px;
    font-size: 24px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.4);
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.start-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(147, 51, 234, 0.6);
}

.start-button:active {
    transform: translateY(0);
}

.app-name {
    color: #b0b0b0;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 400;
}

.policy-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    font-size: 12px;
}

.policy-link {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.policy-link:hover {
    color: #ffffff;
}

.heart,
.flame {
    font-size: 20px;
    display: inline-block;
}

/* Quiz Screen Styles */
.quiz-screen {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 1;
    background: radial-gradient(circle at center, rgba(102, 51, 153, 0.8) 0%, rgba(30, 0, 60, 0.95) 100%);
    padding: 20px;
    overflow-y: auto;
}

.quiz-screen .nsfw-question {
    padding: 0;
    margin: -20px;
    width: calc(100% + 40px);
    height: calc(100vh + 40px);
}

.quiz-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    padding-top: 10px;
}

.back-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(147, 51, 234, 0.3);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.back-button:hover {
    background: rgba(147, 51, 234, 0.5);
    transform: scale(1.1);
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #9966FF, #9333ea);
    border-radius: 3px;
    transition: width 0.3s ease;
    width: 20%;
}

.quiz-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.quiz-question-block {
    width: 100%;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quiz-question {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.quiz-question .highlight {
    color: #9966FF;
}

.quiz__radios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

/* Grid 2x2 para perguntas com 4 opções */
.quiz-question-block[id="question-1"] .quiz__radios,
.quiz-question-block[id="question-2"] .quiz__radios,
.quiz-question-block[id="question-3"] .quiz__radios,
.quiz-question-block[id="question-4"] .quiz__radios {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin: 0 auto;
}

.radios-quiz__label {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
}

.radios-quiz__label:hover {
    transform: translateY(-4px);
    border-color: rgba(153, 102, 255, 0.5);
    box-shadow: 0 8px 24px rgba(153, 102, 255, 0.3);
}

.radios-quiz__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radios-quiz__input:checked + .radios-quiz__options-images-c {
    border-color: #9966FF;
    box-shadow: 0 0 0 3px rgba(153, 102, 255, 0.3);
}

.radios-quiz__input:checked ~ .radios-quiz__options-images-name {
    background: rgba(153, 102, 255, 0.2);
    color: #9966FF;
}

.radios-quiz__options-images-c {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    transition: all 0.3s ease;
}

.radios-quiz__options-images-c img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.radios-quiz__options-images-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.radios-quiz__options-images-name svg {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.radios-quiz__input:checked ~ .radios-quiz__options-images-name svg {
    opacity: 1;
}

/* Shape Quiz Styles (Personality) */
.shape-quiz {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

.shape-quiz__label {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
}

.shape-quiz__label:hover {
    transform: translateY(-4px);
    border-color: rgba(153, 102, 255, 0.5);
    box-shadow: 0 8px 24px rgba(153, 102, 255, 0.3);
}

.shape-quiz__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.shape-quiz__input:checked + .shape-quiz__inner {
    background: rgba(153, 102, 255, 0.2);
    border-color: #9966FF;
    box-shadow: 0 0 0 3px rgba(153, 102, 255, 0.3);
}

.shape-quiz__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: 16px;
}

.shape-quiz__image {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shape-quiz__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.shape-quiz__descr {
    text-align: center;
    color: #ffffff;
}

.shape-quiz__descr > span:first-child {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff;
}

.shape-quiz__descr > span:last-child {
    display: block;
    font-size: 12px;
    color: #b0b0b0;
    line-height: 1.4;
}

.shape-quiz__input:checked + .shape-quiz__inner .shape-quiz__descr > span:first-child {
    color: #9966FF;
}

/* Responsive */
@media (max-width: 768px) {
    .promo-title {
        font-size: 36px;
    }

    .promo-subtitle {
        font-size: 48px;
    }

    .start-button {
        font-size: 20px;
        padding: 16px 40px;
    }

    .policy-links {
        font-size: 11px;
        gap: 8px;
    }

    .quiz__radios {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .shape-quiz {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .shape-quiz__image {
        width: 50px;
        height: 50px;
    }

    .shape-quiz__descr > span:first-child {
        font-size: 14px;
    }

    .shape-quiz__descr > span:last-child {
        font-size: 11px;
    }

    .quiz-question {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .promo-title {
        font-size: 28px;
    }

    .promo-subtitle {
        font-size: 36px;
    }

    .start-button {
        font-size: 18px;
        padding: 14px 102px;
    }

    .quiz__radios {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .quiz-question {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .radios-quiz__options-images-name {
        font-size: 14px;
        padding: 10px 12px;
    }

    .checkboxs-quiz__line {
        margin-bottom: 10px;
    }

    .checkboxs-quiz__descr {
        font-size: 14px;
    }
}

/* Checkbox Quiz Styles (Chat Topics) */
.checkboxs-quiz {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.checkboxs-quiz__line {
    width: 100%;
}

.checkboxs-quiz__label {
    position: relative;
    cursor: pointer;
    display: block;
    width: 100%;
}

.checkboxs-quiz__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkboxs-quiz__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.checkboxs-quiz__label:hover .checkboxs-quiz__inner {
    border-color: rgba(153, 102, 255, 0.5);
    background: rgba(153, 102, 255, 0.1);
}

.checkboxs-quiz__input:checked + .checkboxs-quiz__inner {
    background: rgba(153, 102, 255, 0.2);
    border-color: #9966FF;
    box-shadow: 0 0 0 3px rgba(153, 102, 255, 0.3);
}

.checkboxs-quiz__descr {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    flex: 1;
}

.option-image {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.option-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.checkboxs-quiz__square {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkboxs-quiz__square svg {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.checkboxs-quiz__input:checked + .checkboxs-quiz__inner .checkboxs-quiz__square {
    background: #9966FF;
    border-color: #9966FF;
}

.checkboxs-quiz__input:checked + .checkboxs-quiz__inner .checkboxs-quiz__square svg {
    opacity: 1;
}

.continue-button {
    width: 100%;
    max-width: 400px;
    margin: 40px auto 0;
    padding: 18px 48px;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.4);
    display: block;
}

.continue-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(147, 51, 234, 0.6);
}

.continue-button:active {
    transform: translateY(0);
}

/* Name Input Styles */
.name-input-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.name-image-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(153, 102, 255, 0.3);
    box-shadow: 0 8px 32px rgba(153, 102, 255, 0.3);
}

.name-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.name-input-wrapper {
    width: 100%;
}

.name-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    outline: none;
}

.name-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.name-input:focus {
    border-color: #9966FF;
    background: rgba(153, 102, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(153, 102, 255, 0.3);
}

.random-name-button {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.random-name-button:hover {
    border-color: rgba(153, 102, 255, 0.5);
    background: rgba(153, 102, 255, 0.1);
}

.random-name-button:active {
    transform: scale(0.98);
}

.random-name-button svg {
    width: 20px;
    height: 20px;
}

.next-button {
    width: 100%;
    padding: 18px 48px;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.4);
}

.next-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(147, 51, 234, 0.6);
}

.next-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .name-image-container {
        width: 160px;
        height: 160px;
    }

    .name-input,
    .random-name-button {
        font-size: 14px;
        padding: 14px 18px;
    }

    .next-button {
        font-size: 16px;
        padding: 16px 40px;
    }
}

@media (max-width: 480px) {
    .name-image-container {
        width: 140px;
        height: 140px;
    }
}

/* Voice Audio Styles */
.audios-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
    box-sizing: border-box;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.audio-image {
    margin-left: auto;
    object-fit: cover;
}

.audio-image img {
    height: 68px;
    width: 100px;
    margin-right: -12px;
    object-fit: cover;
    filter: blur(3px);
    border-top-right-radius: 16px;
    -webkit-mask-image: -webkit-gradient(
        linear,
        center center,
        left center,
        from(rgba(255, 255, 255, 1)),
        to(rgba(255, 255, 255, 0))
    );
    mask-image: linear-gradient(
        to left,
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 0)
    );
    border-bottom-right-radius: 16px;
}

.audio-container {
    width: 100%;
    height: 80px;
    background: transparent;
    padding: 4px;
    box-sizing: border-box;
    border: 1px solid transparent;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.audio-container.selected {
    border: 1px solid #eaadff;
}

.audio-container.selected .audio-image img {
    filter: blur(0px);
}

.audio-content {
    margin: 1px;
    gap: 8px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background: linear-gradient(
        197.54deg,
        rgba(194, 194, 194, 0.4) 0%,
        rgba(221, 221, 221, 0.16) 100%
    ) !important;
    box-sizing: border-box;
    border-radius: 16px;
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    align-items: center;
    transition: 0.1s ease-in-out;
    justify-content: flex-start;
}

.is-current {
    display: none;
    font-size: 12px;
    margin-top: 4px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.audio-container.selected .is-current {
    display: block;
}

.audio-container.selected .audio-content {
    background: linear-gradient(
            197.54deg,
            rgba(194, 194, 194, 0.4) 0%,
            rgba(221, 221, 221, 0.16) 100%
        ),
        linear-gradient(
            0deg,
            rgba(172, 243, 226, 0.3),
            rgba(172, 243, 226, 0.3)
        );
}

.audio-play-btn {
    width: 44px;
    height: 44px;
    cursor: pointer;
    border-radius: 44px;
    background: linear-gradient(to top, #9924FF, #C04DFF, #E090FF) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.audio-play-btn:hover {
    transform: scale(1.1);
}

.audio-name {
    color: white;
    font-weight: 600;
    font-size: 20px;
    flex: 1;
    margin-left: 12px;
}

@media (max-width: 768px) {
    .audio-name {
        font-size: 18px;
    }

    .audio-play-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .audio-name {
        font-size: 16px;
    }

    .audio-image img {
        height: 60px;
        width: 80px;
    }
}

/* NSFW Question Styles */
.nsfw-question {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.nsfw-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    margin: 0;
    padding: 0;
}

.nsfw-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

.nsfw-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(
        to top,
        rgba(102, 51, 153, 0.95) 0%,
        rgba(102, 51, 153, 0.7) 50%,
        rgba(102, 51, 153, 0.3) 100%
    );
    z-index: 1;
}

.nsfw-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.nsfw-question-text {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.4;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.nsfw-highlight-purple {
    color: #9966FF;
    font-weight: 800;
}

.nsfw-highlight-pink {
    color: #ec4899;
    font-weight: 800;
}

.nsfw-buttons {
    display: flex;
    gap: 16px;
    width: 100%;
    max-width: 400px;
}

.nsfw-button {
    flex: 1;
    padding: 18px 32px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nsfw-button-no {
    background: rgba(102, 51, 153, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.nsfw-button-no:hover {
    background: rgba(102, 51, 153, 1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 51, 153, 0.4);
}

.nsfw-button-yes {
    background: linear-gradient(135deg, #9333ea, #ec4899);
    border: 2px solid transparent;
}

.nsfw-button-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.6);
}

.nsfw-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .nsfw-question-text {
        font-size: 24px;
    }

    .nsfw-buttons {
        max-width: 100%;
        gap: 12px;
    }

    .nsfw-button {
        font-size: 16px;
        padding: 16px 24px;
    }

    .nsfw-overlay {
        height: 45%;
    }
}

@media (max-width: 480px) {
    .nsfw-question-text {
        font-size: 20px;
    }

    .nsfw-button {
        font-size: 14px;
        padding: 14px 20px;
    }

    .nsfw-content {
        padding: 30px 16px;
        gap: 24px;
    }

    .nsfw-overlay {
        height: 50%;
    }
}

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at center, rgba(102, 51, 153, 0.95) 0%, rgba(30, 0, 60, 0.98) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.loading-container {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.loading-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.5s ease;
}

.loading-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.loading-step {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.loading-step.active {
    opacity: 1;
    transform: translateY(0);
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.step-text {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
}

.step-percentage {
    font-size: 18px;
    font-weight: 700;
    color: #9966FF;
    text-align: right;
    min-width: 50px;
}

.step-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.step-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #9966FF, #ec4899);
    border-radius: 4px;
    transition: width 0.1s linear;
    position: relative;
    overflow: hidden;
}

.step-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .loading-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .step-text {
        font-size: 16px;
    }

    .step-percentage {
        font-size: 16px;
    }

    .loading-steps {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .loading-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .step-text {
        font-size: 14px;
    }

    .step-percentage {
        font-size: 14px;
        min-width: 40px;
    }

    .loading-steps {
        gap: 20px;
    }
}

/* Result Page Styles */
.result-page {
    width: 100%;
    min-height: 100vh;
    background: #0a0a0a;
    color: #ffffff;
    padding-top: 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    z-index: 1000;
    max-width: 100%;
}

/* Hero Section */
.result-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 0;
}

.result-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    z-index: 10;
}

.premium-badge {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

.claim-discount-btn {
    background: #FFD700;
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.claim-discount-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.5) 50%,
        transparent 100%
    );
    z-index: 1;
}

.hero-content {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    padding: 0 20px;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #9966FF, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    text-shadow: 0 0 30px rgba(153, 102, 255, 0.5);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Sections */
.result-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: #0a0a0a;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #9966FF, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 24px;
    text-shadow: 0 0 20px rgba(153, 102, 255, 0.3);
}

.section-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
}

.benefits-list li svg {
    flex-shrink: 0;
}

/* Pricing Cards */
.discount-section {
    background: rgba(153, 102, 255, 0.05);
    border-radius: 24px;
    padding: 40px 20px;
    margin: 20px auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto 24px;
}

.pricing-card {
    background: rgba(34, 34, 34, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-width: 0;
    cursor: pointer;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.pricing-card.selected {
    border: 2px solid #9966FF;
    box-shadow: 0 0 20px rgba(153, 102, 255, 0.4);
    background: rgba(153, 102, 255, 0.1);
}

.pricing-card.featured {
    border: 2px solid #9966FF;
    box-shadow: 0 0 30px rgba(153, 102, 255, 0.5);
}

.pricing-card.featured.selected {
    border: 2px solid #9966FF;
    box-shadow: 0 0 30px rgba(153, 102, 255, 0.7);
    background: rgba(153, 102, 255, 0.15);
}

.pricing-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.pricing-period {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.pricing-badge {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
}

.pricing-badge-green {
    background: #10B981;
}

.pricing-badge-pink {
    background: #EC4899;
}

.pricing-badge-orange {
    background: #F97316;
}

.pricing-card-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.pricing-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.pricing-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    flex-shrink: 0;
}

.price-old {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    margin-bottom: 4px;
}

.price-new {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.price-daily-number {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.price-daily-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.guarantees {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
    padding: 12px 0;
    flex-wrap: nowrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
}

.guarantee-item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.guarantee-divider {
    width: 1px;
    height: 20px;
    background: rgba(153, 102, 255, 0.3);
}

.cta-button-large {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 24px;
    padding: 20px 48px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.6);
}

.disclaimer {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.disclaimer a {
    color: #9966FF;
    text-decoration: underline;
}

/* Featured Logos */
.featured-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.reviews-count {
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 24px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.testimonial-name {
    font-weight: 600;
    color: #ffffff;
}

.stars {
    color: #FFD700;
    font-size: 18px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

/* Featured Users Grid */
.featured-users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 32px;
}

.user-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.user-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9966FF, #ec4899);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 auto 12px;
}

.user-name {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.user-name-duplicate {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 14px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.cta-button-secondary {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 16px 32px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: block;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
}

/* Statistics */
.stats-section {
    background: rgba(153, 102, 255, 0.05);
    border-radius: 24px;
    padding: 60px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-item svg {
    margin-bottom: 16px;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #9966FF;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* FAQ */
.faq-section {
    max-width: 800px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    font-weight: 600;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px 20px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Guarantee Section */
.guarantee-section {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 24px;
    padding: 60px 20px;
    text-align: center;
}

.guarantee-badge-large {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.guarantee-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.guarantee-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.result-footer {
    padding: 40px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
}

.secure-payment-btn {
    background: rgba(153, 102, 255, 0.2);
    border: 2px solid rgba(153, 102, 255, 0.5);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.secure-payment-btn:hover {
    background: rgba(153, 102, 255, 0.3);
    border-color: #9966FF;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .guarantees {
        flex-direction: row;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .guarantee-item {
        font-size: 11px;
    }
    
    .guarantee-item svg {
        width: 16px;
        height: 16px;
    }
    
    .guarantee-divider {
        height: 16px;
    }

    .featured-users-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .featured-users-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Initial Loading Spinner */
.initial-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.initial-loading.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: #9966FF;
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
    border-top-color: #9966FF;
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
    border-top-color: #EC4899;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
}

.spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
    border-top-color: #FF9900;
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
}

.spinner-ring:nth-child(4) {
    animation-delay: 0s;
    border-top-color: #667eea;
    width: 30%;
    height: 30%;
    top: 35%;
    left: 35%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* PIX Modal Styles */
.pix-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.pix-modal-content {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pix-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.pix-modal-close:hover {
    color: #9966FF;
}

.pix-modal-content h2 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.pix-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pix-option-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.pix-option-btn:hover {
    border-color: rgba(153, 102, 255, 0.5);
    background: rgba(153, 102, 255, 0.1);
    transform: translateY(-2px);
}

.pix-option-btn.featured {
    border-color: #9966FF;
    box-shadow: 0 0 20px rgba(153, 102, 255, 0.3);
}

.pix-option-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pix-option-price {
    font-size: 28px;
    font-weight: 800;
    color: #9966FF;
}

.pix-option-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #EC4899;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.pix-amount-display {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #9966FF;
    margin-bottom: 20px;
}

.pix-qrcode {
    text-align: center;
    margin: 20px 0;
}

.pix-code-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.pix-code-input {
    flex: 1;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 14px;
}

.pix-copy-btn {
    padding: 12px 24px;
    background: #24CA68;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.pix-copy-btn:hover {
    background: #1aaa55;
}

.pix-status {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
}

.pix-instructions {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .pix-modal-content {
        padding: 20px;
        width: 95%;
    }
    
    .pix-code-container {
        flex-direction: column;
    }
    
    .pix-copy-btn {
        width: 100%;
    }
}
