body {
    background-color: #F5F7F9;
}

/* Banner Slider Styles */
section.header-banner {
    img {
        width: 100%;
        height: auto;
    }

    .swiper {
        .swiper-button-prev,
        .swiper-button-next {
            width: 32px;
            height: 32px;
            top: 51%;
            border-radius: 1000px;
            background-color: #fff;
            border: 2px solid #0E1545;
            box-shadow: 0px 2px 12px rgba(11, 17, 52, 0.15);

            &::after {
                font-size: 10px;
                font-weight: 500;
                color: #0E1545;
            }

            @media (max-width: 600px) {
                display: none !important;
            }
        }

        .swiper-button-prev {
            left: 10vw;
        }

        .swiper-button-next {
            right: 10vw;
        }

        @media (min-width: 1920px) {
            .swiper-button-prev {
                left: 20vw;
            }

            .swiper-button-next {
                right: 20vw;
            }
        }

        .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            opacity: 1;
            border: 1px solid #0E1545;
            background: transparent;

            &.swiper-pagination-bullet-active {
                background: #33D3CB;
            }
        }

    }
}

/* Running Text Styles */
section.running-text {
    display: flex;
    width: 100%;
    height: 52px;
    overflow: hidden;
    white-space: nowrap;

    &#running-text-1 {
        background-color: #FFE767;
        cursor: pointer;
    }

    #text-container {
        display: inline-table;
        justify-content: center;
        align-items: center;
        min-width: max-content;
        animation: marquee 60s linear infinite;
    }
}

@keyframes marquee {
    100% {
        transform: translateX(-100%);
    }
}

