body {
    padding: 20px;
}

.logo-container {
    margin-bottom: 40px;
}

.logo {
    animation: logo-appear 1.5s ease-out forwards, logo-float 4s ease-in-out 1.5s infinite;
    opacity: 0;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #eb681e, transparent);
    margin: 0 auto 30px;
    animation: divider-expand 1s ease-out 0.5s forwards;
    opacity: 0;
}

.title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 12px;
    text-transform: uppercase;
    margin-bottom: 15px;
    animation: text-reveal 1s ease-out 0.8s forwards;
    opacity: 0;
}

.subtitle {
    color: #eb681e;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 25px;
    animation: subtitle-glow 1s ease-out 1.2s forwards;
    opacity: 0;
    text-shadow: 0 0 20px rgba(235, 104, 30, 0.3);
}

.description {
    color: #888;
    font-size: 1rem;
    max-width: 450px;
    line-height: 1.7;
    margin: 0 auto 40px;
    animation: fade-in 1s ease-out 1.5s forwards;
    opacity: 0;
}

.hourglass-container {
    margin: 10px auto 40px;
    animation: fade-in 1s ease-out 1.8s forwards;
    opacity: 0;
}

.hourglass {
    position: relative;
    width: 90px;
    height: 140px;
    margin: 0 auto;
}

.hg-frame {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hg-top-bar, .hg-bottom-bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 6px;
    background: #eb681e;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(235, 104, 30, 0.5);
}

.hg-top-bar { top: 0; }
.hg-bottom-bar { bottom: 0; }

.hg-left-top, .hg-right-top, .hg-left-bottom, .hg-right-bottom {
    position: absolute;
    width: 4px;
    height: 40px;
    background: #eb681e;
    box-shadow: 0 0 8px rgba(235, 104, 30, 0.4);
}

.hg-left-top {
    top: 3px;
    left: 8px;
    transform-origin: top left;
    transform: rotate(25deg);
}

.hg-right-top {
    top: 3px;
    right: 8px;
    transform-origin: top right;
    transform: rotate(-25deg);
}

.hg-left-bottom {
    bottom: 3px;
    left: 8px;
    transform-origin: bottom left;
    transform: rotate(-25deg);
}

.hg-right-bottom {
    bottom: 3px;
    right: 8px;
    transform-origin: bottom right;
    transform: rotate(25deg);
}

.hg-glass {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 128px;
}

.hg-top-half, .hg-bottom-half {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

.hg-top-half {
    top: 0;
    width: 66px;
    height: 62px;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    background: rgba(235, 104, 30, 0.08);
    border: 1px solid rgba(235, 104, 30, 0.15);
}

.hg-bottom-half {
    bottom: 0;
    width: 66px;
    height: 62px;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    background: rgba(235, 104, 30, 0.08);
    border: 1px solid rgba(235, 104, 30, 0.15);
}

.hg-sand-top {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 58px;
    height: 50px;
    background: #eb681e;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    animation: sand-deplete 4s ease-in-out infinite;
    transform-origin: bottom center;
}

.hg-sand-bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 58px;
    height: 0;
    background: #eb681e;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    animation: sand-fill 4s ease-in-out infinite;
}

.hg-stream {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 16px;
    background: linear-gradient(to bottom, #eb681e, rgba(235, 104, 30, 0.3));
    animation: stream-pour 4s ease-in-out infinite;
    border-radius: 0 0 2px 2px;
}

.hg-drip {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #eb681e;
    border-radius: 50%;
    animation: drip-fall 4s ease-in infinite;
}

.hg-pile {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    background: transparent;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 6px solid #eb681e;
    animation: pile-grow 4s ease-in-out infinite;
    opacity: 0;
}

.hg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(235, 104, 30, 0.15) 0%, transparent 70%);
    animation: glow-pulse 2s ease-in-out infinite;
    pointer-events: none;
}

.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.notify-btn {
    animation: fade-in 1s ease-out 2s forwards;
    opacity: 0;
}

.product-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px auto 40px;
    max-width: 700px;
    animation: fade-in 1s ease-out 1.5s forwards;
    opacity: 0;
}

.product-card {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    padding: 30px 24px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(235, 104, 30, 0.2);
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #eb681e, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover {
    border-color: rgba(235, 104, 30, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(235, 104, 30, 0.15);
}

.product-card:hover::before {
    opacity: 1;
}

.product-icon {
    margin-bottom: 20px;
    animation: glow-pulse 3s ease-in-out infinite;
}

.product-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.product-desc {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-cta {
    color: #eb681e;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-card:hover .product-cta {
    letter-spacing: 4px;
}

@media (max-width: 600px) {
    .title {
        font-size: 1.2rem;
        letter-spacing: 8px;
    }

    .subtitle {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .hourglass {
        width: 70px;
        height: 110px;
    }

    .hg-top-half, .hg-bottom-half {
        width: 52px;
        height: 48px;
    }

    .hg-sand-top {
        width: 44px;
        height: 38px;
    }

    .hg-sand-bottom {
        width: 44px;
    }

    .product-cards {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        min-width: 100%;
    }
}