/* --- THEME & COLOR PALETTE (CSS VARIABLES) --- */
:root {
    --dyson-purple: #a133c8;
    --dyson-dark-purple: #7b2b9e;
    --dyson-light-purple: #c266e8;
    --dyson-magenta: #cf3476;
    --main-dark-bg: #0a0a0a;
    --main-card-bg: #1a1a1a;
    --main-text-dark: #e4e6eb;
    --main-text-light: #a0a0a0;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --success-green: #2a9a47;
}

/* --- GLOBAL RESET & BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

body {
    background-color: var(--main-dark-bg);
    color: var(--main-text-dark);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- PREMIUM PARTICLE BACKGROUND ANIMATION --- */
.bubble-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #1a0a1f 0%, #0a0a0a 100%);
}

.bubble {
    position: absolute;
    bottom: -150px;
    background: radial-gradient(circle, rgba(161, 51, 200, 0.3) 0%, rgba(207, 52, 118, 0.2) 50%, transparent 100%);
    border-radius: 50%;
    animation: fizz 25s linear infinite;
    opacity: 0;
    filter: blur(3px);
}

@keyframes fizz {
    0% {
        transform: translateY(0) scale(0.8) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1.5) rotate(360deg);
        opacity: 0;
    }
}

.bubble:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-duration: 20s;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 30px;
    height: 30px;
    left: 20%;
    animation-duration: 15s;
    animation-delay: 2s;
}

.bubble:nth-child(3) {
    width: 60px;
    height: 60px;
    left: 35%;
    animation-duration: 25s;
    animation-delay: 4s;
}

.bubble:nth-child(4) {
    width: 75px;
    height: 75px;
    left: 50%;
    animation-duration: 18s;
    animation-delay: 0s;
}

.bubble:nth-child(5) {
    width: 45px;
    height: 45px;
    left: 55%;
    animation-duration: 22s;
    animation-delay: 1s;
}

.bubble:nth-child(6) {
    width: 55px;
    height: 55px;
    left: 65%;
    animation-duration: 19s;
    animation-delay: 4s;
}

.bubble:nth-child(7) {
    width: 35px;
    height: 35px;
    left: 80%;
    animation-duration: 16s;
    animation-delay: 2s;
}

.bubble:nth-child(8) {
    width: 70px;
    height: 70px;
    left: 90%;
    animation-duration: 28s;
    animation-delay: 5s;
}

/* --- CORE LAYOUT & TYPOGRAPHY --- */
.screen {
    max-width: 1024px;
    min-height: 100vh;
    margin: 0 auto;
    background: linear-gradient(180deg, #1a1a1a 0%, #121212 100%);
    box-shadow: 0 20px 80px rgba(161, 51, 200, 0.5), 0 0 100px rgba(207, 52, 118, 0.3);
    display: flex;
    flex-direction: column;
    position: relative;
}

.screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--dyson-purple) 0%, 
        var(--dyson-magenta) 50%, 
        var(--dyson-light-purple) 100%);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.wrapper {
    padding: 25px;
    max-width: 640px;
    margin: 0 auto;
    flex-grow: 1;
}

h1,
h2,
h3,
h4,
.faq-headline,
.others-say {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--main-text-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--dyson-purple), var(--dyson-magenta), var(--dyson-light-purple));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-text 4s ease infinite;
}

@keyframes gradient-text {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

h3 {
    font-size: 2.25rem;
    margin-bottom: 10px;
    color: var(--main-text-dark);
}

h4 {
    font-size: 2.75rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--dyson-purple), var(--dyson-magenta), var(--dyson-light-purple));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-text 4s ease infinite;
}

.intro-txt,
.end-text,
p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: #b8b8b8;
    line-height: 1.7;
}

