:root {
    --primary: #09653a;
    --secondary: #11a25e;
    --accent: #fcd34d;
    --bg-start: #022c22;
    --bg-end: #064e3b;
    --text-white: #ffffff;
    --glass: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-start) 0%, var(--bg-end) 100%);
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

/* Ramadan Decorations */
.ramadan-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.lantern-cord {
    position: absolute;
    top: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.3);
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: swing 4s infinite ease-in-out;
    transform-origin: top center;
}

.lantern-cord i {
    position: absolute;
    bottom: -30px;
    font-size: 2.5rem;
    color: var(--accent);
    filter: drop-shadow(0 0 15px var(--accent));
}

.lantern-1 {
    left: 15%;
    animation-delay: 0s;
}

.lantern-2 {
    right: 15%;
    animation-delay: -2s;
}

@keyframes swing {

    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

.crescent-moon {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.2;
    filter: blur(2px);
    z-index: -1;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.5;
    animation: twinkle var(--duration) infinite ease-in-out;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Content Layout */
.content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    animation: fadeIn 1.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Section */
.logo-section {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-white-bg {
    background: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

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

.brand-name {
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.rocket-wrapper {
    display: inline-block;
    animation: float 4s infinite ease-in-out;
    margin-bottom: 2rem;
}

.rocket-icon {
    font-size: 5rem;
    color: var(--text-white);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1;
}

.title span {
    color: var(--accent);
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.4);
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Countdown */
.countdown {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.time-block {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 20px;
    min-width: 110px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.time-block:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.time-block span {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.time-block label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* Action Section */
.action-section p {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto 3rem;
}

.subscribe-form input {
    background: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    flex: 1;
    font-size: 1rem;
    outline: none;
    color: #333;
}

.subscribe-form button {
    background: var(--accent);
    color: #4a3400;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
}

.subscribe-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(251, 191, 36, 0.4);
}

/* Action Button */
.portal-action {
    margin-top: 1rem;
}

.portal-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent);
    color: #4a3400;
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(252, 211, 77, 0.3);
}

.portal-btn i {
    font-size: 1.5rem;
}

.portal-btn:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 35px rgba(252, 211, 77, 0.5);
    background: #fff;
    color: var(--primary);
}

/* Footer */
.footer {
    position: absolute;
    bottom: 2rem;
    font-size: 0.8rem;
    opacity: 0.6;
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .title {
        font-size: 2.5rem;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 10px;
    }

    .time-block {
        min-width: 80px;
        padding: 1rem;
    }

    .time-block span {
        font-size: 1.8rem;
    }

    .subscribe-form {
        flex-direction: column;
        border-radius: 20px;
    }

    .subscribe-form input,
    .subscribe-form button {
        border-radius: 20px;
    }
}