:root {
    --primary: #E74C3C;
    --secondary: #F39C12;
    --text: #333;
    --bg: #fff;
    --shadow: rgba(0, 0, 0, 0.06);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', sans-serif;
}

.start-container {
    max-width: 620px;
    width: 100%;
    background: white;
    box-shadow: 0 8px 24px var(--shadow);
    border-radius: 16px;
    padding: 40px 30px;
}

.logo {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto 30px;
}

.title {
    text-align: start;
    font-size: 1.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin: 30px 0 20px 0;
}

.subtitle {
    text-align: start;
    font-size: 1rem;
    color: #444;
    margin: 20px 0;
    line-height: 1.5;
}

.bullet-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 40px 0;
}

.bullet-list li {
    background: #fff7f5;
    border-left: 5px solid var(--primary);
    padding: 12px 16px;
    border-radius: 8px;
    color: #333;
    font-size: 0.97rem;
    list-style: none;
    box-shadow: 0 2px 6px var(--shadow);
}

.final-text {
    margin-top: 25px;
    margin-bottom: 30px;
    color: #555;
    font-size: 0.95rem;
}

.center-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.start-button {
    width: 70%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s ease;
    animation: jump 1.4s infinite;
}

.start-button:hover {
    transform: scale(1.05);
}

@keyframes jump {
    0% {
        transform: scale(0.90);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.90);
    }
}

@media (max-width: 600px) {
    .title {
        font-size: 1.4rem;
    }

    .subtitle,
    .final-text {
        font-size: 0.95rem;
    }

    .start-button {
        width: 100%;
    }
}