.color {
    font-weight: 700;
    background: linear-gradient(135deg, var(--dyson-purple), var(--dyson-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- HEADER & TIMER STYLES --- */
.header {
    padding: 15px 25px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    color: var(--main-text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(161, 51, 200, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.logo>span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--dyson-purple), var(--dyson-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timer-top {
    display: none;
    text-align: center;
    background: linear-gradient(135deg, var(--dyson-purple) 0%, var(--dyson-magenta) 100%);
    color: #fff;
    padding: 12px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    position: sticky;
    top: 0;
    z-index: 500;
    box-shadow: 0 4px 20px rgba(161, 51, 200, 0.4);
}

/* --- STEP 1: INTRODUCTION --- */
.intro-img {
    max-width: 548px;
    margin: 32px auto;
    min-width: 100%;
    position: relative;
}

.intro-img img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(161, 51, 200, 0.4),
                0 0 80px rgba(207, 52, 118, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.intro-img img:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 30px 80px rgba(161, 51, 200, 0.5),
                0 0 100px rgba(207, 52, 118, 0.4);
}

/* --- PREMIUM ANIMATED BUTTON (ПОСТІЙНА АНІМАЦІЯ) --- */
.started {
    padding: 20px 0;
    position: sticky;
    bottom: 0;
    margin-top: 20px;
}

.started button,
.started a {
    cursor: pointer;
    display: block;
    width: 100%;
    position: relative;
    background: linear-gradient(
        135deg,
        var(--dyson-purple) 0%,
        var(--dyson-magenta) 25%,
        var(--dyson-light-purple) 50%,
        var(--dyson-magenta) 75%,
        var(--dyson-purple) 100%
    );
    background-size: 200% 200%;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    border: none;
    border-radius: 16px;
    padding: 22px 40px;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(161, 51, 200, 0.6),
        0 0 60px rgba(207, 52, 118, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -4px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* ПОСТІЙНА АНІМАЦІЯ ГРАДІЄНТА */
    animation: gradient-animation 3s ease infinite;
}

@keyframes gradient-animation {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Постійний світловий блиск */
.started button::before,
.started a::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: skewX(-25deg);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -60%;
    }
    20%, 100% {
        left: 140%;
    }
}

/* Пульсуюче сяйво */
.started button::after,
.started a::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    opacity: 0;
    animation: pulse-light 2s ease-in-out infinite;
}

@keyframes pulse-light {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.started button:hover,
.started a:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 15px 60px rgba(161, 51, 200, 0.8),
        0 0 100px rgba(207, 52, 118, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    letter-spacing: 3px;
}

.started button:active,
.started a:active {
    transform: translateY(-2px) scale(1.01);
}

/* --- STEP 2: SURVEY QUESTIONS --- */
.step2 {
    display: none;
}

.question-number {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #555;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.question-number span {
    background: linear-gradient(135deg, var(--dyson-purple), var(--dyson-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.question p {
    color: #888;
    margin-bottom: 2rem;
}

.question button {
    display: block;
    width: 100%;
    background: #252525;
    border: 2px solid #333;
    color: #e4e6eb;
    padding: 18px 20px;
    margin-bottom: 15px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.question button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--dyson-purple), var(--dyson-magenta));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.question button span,
.question button::after {
    position: relative;
    z-index: 1;
}

.question button:hover {
    border-color: var(--dyson-purple);
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(161, 51, 200, 0.4);
}

.question button:hover::before {
    opacity: 1;
}

/* --- STEP 3: LOADING ANIMATION --- */
.step3 {
    display: none;
    text-align: center;
}

.loading-text {
    font-size: 1.25rem;
    color: #b8b8b8;
    margin-bottom: 30px;
}

.loading-steps {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.loading-step {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border-radius: 14px;
    background: #252525;
    font-size: 1.1rem;
    color: #b8b8b8;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}

.loading-step.working {
    background: linear-gradient(135deg, rgba(161, 51, 200, 0.15) 0%, rgba(207, 52, 118, 0.1) 100%);
    border-color: rgba(161, 51, 200, 0.3);
    box-shadow: 0 6px 20px rgba(161, 51, 200, 0.3);
}

.loading-step.done {
    background: linear-gradient(135deg, rgba(42, 154, 71, 0.15) 0%, rgba(42, 154, 71, 0.1) 100%);
    border-color: rgba(42, 154, 71, 0.3);
}

.step-icon {
    position: relative;
    width: 28px;
    height: 28px;
}

.spinner,
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.spinner {
    border: 3px solid #444;
    border-top: 3px solid var(--dyson-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 0;
}

.checkmark {
    color: var(--success-green);
    opacity: 0;
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    animation: draw-check 0.3s ease forwards;
    filter: drop-shadow(0 2px 8px rgba(42, 154, 71, 0.5));
}

.loading-step.working .spinner {
    opacity: 1;
}

.loading-step.done .spinner {
    opacity: 0;
}

.loading-step.done .checkmark {
    opacity: 1;
    animation: draw-check 0.3s ease forwards 0.1s;
}

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

@keyframes draw-check {
    to {
        stroke-dashoffset: 0;
    }
}

/* --- STEP 4: FINAL CONFIRMATION --- */
.step4 {
    display: none;
}

.step4 .intro-img {
    margin: 0 auto 32px;
    max-width: 384px;
}

.end-list {
    margin-bottom: 20px;
    list-style: none;
    counter-reset: end-list-counter;
}

.end-list li {
    padding: 22px 20px 22px 60px;
    font-size: 1rem;
    border-top: 2px dashed rgba(161, 51, 200, 0.2);
    position: relative;
    transition: all 0.3s ease;
    color: #b8b8b8;
}

.end-list li:hover {
    background: linear-gradient(135deg, rgba(161, 51, 200, 0.08) 0%, rgba(207, 52, 118, 0.05) 100%);
    border-radius: 12px;
}

.end-list li::before {
    counter-increment: end-list-counter;
    content: counter(end-list-counter);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--dyson-purple), var(--dyson-magenta));
    color: #fff;
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(161, 51, 200, 0.5);
}

.end-list li:first-child {
    border-top: 0;
}

.end-list li span {
    font-weight: 700;
    color: var(--main-text-dark);
}

/* --- COMMENTS SECTION STYLES --- */
.comments {
    margin-top: 64px;
}

.others-say {
    font-size: 1.75rem;
    margin-bottom: 20px;
    border-bottom: 3px solid transparent;
    background: linear-gradient(90deg, var(--dyson-purple), var(--dyson-magenta)) bottom / 100% 3px no-repeat;
    padding-bottom: 12px;
    color: var(--main-text-dark);
}

.sorting-box {
    padding: 8px 0;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(161, 51, 200, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sorting-box>p {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    color: #b8b8b8;
}

.inner-sorting-box {
    font-size: 0.9rem;
}

.sort>button {
    cursor: pointer;
    color: #e4e6eb;
    background: #252525;
    border: 1px solid #444;
    border-radius: 6px;
    padding: 6px 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.sort>button:hover {
    border-color: var(--dyson-purple);
    background: rgba(161, 51, 200, 0.1);
}

.dropdown-sort {
    display: none;
    z-index: 50;
    position: absolute;
    background: #252525;
    border: 1px solid #444;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.dropdown-sort button {
    background: transparent;
    border: none;
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 15px;
    cursor: pointer;
    color: #e4e6eb;
    transition: all 0.2s ease;
}

.dropdown-sort button:hover,
.dropdown-sort button.selected {
    background-color: rgba(161, 51, 200, 0.2);
}

.add-comment {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.avatar-placeholder {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-weight: bold;
}

.comment-input {
    flex: 1;
    padding: 12px;
    border: 2px solid #333;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: #252525;
    color: #e4e6eb;
    transition: all 0.3s ease;
}

.comment-input:focus {
    outline: none;
    border-color: var(--dyson-purple);
    background: #2a2a2a;
    box-shadow: 0 0 20px rgba(161, 51, 200, 0.3);
}

.post-button {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--dyson-purple), var(--dyson-magenta));
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(161, 51, 200, 0.4);
}

.post-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(161, 51, 200, 0.6);
}

.comment {
    display: flex;
    gap: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #333;
    border-radius: 16px;
    background: #1f1f1f;
    transition: all 0.3s ease;
}

.comment:hover {
    border-color: rgba(161, 51, 200, 0.5);
    box-shadow: 0 8px 25px rgba(161, 51, 200, 0.2);
    transform: translateY(-2px);
    background: #252525;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #333;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.comment-author {
    font-weight: bold;
    background: linear-gradient(135deg, var(--dyson-purple), var(--dyson-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comment-date {
    color: #666;
    font-size: 0.85rem;
}

.comment-text {
    margin-bottom: 10px;
    line-height: 1.5;
    color: #b8b8b8;
}

.comment-image {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid #333;
}

.comment-actions {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #666;
}

.comment-action {
    cursor: pointer;
    transition: color 0.3s ease;
}

.comment-action:hover {
    color: var(--dyson-purple);
}

.load-more {
    background: linear-gradient(135deg, var(--dyson-purple) 0%, var(--dyson-magenta) 100%);
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 14px 20px;
    width: 100%;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(161, 51, 200, 0.4);
}

.load-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(161, 51, 200, 0.6);
}

/* --- FOOTER STYLES --- */
.footer {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    color: #888;
    margin-top: 60px;
    border-top: 3px solid transparent;
    background-image: 
        linear-gradient(180deg, #0a0a0a 0%, #000000 100%),
        linear-gradient(90deg, var(--dyson-purple), var(--dyson-magenta));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.footer-links {
    margin: 16px 0 24px;
}

.footer-links a {
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
    color: #b8b8b8;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--dyson-purple);
}

.trade-names,
.disclaimer-box p {
    font-size: 0.75rem;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto 20px;
    color: #666;
}

.disclaimer-box p a {
    color: var(--dyson-purple);
    font-weight: 700;
    transition: color 0.3s ease;
}

.disclaimer-box p a:hover {
    color: var(--dyson-light-purple);
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media screen and (max-width: 639px) {
    .wrapper {
        padding: 15px;
        max-width: 100%;
    }

    h1 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.8rem;
    }

    h4 {
        font-size: 2rem;
    }

    .started button,
    .started a {
        font-size: 1.1rem;
        padding: 18px 30px;
        letter-spacing: 1.5px;
    }

    .started button:hover,
    .started a:hover {
        letter-spacing: 2px;
    }

    .intro-txt,
    .end-text,
    p {
        font-size: 1rem;
    }

    .question-number {
        font-size: 1.3rem;
    }

    .question p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .question button {
        font-size: 1rem;
        padding: 14px 16px;
    }

    .others-say {
        font-size: 1.5rem;
    }

    .footer-links a {
        display: block;
        margin: 10px 0;
    }

    .add-comment {
        flex-direction: column;
    }

    .avatar-placeholder {
        align-self: flex-start;
    }

    .post-button {
        align-self: flex-end;
        width: fit-content;
    }

    .comment {
        flex-direction: column;
    }

    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .step4 .intro-img {
        margin: 0 auto 20px;
        max-width: 100%;
        width: 100%;
    }

    .step4 .end-list {
        padding: 15px;
    }

    .step4 .end-list li {
        padding: 15px 15px 15px 50px;
        font-size: 0.9rem;
    }

    .step4 .end-list li::before {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        left: 10px;
    }

    .step4 .started {
        padding: 15px 0;
    }

    .step4 .started button,
    .step4 .started a {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
}