@import url('https://fonts.googleapis.com/css2?family=Poppins:300,400,500,600,700,800,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {

    min-height: 100vh;
    overflow-x: hidden;
    background: linear-gradient(#2b1055, #7597de);
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
}

header .logo {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

header ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

header ul li {
    list-style: none;
    margin-left: 20px;
}

header ul li a {
    text-decoration: none;
    padding: 6px 15px;
    color: #fff;
    border-radius: 20px;
}

header ul li a:hover,
header ul li a.active {
    background: #fff;
    color: #2b1055;
}

section {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #1c0522, transparent);
    z-index: 1000;
}

section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

section img#moon {
    mix-blend-mode: screen;

}

section img#mountains_front {
    z-index: 10;

}

#text {
    position: absolute;
    right: -450px;
    color: #fff;
    white-space: nowrap;
    font-size: 6.5vw;
    z-index: 9;
}

#btn {
    text-decoration: none;
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff7597, #ff3c6e);
    color: #fff;
    font-size: 1.3em;
    font-weight: 700;
    z-index: 9;
    transform: translateY(100px);
    box-shadow: 0 6px 20px rgba(255, 117, 151, 0.45);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

#btn:hover {
    transform: translateY(100px) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 117, 151, 0.65);
    background: linear-gradient(135deg, #ff8fa8, #ff5778);
}

.sec {
    position: relative;
    padding: 100px;
    background: #1c0522;
}

.sec h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.sec p {
    padding-top: 30px;
    font-size: 1.43rem;
    color: #fff;
}

h2 {
    padding-top: 25px;
    font-size: 1.8rem;
    color: #fff;
}

.gift-sec {
    position: relative;
    min-height: 100vh;
    padding: 100px 30px;
    background: #1c0522;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.gift-sec h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 30px;
    padding-top: 0;
}

.gift-box-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    /* Adjust as needed to control the vertical position */
}

.gift-icon-link {
    display: inline-block;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 2px dashed #a7baf0;
    color: #a7baf0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px 0 rgba(167, 186, 240, 0.15);
    line-height: 0;
}

.gift-icon-link:hover {
    transform: scale(1.15) rotate(8deg);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: #fff;
    border-style: solid;
    box-shadow: 0 12px 40px 0 rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

/* Image Slider Section */
.slider-sec {
    position: relative;
    min-height: 100vh;
    padding: 100px 30px;
    background: #1c0522;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.slider-sec h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 40px;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    background: #0d0210;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    box-sizing: border-box;
}

/* Slider buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
    z-index: 10;
    line-height: 1;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn-slider {
    left: 20px;
}

.next-btn-slider {
    right: 20px;
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.dot.active,
.dot:hover {
    background: #fff;
    transform: scale(1.25);
}

/* Disclaimer Section */
.disclaimer-sec {
    position: relative;
    min-height: 100vh;
    padding: 100px 30px;
    background: #130317;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.disclaimer-tag {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ff7597;
    font-weight: 700;
    border: 1px solid rgba(255, 117, 151, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(255, 117, 151, 0.05);
}

.disclaimer-list {
    color: white;
}

.disclaimer-sec p {
    color: #dfd5e6;
    font-size: 1.15rem;
    line-height: 1.8;
}

.next-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 40px;
    background: linear-gradient(135deg, #7597de, #2b1055);
    color: #fff;
    font-size: 1.1em;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(117, 151, 222, 0.2);
}

.next-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(117, 151, 222, 0.4);
    background: linear-gradient(135deg, #8ba8e6, #3c1975);
}

.next-btn svg {
    transition: transform 0.3s ease;
}

.next-btn:hover svg {
    transform: translateY(3px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        padding: 20px 30px;
    }

    header .logo {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    header ul li {
        margin-left: 15px;
    }

    header ul li a {
        padding: 5px 12px;
        font-size: 0.9rem;
    }

    section {
        padding: 50px 20px;
    }

    #text {
        font-size: 8vw;
        /* Scale nicely on mobile */
        right: -200px;
        /* Start closer to screen edge on mobile */
    }

    #btn {
        padding: 10px 28px;
        font-size: 1.1rem;
        transform: translateY(80px);
    }

    .sec {
        padding: 50px 20px;
    }

    .sec h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .sec p {
        font-size: 1.1rem;
        padding-top: 15px;
        line-height: 1.6;
    }

    .slider-sec {
        padding: 50px 20px;
    }

    .slider-sec h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .slider-container {
        height: 320px;
        border-radius: 12px;
    }

    .slide-caption {
        font-size: 1rem;
        padding: 12px;
    }

    .slider-btn {
        font-size: 1.5rem;
        padding: 10px 15px;
    }

    .slider-dots {
        bottom: 60px;
    }

    .gift-sec {
        padding: 50px 20px;
    }

    .gift-sec h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .disclaimer-sec {
        padding: 50px 20px;
    }

    .disclaimer-sec p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .next-btn {
        padding: 10px 24px;
        font-size: 1rem;
    }

    .gift-box-container {
        margin-top: 15px;
    }

    .gift-icon-link {
        padding: 20px;
    }

    .gift-icon {
        width: 48px;
        height: 48px;
    }

    .gift-sec {
        padding: 50px 20px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 15px 20px;
    }

    header .logo {
        font-size: 1.2rem;
    }

    header ul li {
        margin-left: 10px;
    }

    header ul li a {
        padding: 4px 10px;
        font-size: 0.8rem;
    }

    #text {
        font-size: 10vw;
        right: -150px;
    }

    .disclaimer-sec {
        padding: 40px 15px;
    }

    .disclaimer-sec p {
        font-size: 0.95rem;
    }

    .sec h1 {
        font-size: 1.75rem;
    }

    .slider-sec {
        padding: 40px 15px;
    }

    .slider-sec h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .slider-container {
        height: 240px;
    }

    .slide-caption {
        font-size: 0.85rem;
        padding: 10px;
    }

    .slider-btn {
        font-size: 1.2rem;
        padding: 8px 12px;
    }

    .slider-dots {
        bottom: 50px;
    }

    .gift-sec {
        padding: 40px 15px;
    }

    .gift-sec h2 {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }

    .gift-icon-link {
        padding: 15px;
    }

    .gift-icon {
        width: 40px;
        height: 40px;
    }

    .gift-sec {
        padding: 40px 15px;
    }
}

