:root {
    --pink-bg: #FFF5F7;
    --white: #FFFFFF;
    --text: #1A1A1A;
    --accent: #FF4D85;
    --shadow: rgba(0, 0, 0, 0.06);
    --gray: #666666;
}

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

body {
    background: var(--pink-bg);
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.5;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 32px 20px;
}

.header {
    text-align: center;
    margin-bottom: 32px;
}

.skims-logo {
    height: 32px;
    margin-bottom: 24px;
}

.welcome-message {
    font-family: 'Pacifico', cursive;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--text);
    letter-spacing: 0;
}

.sub-message {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

.card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 24px var(--shadow);
}

h2 {
    font-family: 'Pacifico', cursive;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.steps {
    list-style: none;
    padding: 0;
}

.steps li {
    margin: 8px 0;
    padding-left: 24px; /* Adjusted padding for better alignment */
    position: relative;
    font-size: 15px;
    color: var(--text);
    line-height: 1.5; /* Adjusted line height for better spacing */
}


/* Mobile styles */
@media (max-width: 768px) {
    .steps li {
        padding-left: 24px; /* Adjust padding for smaller screens */
    }
}
.notice {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 14px;
    color: var(--gray);
    text-align: center;
}

.region-notice {
    text-align: center;
    background: var(--white);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    box-shadow: 0 4px 24px var(--shadow);
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

.region-notice p:first-child {
    color: var(--text);
    font-weight: 500;
    margin-bottom: 4px;
}

.claims-counter {
    background: var(--white);
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 14px;
    margin-bottom: 16px;
    color: var(--gray);
    display: flex;
    align-items: center;
}

.counter-number {
    color: var(--accent);
    font-weight: 600;
    font-size: 16px;
    margin-right: 8px;
    font-family: 'Pacifico', cursive;
}

/* Mobile styles */
@media (max-width: 768px) {
    .claims-counter {
        flex-direction: column;
        text-align: center;
    }
}
.action-section {
    display: flex;
    flex-direction: column;
    gap: 8px;  /* Reduced from 12px */
    margin-bottom: 32px;
}

.claim-button {
    display: block;
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    color: #fff;
    text-align: center;
    padding: 16px;  /* Reduced from 18px */
    border-radius: 12px;
    margin: 0;      /* Removed margin completely since we're using gap */
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Remove any last-child margin */
.claim-button:last-child {
    margin-bottom: 0;
}
.claim-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255,255,255,0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: sparkle 2s linear infinite;
}

@keyframes sparkle {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.claim-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,105,180,0.3);
    background: linear-gradient(45deg, #ff1493, #ff69b4);
}

.claim-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(255,105,180,0.2);
}

.claim-button:last-child {
    margin-bottom: 0;
}

.button-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.claim-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 77, 133, 0.3);
}

.testimonials {
    margin-top: 40px;
}

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

.testimonial-item {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px var(--shadow);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info {
    flex: 1;
}

.name {
    font-family: 'Pacifico', cursive;
    font-size: 15px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 2px;
}

.location {
    font-size: 13px;
    color: var(--gray);
}

.quote {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text);
    font-style: italic;
}

.footer {
    text-align: center;
    font-size: 13px;
    color: var(--gray);
    margin-top: 40px;
    line-height: 1.6;
}

.notification {
    font-family: 'Nunito', sans-serif;
    position: fixed;
    bottom: -100px;
    left: 20px;
    background: var(--white);
    color: var(--text);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 300px;
    max-width: fit-content;
    border: 1px solid rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(4px);
    white-space: nowrap;
    display: flex;
    align-items: center;
}

/* Mobile styles */
@media (max-width: 768px) {
    .notification {
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        min-width: auto;
        max-width: none;
        text-align: center;
        white-space: normal;
    }
}

.notification.show {
    bottom: 20px;
    opacity: 1;
}

.offer-button {
    display: block;
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 24px var(--shadow);
    transition: all 0.2s ease;
}

.offer-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.offer-amount {
    color: var(--accent);
    font-family: 'Pacifico', cursive;
    font-size: 24px;
    margin-bottom: 4px;
}

.offer-description {
    color: var(--gray);
    font-size: 14px;
}

@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .offer-card {
        padding: 16px;
    }
}

.steps {
    text-align: left;
    margin: 0;
}

.notice {
    text-align: center;
    padding: 0 10px;
}

.testimonial-item {
    text-align: left;
    padding: 16px;
}

.welcome-message {
    padding: 0 10px;
}

.sub-message {
    padding: 0 15px;
}