* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Londrina Solid', cursive;
    min-height: 100vh;
    overflow-x: hidden;
    background-color: #A030FA;
}

.container {
    position: relative;
    overflow: hidden;
}


/* Desktop Layout Styles */
.desktop-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
}

.content-left {
    flex: 1;
    text-align: center;
    max-width: 600px;
    padding: 0 2rem;
}

.desktop-image {
    display: none;
    position: absolute;
    bottom: -55px;
    /* Align with waves */
    right: 15%;
    width: 45%;
    z-index: 2;
}

.desktop-image img {
    width: 200%;
    height: 700px;
    display: block;
}

/* Center logo on all screens */
.logo {
    text-align: center;
    margin-bottom: 2rem;
}

/* Wrapper to ensure the background stays contained within .top-content */
.top-content-wrapper {
    position: relative;
    /* Ensure it covers the full screen */
}

.radial-bg {
    position: absolute;
    top: 15%;
    left: 50%;
    width: 400vw;
    /* Increase width to ensure rays go beyond screen */
    height: 400vh;
    /* Increase height to ensure full extension */
    background-color: rgba(147, 42, 232);

    /* Adjust the mask so rays extend fully */
    -webkit-mask: repeating-conic-gradient(from 0deg at 50% 50%,
            currentcolor 0deg 5deg,
            transparent 5deg 15deg);
    mask: repeating-conic-gradient(from 0deg at 50% 50%,
            currentcolor 0deg 5deg,
            transparent 5deg 15deg);

    /* Center transformation to keep rotation symmetrical */
    transform: translate(-50%, -50%) rotate(0deg);
    transform-origin: center;

    /* Continuous smooth rotation */
    animation: rotateRadialBg 20s linear infinite;
}

/* Ensure content stays above the background */
.top-content {
    position: relative;
    z-index: 1;
    text-align: center;
    background: transparent;
    padding: 2rem 1rem;
}