.activity-sections {
    background-color: #F5F7F9;

    .activity-container {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 48px;

        .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after, 
        .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
            content: '' !important;
        }
    }
    .activity-grid {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding-bottom: 8px;

        .activity-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
            width: 172px;
            cursor: pointer;
            transition: transform 0.3s ease;

            @media screen and (max-width: 768px) {
                width: 100%;
                max-width: 300px;
            }

            &:hover {
                box-shadow: 0px 4px 20px rgba(17, 17, 17, 0.126);
            }

            .card-image {
                position: relative;
                aspect-ratio: 282/499;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                background-color: #ccc;
                border-radius: 16px;

                .card-gradient {
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    background: linear-gradient(to bottom, transparent 63%, rgba(0, 0, 0, 0.5) 100%);
                    border-radius: 16px;
                }

                .play-button {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    width: 72px;
                    height: 72px;
                    background: rgba(255, 255, 255, 0.683);
                    backdrop-filter: blur(8px);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    cursor: pointer;
                    transition: all 0.3s ease;
                    border: transparent;
                    scale: 1;

                    @media screen and (max-width: 768px) {
                        width: 76px;
                        height: 76px;
                    }

                    svg {
                        margin-left: 5px;
                    }

                    &:hover {
                        transform: translate(-50%, -50%) scale(1.1);
                    }
                }

                .card-info {
                    position: absolute;
                    bottom: 16px;
                    left: 16px;
                    right: 16px;
                    display: flex;
                    align-items: center;
                    gap: 8px;

                    .user-avatar {
                        width: 32px;
                        height: 32px;
                        border-radius: 50%;
                        flex-shrink: 0;
                    }

                    .user-info {
                        flex: 1;
                        color: white;

                        .user-name {
                            font-weight: 600;
                            font-size: 14px;
                            margin-bottom: 2px;
                            white-space: nowrap;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            max-width: 120px;
                        }

                        .post-time {
                            font-weight: 400;
                            font-size: 12px;
                            opacity: 0.8;
                        }
                    }

                    .social-icon {
                        width: 24px;
                        height: 24px;
                        flex-shrink: 0;
                    }
                }
            }
        }
    }

    .workshop-grid {
        display: flex;
        gap: 24px;
        flex-wrap: wrap;

        @media screen and (max-width: 1024px) {
            flex-direction: row;
            flex-wrap: nowrap;
            overflow-y: auto;
            scroll-snap-type: x proximity;
        }

        .workshop-card {
            background: white;
            border: 1px solid #152a55;
            border-radius: 16px;
            padding: 16px;
            width: 221px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            
            @media screen and (max-width: 1024px) {
                min-width: 221px;
            }

            .workshop-image {
                height: 112px;
                border-radius: 8px;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
            }

            .workshop-info {
                flex: 1;
                display: flex;
                flex-direction: column;
                gap: 16px;

                .workshop-text {
                    display: flex;
                    flex-direction: column;
                    gap: 8px;
                    flex: 1;

                    .workshop-title {
                        font-weight: 700;
                        font-size: 18px;
                        color: #000;
                    }
                }

                .workshop-description {
                    flex: 1;
                    margin: 0;
                    font-weight: 400;
                    font-size: 14px;
                    color: #868D9A;
                    line-height: 1.4;
                }
                    
                .workshop-date {
                    margin: 0;
                    font-weight: 500;
                    font-size: 12px;
                    color: #000;
                }

                .join-btn {
                    background: #0B44E8;
                    color: white;
                    border: 1.5px solid #0B44E8;
                    padding: 12px 16px;
                    border-radius: 8px;
                    font-weight: 600;
                    font-size: 14px;
                    text-align: center;
                    text-decoration: none;
                    transition: all 0.3s ease;
                    cursor: pointer;

                    &:hover {
                        background: transparent;
                        color: #0B44E8;
                    }
                }
            }
        }
    }

    .activity-section {
        border: 1px solid #0B44E8;
        border-radius: 24px;
        padding: 16px;
        background: transparent;

        .section-content {
            background: white;
            border-radius: 16px;
            padding: 24px;

            @media screen and (max-width: 768px) {
                padding-right: 0;
                
            }
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;

            @media screen and (max-width: 768px) {
                padding-right: 1rem;
            }

            .section-title {
                font-weight: 700;
                font-size: 24px;
                color: #000;
                flex: 1;
            }

            .see-all-btn {
                display: flex;
                align-items: center;
                height: 42px;
                min-width: 86px;
                background: transparent;
                border: 1.5px solid #0B44E8;
                color: #0B44E8;
                padding: 12px 16px;
                border-radius: 8px;
                font-weight: 600;
                font-size: 14px;
                text-decoration: none;
                transition: all 0.3s ease;

                &:hover {
                    background: #0B44E8;
                    color: white;
                }
            }

            .navigation-arrows {
                position: relative;
                display: flex;
                gap: 16px;
                align-items: center;
                width: 100px;

                @media screen and (max-width: 768px) {
                    display: none !important;
                }

                .nav-arrow {
                    width: 32px;
                    height: 32px;
                    border-radius: 100%;
                    background: white;
                    border: 1.5px solid #0B44E8;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    cursor: pointer;
                    transition: all 0.3s ease;
                    box-shadow: 0px 2px 12px 0px #0B113426;
                    svg {
                        width: 7px;
                        height: 12px;
                        fill: #0B44E8;
                    }

                    &.disabled {
                        opacity: 0.4;
                        cursor: not-allowed;
                    }
                }
            }
        }
    }
}

/* Sticky Bottom CTA Bar Styles */
.sticky-bottom-cta {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #FFFFFF;
    border-top: 2px solid #0B44E8;
    z-index: 1000;
    padding: 16px 20px;
    border-radius: 16px 16px 0 0;
    background: #FFF;
    box-shadow: 0 -2px 0 0 #0B44E8;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    gap: 16px;
    padding-inline: 120px;
}

.cta-text {
    color: var(--Harpropnas-Primary, #0B44E8);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.cta-button {
    background: #0B44E8;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 8px;
    background: var(--Harpropnas-Primary, #0B44E8);
    color: var(--Harpropnas-White, #F5F7F9);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.cta-button:hover {
    background: #0939C7;
    transform: translateY(-2px);
    box-shadow: 0px 4px 12px rgba(11, 68, 232, 0.3);
}

.cta-button-text-mobile {
    display: none;
}

.cta-button-text-desktop {
    display: inline;
}

@media (max-width: 768px) {
    .cta-container {
        padding-inline: 20px;
    }
    
    .cta-text {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .sticky-bottom-cta {
        padding: 10px 12px;
    }
    
    .cta-container {
        padding-inline: 16px;
    }
    
    .cta-button {
        padding: 12px 18px;
        font-size: 14px;
    }
    
    .cta-text {
        font-size: 18px;
    }
}