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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #000000;
    min-height: 100vh;
}

.container {
    max-width: 400px;
    margin: 0 auto;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo */
.logo-container {
    margin-bottom: 24px;
}

.logo {
    background-color: #FFD000;
    padding: 8px 16px;
    border-radius: 4px;
}

.logo-inner {
    background-color: #000000;
    padding: 8px 12px;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.logo-jb {
    color: #FFD000;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo-hifi {
    color: #FFD000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    border-top: 1px solid #FFD000;
    padding-top: 2px;
    margin-top: 2px;
}

/* Heading */
.heading {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

/* Description */
.description {
    text-align: center;
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 32px;
    padding: 0 8px;
}

.description strong {
    color: #000000;
}

/* Steps */
.steps {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.step-card {
    background-color: #FFF9E6;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-number {
    background-color: #FFD000;
    color: #000000;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.step-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.4;
}

/* CTA Button */
.cta-button {
    display: block;
    width: 100%;
    background-color: #FFD000;
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-bottom: 24px;
}

.cta-button:hover {
    background-color: #E6BB00;
}

/* Disclaimer */
.disclaimer {
    text-align: center;
    margin-bottom: 24px;
}

.disclaimer p {
    font-size: 12px;
    color: #000000;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid #eeeeee;
    width: 100%;
}

.footer p {
    font-size: 12px;
    color: #999999;
}

/* Responsive */
@media (min-width: 640px) {
    .container {
        padding: 32px 24px;
    }
    
    .heading {
        font-size: 28px;
    }
    
    .description {
        font-size: 15px;
    }
}
