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

html {
    width: 100%;
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background-color: #ffffff;
    color: #1f2937;
    line-height: 1.5;
}

/* Main Container */
.main-container {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
}

/* Background Coffee Cups Animation */
.background-cups {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.coffee-cup {
    position: absolute;
    font-size: 3.5rem;
    opacity: 0.15;
}

.cup-1 {
    top: 5rem;
    left: 1rem;
    font-size: 3.5rem;
    opacity: 0.15;
    animation: float-animation-1 6s ease-in-out infinite;
}

.cup-2 {
    top: 10rem;
    right: 1.5rem;
    font-size: 2.5rem;
    opacity: 0.15;
    animation: float-animation-2 7s ease-in-out infinite 1s;
}

.cup-3 {
    top: 33%;
    left: 25%;
    font-size: 4rem;
    opacity: 0.1;
    animation: float-animation-3 8s ease-in-out infinite 2s;
}

.cup-4 {
    top: 50%;
    right: 25%;
    font-size: 3.5rem;
    opacity: 0.12;
    animation: float-animation-1 6s ease-in-out infinite;
}

.cup-5 {
    bottom: 33%;
    left: 1.5rem;
    font-size: 2.5rem;
    opacity: 0.15;
    animation: float-animation-2 7s ease-in-out infinite 1s;
}

.cup-6 {
    bottom: 25%;
    right: 2rem;
    font-size: 3.5rem;
    opacity: 0.1;
    animation: float-animation-3 8s ease-in-out infinite 2s;
}

/* Header */
.header {
    position: relative;
    z-index: 10;
    width: 100%;
    background-color: #006241;
    color: white;
    text-align: center;
    padding: 0.5rem 1rem;
}

.header-text {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.25;
}

.header-time {
    margin-bottom: 0.25rem;
}

#countdown {
    font-weight: bold;
}

/* Content Container */
.content-container {
    position: relative;
    z-index: 20;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo */
.logo-container {
    margin-bottom: 0.75rem;
    width: 10rem;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Gift Card */
.gift-card-container {
    margin-bottom: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.gift-card {
    width: 12rem;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Unlock Title */
.unlock-title {
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
    color: #006241;
}

/* Instructions Text */
.instructions-text {
    text-align: center;
    font-size: 0.75rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

/* Steps Box */
.steps-box {
    width: 100%;
    border: 2px solid #006241;
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-item {
    display: flex;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #1f2937;
}

.step-number {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background-color: #006241;
    color: white;
    font-weight: bold;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA Button */
.cta-button {
    width: 100%;
    display: block;
    text-align: center;
    background-color: #006241;
    color: white;
    font-weight: bold;
    padding: 0.5rem 0;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    transition: background-color 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

/* Footer Text */
.footer-text {
    color: #6b7280;
    font-size: 0.75rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    background-color: #006241;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #004d31;
}

.icon-svg {
    width: 0.875rem;
    height: 0.875rem;
    fill: currentColor;
}

/* Copyright */
.copyright {
    color: #9ca3af;
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.5;
}

/* Animations */
@keyframes float-animation-1 {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-25px);
    }
}

@keyframes float-animation-2 {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
}

@keyframes float-animation-3 {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

/* Responsive Design */
@media (max-width: 640px) {
    .content-container {
        padding: 0.5rem 0.75rem;
    }

    .logo-container {
        margin-bottom: 0.5rem;
        width: 8rem;
        height: 8rem;
    }

    .gift-card {
        width: 10rem;
    }

    .unlock-title {
        font-size: 0.9rem;
    }

    .instructions-text {
        font-size: 0.7rem;
    }

    .cta-button {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }
}