/* Lock Screen Overlay */
#lock-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 999999;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    color: #fff;
}

#lock-screen.hidden {
    display: none;
}

.lock-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.lock-caption {
    font-size: 1.5rem;
    background: linear-gradient(90deg, #a7baf0, #ff7597, #a7baf0);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s infinite linear;
    margin-bottom: 10px;
}

.lock-content p {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.8;
}

.lock-sub {
    font-size: 1rem;
    color: #888;
    margin-top: 10px;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

@media (max-width: 768px) {
    .lock-content h1 {
        font-size: 1.8rem;
    }

    .lock-caption {
        font-size: 1.1rem;
    }

    .lock-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .lock-content h1 {
        font-size: 1.4rem;
    }

    .lock-caption {
        font-size: 1rem;
    }

    .lock-content p {
        font-size: 0.9rem;
    }
}

/* Popup Overlay */
#popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 100001;
    justify-content: center;
    align-items: center;
}

#popup-overlay.active {
    display: flex;
}

#popup {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: #1c0522;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    animation: popupIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#popup-image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 12px;
    object-fit: contain;
}

#popup-caption {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.6;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255, 117, 151, 0.12);
    border: 1px solid rgba(255, 117, 151, 0.25);
    background-image: linear-gradient(135deg, rgba(167, 186, 240, 0.08), rgba(255, 117, 151, 0.08));
    letter-spacing: 0.3px;
}

#close-popup {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ff7597;
    color: #fff;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s, background 0.2s;
    z-index: 10;
}

#close-popup:hover {
    transform: scale(1.15);
    background: #ff4770;
}

@keyframes popupIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Confetti */
#confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100002;
    overflow: hidden;
}

.confetti {
    position: absolute;
    top: -10px;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    animation: confettiFall linear forwards;
}

@keyframes confettiFall {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg) scale(0.5);
        opacity: 0;
    }
}

/* Bonus Popup Overlay */
#bonus-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 100001;
    justify-content: center;
    align-items: center;
}

#bonus-overlay.active {
    display: flex;
}

#bonus-popup {
    position: relative;
    max-width: 500px;
    width: 100%;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: popupIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bonus-video-container {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 9/16;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonus-video-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

#close-bonus {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ff7597;
    color: #fff;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s, background 0.2s;
    z-index: 10;
}

#close-bonus:hover {
    transform: scale(1.15);
    background: #ff4770;
}