@keyframes rotateRadialBg {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


/* .logo {
    margin-bottom: 2rem;
} */

.logo-img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transform: rotate(-5deg);
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 9999px;
    font-family: 'Londrina Solid', cursive;
    font-weight: 900;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s;
    transform: rotate(-3deg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn:hover {
    transform: rotate(-3deg) scale(1.05);
}

.btn-orange {
    background-color: #FD5F22;
    color: white;
    padding: 0.4rem 1.65rem;
    border: 2px solid #FFDE17;
    transform: rotate(0deg);
}

.btn-green {
    background-color: #22c55e;
    color: white;
    padding: 0.4rem 1.65rem;
    border: 2px solid #FFDE17;
}

.btn-pink {
    background-color: #E91D83;
    color: white;
    padding: 0.4rem 1.65rem;
    border: 2px solid #FFDE17;
    transform: rotate(5deg);
}

.btn-yellow {
    background-color: #FFDE17;
    color: #A030FA;
    padding: 0.75rem 2.5rem;
    font-size: 1.4rem;
    transform: rotate(-5deg);
    border: 3px solid #3E1F53;
    box-shadow:
        8px 4px 0 #3E1F53,
        8px 8px 12px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-yellow.shine::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 25%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    20%,
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.btn-yellow:hover {
    transform: rotate(-5deg);
    box-shadow:
        8px 2px 0 #3E1F53,
        8px 6px 8px rgba(0, 0, 0, 0.4);
}

.btn-large {
    font-size: 1.4rem;
    padding: 0.75rem 2.5rem;
    margin: 2.5rem 0;
    margin-top: 10px;
    transform: rotate(-5deg);
}

.main-heading {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(-3deg);
}

.text-white {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.text-yellow {
    color: #FFDE17;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 120%;
}

.booking-text {
    color: white;
    font-size: 1.3rem;
    opacity: 0.9;
}

.booking-partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.partner-logo {
    height: 30px;
    width: auto;
}

.instagram-section {
    justify-content: center;
    align-items: center;
    display: flex;
}


/* Instagram Button - Styled Like Yellow Button */
.btn-instagram {
    background-color: #7A22D8;
    /* Dark Purple Background */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    border: 3px solid #3E1F53;
    box-shadow:
        8px 4px 0 #3E1F53,
        8px 8px 12px rgba(0, 0, 0, 0.4);
    position: relative;
    text-decoration: none;
    border-radius: 50px;
    transform: rotate(-2deg);
    transition: transform 0.2s, box-shadow 0.2s;
    width: fit-content;
    padding: 0.75rem 3.5rem;
    padding-right: 1rem;
    /* Adjusted for less spacing */

}

/* Hover Effect */
.btn-instagram:hover {
    transform: rotate(-5deg) scale(1.05);
    box-shadow:
        8px 2px 0 #3E1F53,
        8px 6px 8px rgba(0, 0, 0, 0.4);
}

/* Instagram Logo - Overlapping the Button */
.instagram-logo-wrapper {
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
}

/* Instagram Icon */
.instagram-icon {
    width: 50px;
    height: auto;
    transform: rotate(-10deg);
    animation: float 2s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float {

    0%,
    100% {
        transform: rotate(-10deg) translateY(-2px);
    }

    50% {
        transform: rotate(-10deg) translateY(3px);
    }
}

/* Instagram Button Text */
.instagram-text {
    font-size: 1.2rem;
    font-weight: bold;
    white-space: nowrap;
}




.yellow-section {
    background: #FFDE17;
    position: relative;
    padding: 2rem 1rem;
    margin-top: 4rem;
    padding-bottom: 10px;
    min-height: 500px;
    z-index: 2;
    /* Ensure minimum height for content */

}

.wave-border {
    position: absolute;
    left: 0;
    width: 100%;
    height: 40px;
    background-repeat: repeat-x;
}

.wave-border.top {
    top: -39px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40 V20 Q30 0 60 20 T120 20 V40z' fill='%23FFDE17'/%3E%3C/svg%3E");
}

.wave-border.bottom {
    bottom: -40px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0 V20 Q30 40 60 20 T120 20 V0z' fill='%23FFDE17'/%3E%3C/svg%3E");
}




.yellow-section .content {
    position: relative;
}

.yellow-section .title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.title h2 {
    color: #A030FA;
    font-size: 2.5rem;
    font-weight: 900;
    transform: rotate(-2deg);
}

.stats-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
}


.stats-grid {
    flex: 1.2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.stat {
    text-align: left;
}

.stat .number {
    color: #A030FA;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat .label {
    color: #3E1F53;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.stat.big {
    grid-column: 1 / -1;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.stat.big .number {
    font-size: 4.5rem;
    margin-bottom: 0.25rem;
}

.stat.big .label {
    font-size: 1.5rem;
}

.star-image {
    height: 30px;
}

.image-container {
    flex: 0.8;
    position: relative;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transform: rotate(3deg);
}


/* Orange section styles */
.orange-section {
    background: #FD5F22;
    position: relative;
    padding: 2rem 0;
    padding-bottom: 0;
    z-index: 2;
}

.orange-section::before {
    content: '';
    position: absolute;
    top: -39px;
    left: 0;
    width: 100%;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40 V20 Q30 0 60 20 T120 20 V40z' fill='%23FD5F22'/%3E%3C/svg%3E");
    background-repeat: repeat-x;

}

.orange-section::after {
    content: '';
    position: absolute;
    bottom: -39px;
    left: 0;
    width: 100%;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0 V20 Q30 40 60 20 T120 20 V0z' fill='%23FD5F22'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
}

.orange-section .content {
    padding: 2rem 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    text-align: center;
    position: relative;
}

.title-box {
    background: url('../images/box.png') no-repeat center;
    background-size: contain;
    padding: 1.2rem 2rem;
    margin: 0 auto;
    max-width: 600px;
    margin-bottom: 1rem;
    position: relative;
}

.title-box h2 {
    color: #FD5F22;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.2;
}

.event-description {
    margin-top: 2rem;
    color: #3E1F53;
    text-align: center;
}

.event-description h3 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 900;
}

.event-description .highlight {
    color: #FFDE17;
}

.event-description p {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
}

.crown-image {
    position: relative;
    margin: 0 0;
    margin-bottom: 0;
    height: 80px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
        /* Floating up */
    }

    100% {
        transform: translateY(0px);
    }
}

.crown {
    position: absolute;
    width: 100px;
    height: auto;
    animation: float 2.5s ease-in-out infinite;
}

/* Left Crown */
.crown-left {
    left: 50%;
    transform: translateX(-180px) translateY(20px) rotate(0deg);
    animation: float-left 2.5s ease-in-out infinite;
}

@keyframes float-left {
    0% {
        transform: translateX(-180px) translateY(20px) rotate(0deg);
    }

    50% {
        transform: translateX(-180px) translateY(10px) rotate(0deg);
    }

    100% {
        transform: translateX(-180px) translateY(20px) rotate(0deg);
    }
}

/* Right Crown */
.crown-right {
    right: 50%;
    transform: translateX(250px) translateY(60px) scaleX(-1) rotate(30deg);
    animation: float-right 2.5s ease-in-out infinite;
}

@keyframes float-right {
    0% {
        transform: translateX(250px) translateY(60px) scaleX(-1) rotate(30deg);
    }

    50% {
        transform: translateX(250px) translateY(50px) scaleX(-1) rotate(30deg);
    }

    100% {
        transform: translateX(250px) translateY(60px) scaleX(-1) rotate(30deg);
    }
}


.couple-image {
    margin: 0 0;
}

.couple-image img {
    width: 100%;
    height: max-height;
    border-radius: 20px;
}

.yellow-section-2 {
    background: #FFDE17;
    position: relative;
    padding: 2rem 1rem;
    margin-bottom: 1.2rem;
}

.yellow-section-2 .wave-border.top {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40 V20 Q30 0 60 20 T120 20 V40z' fill='%23FFDE17'/%3E%3C/svg%3E");
}

.yellow-section-2 .wave-border.bottom {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0 V20 Q30 40 60 20 T120 20 V0z' fill='%23FFDE17'/%3E%3C/svg%3E");
}

.yellow-section-2 .title {
    display: flex;
    margin-bottom: 4rem;
    justify-content: center;
    gap: 2rem;
}

.yellow-section-2 .title h2 {
    color: #A030FA;
    font-size: 2.5rem;
    font-weight: 900;
    transform: rotate(-2deg);
}

.yellow-section-2 .star-image {
    height: 40px;
    width: auto;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.feature-box {
    background: url('../images/white-box.png') no-repeat center;
    background-size: 100% 100%;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    filter: drop-shadow(4px 4px 0 #A030FA);
    transition: transform 0.2s;
}

.feature-box:hover {
    transform: translateY(-2px);
}

.feature-icon {
    flex: 0 0 50px;
}


@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
        /* Moves up slightly */
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        /* Slightly enlarges */
    }

    100% {
        transform: scale(1);
    }
}

.feature-icon img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

/* Bounce effect on hover */
.feature-box:hover .feature-icon img {
    animation: bounce 0.6s ease-in-out;
}

/* Add pulse effect continuously */
.feature-icon img.pulse {
    animation: pulse 1.5s infinite ease-in-out;
}


.feature-text {
    flex: 1;
    color: #3E1F53;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: left;
    line-height: 1.3;
}

/* purple-section */

.purple-section {
    background: #A030FA;
    position: relative;
    padding: 2rem 0;
    padding-bottom: 0;
    margin-top: -1px;
    display: flex;
    flex-direction: column;
}

.purple-section .wave-border.top {
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40 V20 Q30 0 60 20 T120 20 V40z' fill='%23A030FA'/%3E%3C/svg%3E");
}

.purple-section .title {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.purple-section .title h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0;
    text-align: center;
}

.prizes-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
}

.prize-item {
    display: grid;
    /*grid-template-columns: 150px 1fr; */
    justify-content: space-evenly;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.prize-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(4px 4px 0 #3E1F53);
    justify-self: center;
    animation: bounce 1.5s ease-in-out infinite;
}


.prize-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    justify-self: center;
}

.prize-rank {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1;
}

.prize-value {
    color: #FFDE17;
    font-size: 2rem;
    font-weight: 900;
    z-index: 1;
}

.purple-section .btn-yellow {
    margin: 2rem auto;
    margin-bottom: 3rem;
    display: block;
}


.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    margin-top: auto;
    margin-bottom: 0;
    background-color: #3E1F53;
    z-index: 0;
}

.footer-logo {
    width: 80px;
    height: 100%;
}

.developed-by {
    color: white;
    font-size: 0.9rem;
    font-weight: 400;
}


.wave-divider {
    height: 20px;
    width: 100%;
    margin: 1.5rem auto;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 Q30 -5 60 10 T120 10 Q90 25 60 10 T0 10' stroke='rgba(62,31,83,0.3)' fill='none' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-position: center;
    background-size: 120px 20px;
}



@media (max-width: 768px) {


    .instagram-icon {
        width: 50px;
    }

    .instagram-logo-wrapper {
        left: 0px;
    }


    .stats-container {
        flex-direction: column;
        gap: 0rem;
        padding: 0 1rem;
    }

    .image-container {
        width: 100%;
        margin-top: -80px;
    }

    .stats-grid {
        text-align: center;
    }

    .stat .number {
        font-size: 5rem;
    }

    .stat.big {
        margin-top: 1.5rem;
    }

    .stat.big .number {
        font-size: 5rem;
    }

    .image-container img {
        width: 100%;
        height: 100%;
        min-height: 250px;
        min-width: 400px;
        margin-left: -40px;
        transform: rotate(3deg);
    }

    /* organe section */
    .title-box {
        max-width: 360px;
    }

    .title-box h2 {
        font-size: 1.4rem;
    }

    .event-description h3 {
        font-size: 2rem;
        width: 50%;
        justify-self: center;
        margin-bottom: 2rem;
    }

    .event-description p {
        font-size: 1.3rem;
    }

    .crown {
        width: 70px;
        animation: float 2.5s ease-in-out infinite;
    }

    @keyframes float {
        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-10px);
            /* Floating up */
        }

        100% {
            transform: translateY(0px);
        }
    }


    /* Left Crown */
    .crown-left {
        left: 50%;
        transform: translateX(-100px) translateY(30px) rotate(-10deg);
        animation: float-left 2.5s ease-in-out infinite;
    }

    @keyframes float-left {
        0% {
            transform: translateX(-100px) translateY(10px) rotate(-10deg);
        }

        50% {
            transform: translateX(-100px) translateY(20px) rotate(-10deg);
        }

        100% {
            transform: translateX(-100px) translateY(10px) rotate(-10deg);
        }
    }

    /* Right Crown */
    .crown-right {
        right: 50%;
        transform: translateX(150px) translateY(40px) scaleX(-1) rotate(30deg);
        animation: float-right 2.5s ease-in-out infinite;
    }

    @keyframes float-right {
        0% {
            transform: translateX(120px) translateY(50px) scaleX(-1) rotate(30deg);
        }

        50% {
            transform: translateX(120px) translateY(40px) scaleX(-1) rotate(30deg);
        }

        100% {
            transform: translateX(120px) translateY(50px) scaleX(-1) rotate(30deg);
        }
    }


    .couple-image {
        width: 100%;
    }

    .couple-image img {

        width: 100%;
        border-radius: 0;
    }

    .orange-section::after {
        content: '';
        position: absolute;
        bottom: -40px;
        left: 0;
        width: 100%;
        height: 40px;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0 V20 Q30 40 60 20 T120 20 V0z' fill='%23FD5F22'/%3E%3C/svg%3E");
        background-repeat: repeat-x;
    }

    /* yellow section */

    .yellow-section-2 {
        padding: 3rem 1rem;
        margin-bottom: 0;
    }

    .yellow-section-2 .title h2 {
        font-size: 2.5rem;
        text-align: center;
    }

    .yellow-section-2 .star-image {
        height: 30px;
    }

    .features-list {
        gap: 1.2rem;
        padding: 0 0.5rem;
    }

    .feature-box {
        padding: 1rem 1.5rem;
        gap: 1.5rem;
    }

    .feature-icon {
        flex: 0 0 40px;
    }

    .feature-icon img {
        width: 100%;
        height: auto;
    }

    .feature-text {
        font-size: 1rem;
    }


    /* purple section */


    .prizes-container {
        display: flex;
        flex-direction: column;
        margin-bottom: 1rem;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }

    .prize-item {
        display: grid;
        justify-content: space-evenly;
        gap: 2rem;
        align-items: center;
        justify-content: center;
    }

    .prize-image {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: cover;
        filter: drop-shadow(4px 4px 0 #3E1F53);
        justify-self: center;
        animation: bounce 1.5s ease-in-out infinite;
    }

    .prize-text {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        justify-self: center;
    }

    .prize-rank {
        color: white;
        font-size: 1.5rem;
        font-weight: 700;
    }

    .prize-value {
        color: #FFDE17;
        font-size: 2rem;
        font-weight: 900;
    }

    .wave-divider {
        margin: 1.8rem auto;
    }

    .footer-logo {
        width: 60px;
    }

    .developed-by {
        font-size: 1rem;
    }

}





/* Desktop */
/* Media query for desktop */
@media (min-width: 1024px) {
    .top-content {
        padding: 0;
        min-height: 100vh;
    }

    .desktop-image {
        display: block;
        /* Show image on desktop */
    }

    .logo {
        position: absolute;
        top: 2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }

    .content-left {
        padding-top: 8rem;
        /* Give space for centered logo */
    }

    /* Ensure waves stay above the background but below the image */
    .wave-border {
        z-index: 1;
    }

    .action-buttons {
        justify-content: center;
        /* Left align buttons */
    }

    .main-heading {
        text-align: center;
        font-size: 3rem;
        /* Larger heading on desktop */
    }

    .booking-partners {
        justify-content: center;
        /* Left align partners */
    }

    .instagram-section {
        justify-content: center;
        /* Left align Instagram button */
    }

    .booking-text {
        text-align: center;
    }

    /* Adjust button sizes for desktop */
    .btn-large {
        font-size: 1.6rem;
        padding: 0.85rem 3rem;
    }


    /* yellow section */
    .yellow-section {
        background: #FFDE17;
        position: relative;
        padding: 2rem 1rem;
        margin-top: 4rem;
        padding-bottom: 10px;

    }

    .yellow-section .content {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
    }

    .stats-container {
        display: flex;
        flex-direction: row;
        padding: 0;
        position: relative;
        margin-bottom: 2rem;
    }

    .image-container {
        position: absolute;
        left: -100px;
        top: -160px;
        width: 50%;

    }

    .image-container img {
        width: 100%;
        height: auto;
        transform: rotate(3deg);
        border-radius: 20px;
    }

    .yellow-section .title {
        margin-left: 8%;
        padding-left: 50%;
        margin-bottom: 2rem;
    }

    .stats-grid {
        width: 50%;
        margin-left: auto;
        padding-left: 60%;
        padding-right: 3%;
    }

    .stat {
        flex: 1;
        text-align: left;
    }

    .stat:nth-child(1) {
        margin-left: 50px;
    }

    .stat:nth-child(2) {
        text-align: right;
    }

    .stat.big {
        margin: 0;
        text-align: center;
    }

    .stat .number {
        font-size: 4.5rem;
    }

    .stat .label {
        font-size: 1.8rem;
    }


    /* orange section */
    .orange-section .content {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding: 4rem 2rem;
        padding-top: 0;
        gap: 2rem;
    }

    .orange-section .content-left {
        flex: 1;
        max-width: 45%;
        text-align: left;
        padding-top: 5rem;
    }

    .title-box {
        margin: 0;
        margin-bottom: 2rem;
        text-align: center;
    }

    .event-description {
        text-align: center;
        margin-top: 0;
    }

    .event-description h3 {
        font-size: 2.8rem;
    }

    .event-description p {
        font-size: 1.8rem;
    }

    .orange-section .content-right {
        flex: 1;
        max-width: 55%;
        position: relative;
    }

    .crown-image {
        position: absolute;
        width: 100%;
        height: auto;
        top: 30px;
        z-index: 2;
    }

    .crown {
        width: 100px;
    }

    .crown-left {
        left: 25%;
        transform: translateY(80px) rotate(-15deg);
    }

    .crown-right {
        right: 20%;
        transform: translateY(60px) scaleX(-1) rotate(30deg);
    }

    @keyframes float-left {

        0%,
        100% {
            transform: translateY(20px) rotate(-15deg);
        }

        50% {
            transform: translateY(10px) rotate(-15deg);
        }
    }

    @keyframes float-right {

        0%,
        100% {
            transform: translateY(60px) scaleX(-1) rotate(30deg);
        }

        50% {
            transform: translateY(50px) scaleX(-1) rotate(30deg);
        }
    }

    .couple-image {
        margin-top: 60px;
        height: 430px;
    }

    .couple-image img {
        position: relative;
        width: 100%;
        height: 400px;
        top: 20%;
        object-fit: cover;
    }


    /* yellow section -2 */
    .features-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
        gap: 2rem;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        margin-bottom: 4rem;
    }

    /* Center the last two items in the second row */
    .features-list>*:nth-last-child(2) {
        grid-column: 1 / 2;
        transform: translateX(50%);
    }

    .features-list>*:last-child {
        grid-column: 2 / 3;
        transform: translateX(60%);
    }

    /* Target the last two items */

    .feature-box {
        height: 100%;
        min-height: 120px;
    }

    .feature-text {
        font-size: 1.1rem;
    }

    /* Fix wave issues for desktop */
    .yellow-section-2 {
        position: relative;
        z-index: 2;
        margin-bottom: 0;
        padding-bottom: 40px;
        /* Add padding to account for wave */
    }


    /* purple section */
    .purple-section {
        padding-top: 6rem;
        /* Add spacing at the top */
    }

    .purple-section .title {
        margin-bottom: 1rem;
        /* Increase space below title */
    }

    .prizes-container {
        flex-direction: row;
        justify-content: center;
        gap: 4rem;
        max-width: 2200px;
        margin: 0 0 0;
        padding: 0 0;
        margin-bottom: 4rem;
        margin-left: 20px;
        margin-right: auto;
    }

    .prize-item {
        flex: 1;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        justify-content: flex-start;
    }

    .prize-image {
        width: 200px;
        height: 230px;
        margin: 0;
        padding-top: -10px;
    }

    .prize-text {
        text-align: left;
    }

    .prize-rank {
        font-size: 3rem;
    }

    .prize-value {
        font-size: 2.5rem;
    }

    /* Hide wave dividers on desktop */
    .wave-divider {
        display: none;
    }


}

