:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #ff0055; /* Energetic Pink/Red */
    --text-color: #333333;
    --bg-color: #f5f5f5;
    --card-bg: #ffffff;
    --font-main: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 480px; /* Mobile focused */
    background-color: var(--card-bg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem;
    text-align: center;
}

.logo {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

main {
    padding: 2rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
}

h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.card-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.gift-card-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.gift-card-img:hover {
    transform: scale(1.02);
}

.content {
    width: 100%;
    text-align: center;
}

.status {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    background: #f0f0f0;
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
}

.status .active {
    color: #00c853;
    font-weight: 600;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.step {
    display: flex;
    align-items: center;
    background: #fafafa;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #eee;
}

.step-number {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-text {
    font-weight: 600;
    font-size: 1rem;
}

.cta-button {
    display: block;
    width: 100%;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    text-decoration: none;
    padding: 1.2rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 1rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 85, 0.4);
}

.cta-button:active {
    transform: translateY(1px);
}

.disclaimer {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 2rem;
}

.testimonials {
    width: 100%;
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

.testimonials h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-item {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.t-name {
    font-weight: 700;
    display: block;
    margin-bottom: 0.2rem;
}

footer {
    text-align: center;
    padding: 1.5rem;
    background-color: #f9f9f9;
    font-size: 0.8rem;
    color: #888;
    margin-top: auto;
}

@media (max-width: 380px) {
    h1 {
        font-size: 1.5rem;
    }
    .cta-button {
        font-size: 1rem;
        padding: 1rem;
    }
}