/* Mobile-specific styles */
@media (max-width: 1024px) {
    .desktop-layout {
        min-height: auto;
    }

    .desktop-image {
        display: none;
    }

    .content-left {
        padding: 0;
    }

    .logo {
        position: relative;
        transform: none;
    }

    .content-left {
        text-align: center;
        max-width: 100%;
    }

    /* Keep existing mobile styles */
    .action-buttons,
    .booking-partners,
    .instagram-section {
        justify-content: center;
    }


    /* yellow section */


    .stats-container {
        flex-direction: column;
        gap: 0;
    }

    .image-container {
        margin-top: -80px;
    }


    .stats-grid {
        text-align: center;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .stat.big {
        grid-column: 1 / -1;
        margin-top: 1.5rem;
    }

    .image-container img {
        width: 100%;
        max-width: 400px;
        height: auto;
        min-height: 250px;
        transform: rotate(3deg);
        display: block;
    }



    /* purple section */
    .prizes-container {
        max-width: 100%;
        padding: 0;
    }

    .prize-item {
        grid-template-columns: 180px 1fr;
        gap: 1rem;
    }

    .prize-image {
        width: 150px;
        height: 150px;
        margin-top: -30px;
    }

    .prize-rank {
        font-size: 2.4rem;
    }

    .prize-value {
        font-size: 2.4rem;
    }

    .prize-text {
        justify-self: left;
    }

    .wave-divider {
        margin: 1.8rem auto;
    }



}


/* Add new tablet-specific breakpoint */
@media (min-width: 768px) and (max-width: 1023px) {

    /* Top section tablet styles */
    .desktop-layout {
        min-height: auto;
        padding: 2rem 0;
    }

    .logo-img {
        width: 150px;
    }

    .action-buttons {
        gap: 1rem;
    }

    .btn {
        font-size: 1.6rem;
        padding: 0.4rem 1.2rem;
    }

    .main-heading {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .btn-large {
        font-size: 2rem;
        padding: 0.6rem 2rem;
    }

    .booking-partners {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .booking-text {
        font-size: 1.6rem;
    }

    .partner-logo {
        height: 40px;
    }

    .instagram-icon {
        width: 60px;
    }

    .instagram-text {
        font-size: 1.7rem;
    }


    /* Stats section tablet styles */

    .title h2 {
        font-size: 4rem;
    }

    .stats-container {
        flex-direction: row;
        gap: 2rem;
        align-items: center;
        padding: 0 2rem;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        width: 60%;
    }

    .stat .number {
        font-size: 5rem;
    }

    .stat .label {
        font-size: 1.5rem;
    }

    .stat.big {
        grid-column: 1 / -1;
        margin: 1rem 0;
    }

    .image-container {
        width: 40%;
        margin-top: 0;
    }

    .image-container img {
        min-height: 100%;
        min-width: 170%;
        margin-left: -50%;
    }

    /* Orange section tablet styles */
    .orange-section .content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .title-box {
        max-width: 700px;
    }

    .title-box h2 {
        font-size: 3rem;
    }

    .event-description h3 {
        font-size: 2.8rem;
        width: 100%;
    }

    .event-description p {
        font-size: 2rem;
    }

    .crown {
        width: 80px;
    }

    .crown-right {
        right: 45%;
        transform: translateX(250px) translateY(60px) scaleX(-1) rotate(30deg);
        animation: float-right 2.5s ease-in-out infinite;
    }

    .crown-left {
        left: 45%;
        transform: translateX(-180px) translateY(20px) rotate(0deg);
        animation: float-left 2.5s ease-in-out infinite;
    }

    .couple-image {
        height: auto;
        max-width: 600px;
        margin: 0 auto;
    }

    .couple-image img {
        height: auto;
    }

    .orange-section::after {
        content: '';
        position: absolute;
        bottom: -38px;
        left: 0;
        width: 100%;
        height: 40px;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0 V20 Q30 40 60 20 T120 20 V0z' fill='%23FD5F22'/%3E%3C/svg%3E");
        background-repeat: repeat-x;
    }

    /* Features section tablet styles */

    .yellow-section-2 .title {
        margin-top: 1.5rem;
    }


    .yellow-section-2 .title h2 {
        font-size: 3rem;
    }

    .feature-box {
        padding: 1.2rem 1.8rem;
    }

    .feature-text {
        font-size: 1.4rem;
    }


    /* Prize section tablet styles */


    .purple-section .title h2 {
        font-size: 3rem;
    }

    .prize-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .prize-image {
        width: 280px;
        height: 280px;
        margin: 0;
    }

    .prize-text {
        text-align: center;
    }

    .prize-rank {
        font-size: 5rem;
    }

    .prize-value {
        font-size: 4rem;
    }

    /* Footer tablet styles */
    .footer {
        padding: 1.5rem 3rem;
    }

    .footer-logo {
        width: 70px;
    }

    .developed-by {
        font-size: 1.5rem;
    }
}



/*.radial-prize-bg {*/
/*    position: absolute;*/
/*    top: 21%;*/
/*    left: 50%;*/
/*    width: 140vw;*/
/* Increase width to ensure rays go beyond screen */
/*    height: 300vh;*/
/* Increase height to ensure full extension */
/*    background-color: rgba(115, 21, 191);*/

/* Adjust the mask so rays extend fully */
/*    -webkit-mask: repeating-conic-gradient(from 0deg at 50% 50%,*/
/*            currentcolor 0deg 5deg,*/
/*            transparent 5deg 15deg);*/
/*    mask: repeating-conic-gradient(from 0deg at 50% 50%,*/
/*            currentcolor 0deg 5deg,*/
/*            transparent 5deg 15deg);*/

/* Center transformation to keep rotation symmetrical */
/*    transform: translate(-50%, -50%) rotate(0deg);*/
/*    transform-origin: center;*/

/* Continuous smooth rotation */
/*    animation: rotateRadialBg 20s linear infinite;*/
/*    z-index: 0;*/
/*}*/