:root {
    --text-color: rgb(95 109 109);
    --bg-color: #e4e6e6;
    --border-color: #3a414219;
    --red-color: #ff5c5f;
    --green-color: #0eae5f;
    --color-yellow: #ffb200;
    --btn-gradient: linear-gradient(#ffb200, rgba(255, 179, 0, 0.4));
    --bg-gradient-1: linear-gradient(rgba(244, 182, 62, 0) 0%,
            rgba(244, 182, 62, 0.6) 100%),
        rgb(255, 255, 255);
    --bg-gradient-2: linear-gradient(rgba(44, 246, 89, 0) 0%,
            rgba(44, 246, 89, 0.6) 100%),
        rgb(255, 255, 255);
    --bg-gradient-3: linear-gradient(rgba(44, 125, 246, 0) 0%,
            rgba(44, 125, 246, 0.6) 100%),
        rgb(255, 255, 255);
}

/* Performance optimizations */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Optimize animations for performance */
.post-card,
.creator-card,
.category-card,
.nav-btn {
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

.main-content {
    /* max-width: 1200px; */
    width: 100%;
    padding: 5px;
    margin: 0;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    background-color: #ffffff;
    font-family: "Poppins", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style-type: none;
    padding: 0;
}

button:focus {
    outline: 0;
}

a:hover {
    text-decoration: none;
}

.new-home-page {
    /* common-btn */

    .main-content-area {
        max-width: 1048px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .gradient-btn {
        background: var(--btn-gradient);
    }

    .common-btn {
        width: 40px;
        height: 40px;
        border-radius: 5px;
        background-color: var(--bg-color);
        color: var(--text-color);
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-color: transparent;
    }

    /* Modern Header Styles */
    .modern-header {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 178, 0, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        position: sticky;
        top: 0;
        z-index: 1000;
        transition: all 0.3s ease;

        /* &::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #ffb200, #ff8c00, #ffb200);
            background-size: 200% 100%;
            animation: shimmer 3s ease-in-out infinite;
        } */

        .header-container {
            /* max-width: 1400px; */
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            align-items: center;
            gap: 30px;
            height: 70px;

            @media (max-width: 1024px) {
                grid-template-columns: auto 1fr;
                gap: 20px;
                height: 65px;
            }

            @media (max-width: 768px) {
                padding: 0 15px;
                height: 60px;
                gap: 15px;
            }
        }

        /* Header Left */
        .header-left {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 20px;

            @media (max-width: 768px) {
                gap: 70px;
            }


            @media (max-width: 480px) {
                gap: 70px;
            }

            .menu-toggle {
                display: none;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                width: 44px;
                height: 44px;
                background: linear-gradient(135deg, var(--color-yellow) 0%, #ff8c00 100%);
                /* background: rgba(255, 178, 0, 0.1); */
                border: none;
                border-radius: 12px;
                cursor: pointer;
                transition: all 0.3s ease;

                @media (max-width: 960px) {
                    display: flex;
                }

                .hamburger-line {
                    width: 20px;
                    height: 2px;
                    /* background: #ffb200; */
                    background: #fff;
                    margin: 2px 0;
                    transition: all 0.3s ease;
                    border-radius: 2px;
                }

                &:hover {
                    background: linear-gradient(135deg, var(--color-yellow) 0%, #ff8c00 100%);
                    transform: scale(1.05);
                }
            }

            .brand-logo {
                .logo-link {
                    display: flex;
                    align-items: center;
                    gap: 12px;
                    text-decoration: none;
                    transition: all 0.3s ease;

                    &:hover {
                        transform: scale(1.02);
                    }

                    img {
                        height: 40px;
                        width: auto;
                        transition: all 0.3s ease;

                        @media (max-width: 768px) {
                            height: 35px;
                        }
                    }

                    .brand-text {
                        font-size: 24px;
                        font-weight: 700;
                        background: linear-gradient(135deg, #ffb200, #ff8c00);
                        -webkit-background-clip: text;
                        -webkit-text-fill-color: transparent;
                        background-clip: text;
                        letter-spacing: -0.5px;

                        @media (max-width: 768px) {
                            display: none;
                        }
                    }
                }
            }
        }

        /* Header Center - Search */
        .header-center {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;

            @media (max-width: 1024px) {
                display: none;
            }

            .search-container {
                width: 100%;
                max-width: 500px;
                position: relative;

                .search-input-wrapper {
                    position: relative;
                    display: flex;
                    align-items: center;
                    background: rgba(255, 255, 255, 0.8);
                    border: 2px solid rgba(255, 178, 0, 0.2);
                    border-radius: 25px;
                    padding: 0 20px;
                    transition: all 0.3s ease;
                    backdrop-filter: blur(10px);

                    &:focus-within {
                        border-color: #ffb200;
                        box-shadow: 0 0 0 4px rgba(255, 178, 0, 0.1);
                        background: rgba(255, 255, 255, 0.95);
                    }

                    .search-icon {
                        color: #ffb200;
                        font-size: 16px;
                        margin-right: 12px;
                    }

                    .search-input {
                        flex: 1;
                        border: none;
                        background: transparent;
                        padding: 12px 0;
                        font-size: 15px;
                        color: #333;
                        outline: none;

                        &::placeholder {
                            color: #999;
                        }
                    }

                    .search-filter-btn {
                        background: none;
                        border: none;
                        color: #666;
                        padding: 8px;
                        border-radius: 8px;
                        cursor: pointer;
                        transition: all 0.3s ease;

                        &:hover {
                            background: rgba(255, 178, 0, 0.1);
                            color: #ffb200;
                        }
                    }
                }

                .quick-suggestions {
                    position: absolute;
                    top: 100%;
                    left: 0;
                    right: 0;
                    background: white;
                    border-radius: 15px;
                    padding: 15px;
                    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
                    margin-top: 8px;
                    display: none;
                    gap: 8px;

                    .suggestion-tag {
                        display: inline-block;
                        padding: 6px 12px;
                        background: rgba(255, 178, 0, 0.1);
                        color: #ffb200;
                        border-radius: 20px;
                        font-size: 13px;
                        font-weight: 500;
                        cursor: pointer;
                        transition: all 0.3s ease;

                        &:hover {
                            background: #ffb200;
                            color: white;
                        }
                    }
                }
            }
        }

        /* Header Right */
        .header-right {
            display: flex;
            justify-content: flex-end;

            .header-actions {
                display: flex;
                align-items: center;
                gap: 15px;

                .action-item {
                    position: relative;

                    .action-btn {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        width: 44px;
                        height: 44px;
                        background: rgba(255, 178, 0, 0.1);
                        border: none;
                        border-radius: 12px;
                        color: #ffb200;
                        cursor: pointer;
                        transition: all 0.3s ease;
                        position: relative;

                        &:hover {
                            background: rgba(255, 178, 0, 0.2);
                            transform: translateY(-2px);
                        }

                        i {
                            font-size: 16px;
                        }
                    }

                    &.notifications {
                        .notification-badge {
                            position: absolute;
                            top: -2px;
                            right: -2px;
                            background: #ff5c5f;
                            color: white;
                            font-size: 11px;
                            font-weight: 600;
                            padding: 2px 6px;
                            border-radius: 10px;
                            min-width: 18px;
                            text-align: center;
                        }
                    }

                    &.live-status {
                        .action-btn {
                            width: auto;
                            padding: 0 15px;
                            gap: 8px;

                            .live-indicator {
                                width: 8px;
                                height: 8px;
                                background: #ff5c5f;
                                border-radius: 50%;
                                animation: pulse 2s infinite;
                            }

                            .live-text {
                                font-size: 13px;
                                font-weight: 600;
                                color: #333;
                            }

                            i {
                                font-size: 12px;
                                color: #666;
                            }
                        }
                    }

                    @media (max-width: 768px) {

                        &.notifications,
                        &.language {
                            display: none;
                        }
                    }
                }

                /* Language Dropdown Styles */
                .action-item.language {
                    position: relative;

                    .language-toggle {
                        display: flex;
                        align-items: center;
                        gap: 6px;
                        padding: 8px 12px;
                        min-width: 70px;

                        .current-lang {
                            font-size: 12px;
                            font-weight: 600;
                            color: #333;
                        }

                        .dropdown-arrow {
                            font-size: 10px;
                            color: #666;
                            transition: transform 0.3s ease;
                        }

                        &.active .dropdown-arrow {
                            transform: rotate(180deg);
                        }
                    }

                    .language-dropdown {
                        position: absolute;
                        top: calc(100% + 8px);
                        right: 0;
                        background: white;
                        border-radius: 12px;
                        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
                        border: 1px solid rgba(255, 178, 0, 0.2);
                        min-width: 180px;
                        opacity: 0;
                        visibility: hidden;
                        transform: translateY(-10px);
                        transition: all 0.3s ease;
                        z-index: 1000;
                        overflow: hidden;

                        &.active {
                            opacity: 1;
                            visibility: visible;
                            transform: translateY(0);
                        }

                        .language-option {
                            display: flex;
                            align-items: center;
                            gap: 12px;
                            padding: 12px 16px;
                            cursor: pointer;
                            transition: all 0.3s ease;
                            border-bottom: 1px solid rgba(0, 0, 0, 0.05);

                            &:last-child {
                                border-bottom: none;
                            }

                            &:hover {
                                background: rgba(255, 178, 0, 0.05);
                                transform: translateX(2px);
                            }

                            &.active {
                                background: rgba(255, 178, 0, 0.1);
                                color: #ffb200;

                                .lang-code {
                                    color: #ffb200;
                                    font-weight: 600;
                                }

                                &::after {
                                    content: "✓";
                                    margin-left: auto;
                                    color: #ffb200;
                                    font-weight: bold;
                                }
                            }

                            .flag {
                                font-size: 18px;
                                width: 24px;
                                text-align: center;
                                transition: transform 0.2s ease;
                            }

                            &:hover .flag {
                                transform: scale(1.1);
                            }

                            .lang-name {
                                /* flex: 1; */
                                font-size: 14px;
                                font-weight: 500;
                                color: #333;
                            }

                            .lang-code {
                                font-size: 12px;
                                font-weight: 600;
                                color: #666;
                                background: rgba(0, 0, 0, 0.05);
                                padding: 2px 6px;
                                border-radius: 4px;
                                transition: all 0.2s ease;
                            }
                        }

                        /* Loading state */
                        .language-toggle.loading .current-lang {
                            opacity: 0.6;
                        }

                        .language-toggle.loading .dropdown-arrow {
                            animation: spin 1s linear infinite;
                        }

                        @keyframes spin {
                            from {
                                transform: rotate(0deg);
                            }

                            to {
                                transform: rotate(360deg);
                            }
                        }
                    }

                    @media (max-width: 768px) {
                        display: none;
                    }
                }

                .auth-buttons {
                    display: flex;
                    align-items: center;
                    gap: 12px;
                    margin-left: 10px;

                    .btn-signin,
                    .btn-signup {
                        display: flex;
                        align-items: center;
                        gap: 8px;
                        padding: 12px 20px;
                        border-radius: 12px;
                        font-weight: 600;
                        font-size: 14px;
                        text-decoration: none;
                        transition: all 0.3s ease;
                        white-space: nowrap;

                        i {
                            font-size: 14px;
                        }
                    }

                    .btn-signin {
                        color: #333;
                        background: rgba(255, 255, 255, 0.8);
                        border: 2px solid rgba(255, 178, 0, 0.2);

                        &:hover {
                            background: rgba(255, 178, 0, 0.1);
                            border-color: #ffb200;
                            color: #ffb200;
                            text-decoration: none;
                            transform: translateY(-2px);
                        }
                    }

                    .btn-signup {
                        background: linear-gradient(135deg, #ffb200, #ff8c00);
                        color: white;
                        border: 2px solid transparent;

                        &:hover {
                            background: linear-gradient(135deg, #ff8c00, #ffb200);
                            text-decoration: none;
                            transform: translateY(-2px);
                            box-shadow: 0 8px 25px rgba(255, 178, 0, 0.3);
                        }
                    }

                    @media (max-width: 768px) {
                        display: none;
                    }
                }

                .user-menu {
                    .user-avatar {
                        position: relative;
                        width: 44px;
                        height: 44px;
                        border-radius: 50%;
                        border: 2px solid #ffb200;
                        background: none;
                        cursor: pointer;
                        overflow: hidden;
                        transition: all 0.3s ease;

                        &:hover {
                            transform: scale(1.05);
                            box-shadow: 0 0 0 4px rgba(255, 178, 0, 0.2);
                        }

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }

                        .status-indicator {
                            position: absolute;
                            bottom: 2px;
                            right: 2px;
                            width: 12px;
                            height: 12px;
                            border-radius: 50%;
                            border: 2px solid white;

                            &.online {
                                background: #0eae5f;
                            }
                        }
                    }
                }
            }
        }

        /* Mobile Search Overlay */
        .mobile-search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 9999;
            display: none;
            opacity: 0;
            transition: all 0.3s ease;

            &.active {
                display: flex;
                opacity: 1;
            }

            .mobile-search-container {
                background: white;
                margin: auto;
                width: 90%;
                max-width: 500px;
                border-radius: 20px;
                overflow: hidden;
                transform: translateY(50px);
                transition: all 0.3s ease;

                .mobile-search-header {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 20px;
                    border-bottom: 1px solid #eee;

                    h3 {
                        margin: 0;
                        color: #333;
                        font-size: 20px;
                        font-weight: 600;
                    }

                    .close-search {
                        background: none;
                        border: none;
                        font-size: 20px;
                        color: #666;
                        cursor: pointer;
                        padding: 5px;
                        border-radius: 50%;
                        transition: all 0.3s ease;

                        &:hover {
                            background: #f5f5f5;
                            color: #333;
                        }
                    }
                }

                .mobile-search-input {
                    padding: 20px;
                    display: flex;
                    align-items: center;
                    gap: 15px;
                    border-bottom: 1px solid #eee;

                    i {
                        color: #ffb200;
                        font-size: 18px;
                    }

                    input {
                        flex: 1;
                        border: none;
                        outline: none;
                        font-size: 16px;
                        color: #333;

                        &::placeholder {
                            color: #999;
                        }
                    }
                }

                .mobile-search-suggestions {
                    padding: 20px;

                    h4 {
                        margin: 0 0 15px 0;
                        color: #333;
                        font-size: 16px;
                        font-weight: 600;
                    }

                    .suggestion-tags {
                        display: flex;
                        flex-wrap: wrap;
                        gap: 10px;

                        .tag {
                            padding: 8px 16px;
                            background: rgba(255, 178, 0, 0.1);
                            color: #ffb200;
                            border-radius: 20px;
                            font-size: 14px;
                            font-weight: 500;
                            cursor: pointer;
                            transition: all 0.3s ease;

                            &:hover {
                                background: #ffb200;
                                color: white;
                            }
                        }
                    }
                }
            }

            &.active .mobile-search-container {
                transform: translateY(0);
            }
        }
    }

    /* Animations */
    @keyframes shimmer {
        0% {
            background-position: -200% 0;
        }

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

    @keyframes pulse {
        0% {
            opacity: 1;
        }

        50% {
            opacity: 0.5;
        }

        100% {
            opacity: 1;
        }
    }

    /* Header Scroll Effects */
    .modern-header.scrolled {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    }

    .modern-header.header-hidden {
        transform: translateY(-100%);
    }

    /* Hamburger Animation */
    .menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Search Input Focus Effects */
    .search-input-wrapper:focus-within .search-icon {
        color: #ff8c00;
        transform: scale(1.1);
    }

    /* Button Hover Effects */
    .btn-signin:hover i,
    .btn-signup:hover i {
        transform: translateX(2px);
    }

    /* Mobile Responsive Improvements */
    @media (max-width: 480px) {
        .modern-header .header-container {
            padding: 0 10px;
        }

        .modern-header .auth-buttons {
            gap: 8px;
        }

        .modern-header .auth-buttons .btn-signin,
        .modern-header .auth-buttons .btn-signup {
            padding: 8px 12px;
            font-size: 13px;
        }

        .modern-header .brand-logo .logo-link img {
            height: 30px;
        }
    }
}

.new-home-page-main {
    display: flex;

    .section-title-with-arrows {
        margin-top: 20px;
        margin-bottom: 8px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;

        h4 {
            font-size: 16px;
            font-weight: 700;
            color: #000;
        }

        >a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            height: 32px;
            padding: 0 15px;
            background-color: rgba(0, 0, 0, 0.05);
            color: #000;
            font-weight: 600;
            font-size: 15px;
            border-radius: 5px;

            transform: translateX(-79px);

            i {
                font-size: 11px;
                padding-left: 6px;
            }
        }
    }

    .right-arrows {
        .slick-arrow {
            height: 32px;
            width: 32px;
            border-radius: 3px;
            background-color: rgba(0, 0, 0, 0.05);
            color: #000;
            font-size: 13px;
            border-color: transparent;
            position: absolute;
            top: -39px;
            right: 10px;

            &.slick-prev {
                right: 47px;
            }
        }
    }

    .sidebar-area {
        width: 280px;
        height: calc(100vh - 60px);
        overflow-y: auto;
        background: linear-gradient(135deg, #ffb200 0%, #ff8c00 100%);
        box-shadow: 0 10px 30px rgba(255, 178, 0, 0.2);
        position: relative;

        @media screen and (max-width: 960px) {
            position: fixed;
            top: 60px;
            left: 0;
            z-index: 999;
            width: 280px;
        }

        &::-webkit-scrollbar {
            width: 6px;
        }

        &::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
        }

        &::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 3px;

            &:hover {
                background: rgba(255, 255, 255, 0.5);
            }
        }

        &.modern-sidebar {
            .sidebar-header {
                padding: 25px 20px 20px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);

                .sidebar-title {
                    color: #fff;
                    font-size: 20px;
                    font-weight: 700;
                    margin: 0;
                    display: flex;
                    align-items: center;
                    gap: 10px;

                    i {
                        font-size: 22px;
                        color: #fff;
                    }
                }
            }

            .sidebar-section {
                padding: 20px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);

                &:last-of-type {
                    border-bottom: none;
                }

                .section-label {
                    color: rgba(255, 255, 255, 0.7);
                    font-size: 11px;
                    font-weight: 600;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                    padding: 0 20px 15px;
                    margin-bottom: 5px;
                }

                .nav-list {
                    list-style: none;
                    padding: 0;
                    margin: 0;

                    .nav-item {
                        margin: 0 15px 8px;
                        position: relative;

                        &.featured .nav-link {
                            background: linear-gradient(135deg, #fff, #f0f0f0);
                            color: #333;
                            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);

                            .nav-icon {
                                color: #333;
                            }

                            .nav-text {
                                color: #333;
                            }
                        }

                        &.special .nav-link {
                            background: linear-gradient(135deg, #fff, #f0f0f0);
                            color: #333;
                            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);

                            .nav-icon {
                                color: #333;
                            }

                            .nav-text {
                                color: #333;
                            }
                        }

                        .nav-link {
                            display: flex;
                            align-items: center;
                            padding: 12px 15px;
                            border-radius: 12px;
                            text-decoration: none;
                            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                            background: rgba(255, 255, 255, 0.1);
                            backdrop-filter: blur(10px);
                            border: 1px solid rgba(255, 255, 255, 0.2);
                            position: relative;
                            overflow: hidden;

                            &::before {
                                content: '';
                                position: absolute;
                                top: 0;
                                left: -100%;
                                width: 100%;
                                height: 100%;
                                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
                                transition: left 0.5s;
                            }

                            &:hover {
                                transform: translateX(5px);
                                background: rgba(255, 255, 255, 0.25);
                                box-shadow: 0 8px 25px rgba(255, 178, 0, 0.3);
                                text-decoration: none;

                                &::before {
                                    left: 100%;
                                }

                                .nav-icon {
                                    transform: scale(1.1);
                                }
                            }

                            .nav-icon {
                                width: 35px;
                                height: 35px;
                                border-radius: 8px;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                margin-right: 12px;
                                transition: all 0.3s ease;
                                font-size: 16px;

                                &.trending {
                                    background: linear-gradient(135deg, #ffb200, #ff8c00);
                                    color: #fff;
                                }

                                &.star {
                                    background: linear-gradient(135deg, #fff, #f0f0f0);
                                    color: #333;
                                }

                                &.fire {
                                    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
                                    color: #fff;
                                }

                                &.new {
                                    background: linear-gradient(135deg, #00d4aa, #01a3a4);
                                    color: #fff;
                                }

                                &.gift {
                                    background: linear-gradient(135deg, #9b59b6, #8e44ad);
                                    color: #fff;
                                }

                                &.animation {
                                    background: linear-gradient(135deg, #a8edea, #fed6e3);
                                    color: #333;
                                }

                                &.artist {
                                    background: linear-gradient(135deg, #ff9a9e, #fecfef);
                                    color: #333;
                                }

                                &.designer {
                                    background: linear-gradient(135deg, #a18cd1, #fbc2eb);
                                    color: #333;
                                }

                                &.developer {
                                    background: linear-gradient(135deg, #3498db, #2980b9);
                                    color: #fff;
                                }

                                &.drawing {
                                    background: linear-gradient(135deg, #ffecd2, #fcb69f);
                                    color: #333;
                                }

                                &.photography {
                                    background: linear-gradient(135deg, #a8edea, #fed6e3);
                                    color: #333;
                                }

                                &.podcast {
                                    background: linear-gradient(135deg, #e74c3c, #c0392b);
                                    color: #fff;
                                }

                                &.video {
                                    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
                                    color: #fff;
                                }

                                &.writing {
                                    background: linear-gradient(135deg, #ffecd2, #fcb69f);
                                    color: #333;
                                }

                                &.others {
                                    background: linear-gradient(135deg, #a8edea, #fed6e3);
                                    color: #333;
                                }

                                &.simulator {
                                    background: linear-gradient(135deg, #ffb200, #ff8c00);
                                    color: #fff;
                                }
                            }

                            .nav-text {
                                color: #fff;
                                font-weight: 500;
                                font-size: 13px;
                                flex: 1;
                            }



                            .nav-badge {
                                position: absolute;
                                top: 3px;
                                right: 3px;
                                background: #e74c3c;
                                color: #fff;
                                font-size: 10px;
                                font-weight: 600;
                                padding: 3px 8px;
                                border-radius: 12px;
                                text-transform: uppercase;
                                letter-spacing: 0.5px;

                                &.new {
                                    background: #00d4aa;
                                }

                                &.free {
                                    background: #9b59b6;
                                }

                                &.premium {
                                    background: linear-gradient(135deg, #ffb200, #ff8c00);
                                    color: #fff;
                                }
                            }
                        }
                    }
                }

                /* Mobile Auth Section */
                &.mobile-auth-section {
                    display: none;
                    padding: 20px 15px;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
                    margin-bottom: 10px;

                    @media (max-width: 768px) {
                        display: block;
                    }

                    .mobile-auth-buttons {
                        display: flex;
                        flex-direction: column;
                        gap: 10px;

                        .mobile-btn-signin,
                        .mobile-btn-signup {
                            display: flex;
                            align-items: center;
                            gap: 12px;
                            padding: 12px 15px;
                            border-radius: 12px;
                            font-weight: 500;
                            font-size: 14px;
                            text-decoration: none;
                            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                            text-align: left;
                            position: relative;
                            overflow: hidden;
                            backdrop-filter: blur(10px);
                            border: 1px solid rgba(255, 255, 255, 0.2);

                            &::before {
                                content: '';
                                position: absolute;
                                top: 0;
                                left: -100%;
                                width: 100%;
                                height: 100%;
                                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
                                transition: left 0.5s;
                            }

                            i {
                                width: 35px;
                                height: 35px;
                                border-radius: 8px;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                font-size: 16px;
                                transition: all 0.3s ease;
                                flex-shrink: 0;
                            }

                            span {
                                flex: 1;
                                font-weight: 500;
                            }

                            &:hover {
                                text-decoration: none;
                                transform: translateX(5px);
                                box-shadow: 0 8px 25px rgba(255, 178, 0, 0.3);

                                &::before {
                                    left: 100%;
                                }

                                i {
                                    transform: scale(1.1);
                                }
                            }
                        }

                        .mobile-btn-signin {
                            background: rgba(255, 255, 255, 0.1);
                            color: #fff;

                            i {
                                background: linear-gradient(135deg, rgba(255, 178, 0, 0.2), rgba(255, 178, 0, 0.1));
                                color: #ffb200;
                            }

                            &:hover {
                                background: rgba(255, 255, 255, 0.15);
                                color: #fff;

                                i {
                                    background: linear-gradient(135deg, #ffb200, #ff8c00);
                                    color: #fff;
                                }
                            }
                        }

                        .mobile-btn-signup {
                            background: rgba(255, 255, 255, 0.1);
                            color: #fff;

                            i {
                                background: linear-gradient(135deg, #ffb200, #ff8c00);
                                color: #fff;
                            }

                            &:hover {
                                background: rgba(255, 255, 255, 0.25);
                                color: #fff;

                                i {
                                    background: linear-gradient(135deg, #ff8c00, #ffb200);
                                    box-shadow: 0 4px 15px rgba(255, 178, 0, 0.4);
                                }
                            }
                        }
                    }
                }
            }

            .sidebar-footer {
                padding: 20px;
                margin-top: auto;

                .upgrade-card {
                    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
                    backdrop-filter: blur(10px);
                    border: 1px solid rgba(255, 255, 255, 0.2);
                    border-radius: 16px;
                    padding: 20px;
                    text-align: center;
                    position: relative;
                    overflow: hidden;

                    &::before {
                        content: '';
                        position: absolute;
                        top: -50%;
                        left: -50%;
                        width: 200%;
                        height: 200%;
                        background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
                        animation: rotate 4s linear infinite;
                        z-index: -1;
                    }

                    .upgrade-icon {
                        width: 50px;
                        height: 50px;
                        background: linear-gradient(135deg, #fff, #f0f0f0);
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        margin: 0 auto 15px;
                        font-size: 20px;
                        color: #ffb200;
                        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
                    }

                    h4 {
                        color: #fff;
                        font-size: 16px;
                        font-weight: 700;
                        margin: 0 0 8px;
                    }

                    p {
                        color: rgba(255, 255, 255, 0.7);
                        font-size: 12px;
                        margin: 0 0 15px;
                        line-height: 1.4;
                    }

                    .upgrade-btn {
                        background: linear-gradient(135deg, #fff, #f0f0f0);
                        color: #ffb200;
                        border: none;
                        padding: 10px 20px;
                        border-radius: 25px;
                        font-weight: 600;
                        font-size: 12px;
                        cursor: pointer;
                        transition: all 0.3s ease;
                        text-transform: uppercase;
                        letter-spacing: 0.5px;

                        &:hover {
                            transform: translateY(-2px);
                            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
                            background: linear-gradient(135deg, #ffb200, #ff8c00);
                            color: #fff;
                        }
                    }
                }
            }
        }
    }

    @keyframes rotate {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    /* Ripple effect */
    .ripple {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: scale(0);
        animation: ripple-animation 0.6s linear;
        pointer-events: none;
    }

    @keyframes ripple-animation {
        to {
            transform: scale(4);
            opacity: 0;
        }
    }

    /* Active state for nav links */
    .modern-sidebar .nav-link.active {
        background: rgba(255, 255, 255, 0.3) !important;
        transform: translateX(5px);
        box-shadow: 0 8px 25px rgba(255, 178, 0, 0.4);
    }

    .modern-sidebar .nav-link.active .nav-icon {
        transform: scale(1.1);
    }

    .content-area {
        width: 100%;
        height: calc(100vh - 60px);
        overflow-y: auto;
        overflow-x: hidden;
        scroll-behavior: smooth;
        will-change: scroll-position;

        &::-webkit-scrollbar {
            width: 6px;
        }

        &::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 3px;
        }

        &::-webkit-scrollbar-thumb {
            background: rgba(255, 178, 0, 0.3);
            border-radius: 3px;


        }

        /* Firefox scrollbar */
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 178, 0, 0.3) rgba(255, 255, 255, 0.05);
    }

    .main-content {
        width: 100%;
        /* max-width: 1400px; */

        margin: 0 auto;

        overflow-x: hidden;
        position: relative;

        @media (max-width: 1200px) {
            padding: 12px;
        }

        @media (max-width: 992px) {
            padding: 10px;
        }

        @media (max-width: 768px) {
            padding: 8px;
        }

        @media (max-width: 576px) {
            padding: 6px;
        }

        @media (max-width: 480px) {
            padding: 5px;
        }

        @media (max-width: 360px) {
            padding: 3px;
        }

        /* Modern Hero Banner Slider */
        .hero-banner-slider {
            position: relative;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto 25px auto;
            height: 400px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

            @media (max-width: 1400px) {
                max-width: 95%;
                height: 380px;
                margin: 0 auto 20px auto;
            }

            @media (max-width: 1200px) {
                height: 350px;
                margin: 0 auto 20px auto;
                border-radius: 14px;
            }

            @media (max-width: 992px) {
                height: 320px;
                margin: 0 15px 18px 15px;
            }

            @media (max-width: 768px) {
                height: 280px;
                border-radius: 12px;
                margin: 0 10px 15px 10px;
            }

            @media (max-width: 576px) {
                height: 250px;
                margin: 0 8px 12px 8px;
            }

            @media (max-width: 480px) {
                height: 220px;
                border-radius: 10px;
                margin: 0 5px 10px 5px;
            }

            @media (max-width: 360px) {
                height: 200px;
                margin: 0 3px 8px 3px;
            }

            .hero-slides {
                position: relative;
                height: 100%;
            }

            .hero-slide {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                opacity: 0;
                visibility: hidden;
                transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;

                &.active {
                    opacity: 1;
                    visibility: visible;
                }

                &::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    background: attr(data-bg);
                    background-size: cover;
                    background-position: center;
                    z-index: 1;
                }
            }

            .hero-overlay {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(135deg, rgba(255, 178, 0, 0.9) 0%, rgba(255, 140, 0, 0.8) 100%);
                z-index: 2;
            }

            .hero-content {
                position: relative;
                z-index: 3;
                height: 100%;
                display: flex;
                align-items: center;
                padding: 30px 0;

                @media (max-width: 1200px) {
                    padding: 25px 0;
                }

                @media (max-width: 992px) {
                    padding: 20px 0;
                }

                @media (max-width: 768px) {
                    padding: 18px 0;
                }

                @media (max-width: 576px) {
                    padding: 15px 0;
                }

                @media (max-width: 480px) {
                    padding: 12px 0;
                }

                @media (max-width: 360px) {
                    padding: 10px 0;
                }

                .container-fluid {
                    padding-left: 40px;
                    padding-right: 40px;
                    height: 100%;

                    @media (max-width: 1200px) {
                        padding-left: 30px;
                        padding-right: 30px;
                    }

                    @media (max-width: 992px) {
                        padding-left: 25px;
                        padding-right: 25px;
                    }

                    @media (max-width: 768px) {
                        padding-left: 20px;
                        padding-right: 20px;
                        height: auto;
                    }

                    @media (max-width: 576px) {
                        padding-left: 15px;
                        padding-right: 15px;
                    }

                    @media (max-width: 480px) {
                        padding-left: 12px;
                        padding-right: 12px;
                    }

                    @media (max-width: 360px) {
                        padding-left: 10px;
                        padding-right: 10px;
                    }

                    .row {
                        height: 100%;

                        @media (max-width: 768px) {
                            height: auto;
                        }
                    }
                }
            }

            .min-vh-60 {
                min-height: 100%;
                align-items: center;

                @media (max-width: 768px) {
                    min-height: auto;
                    position: relative;
                }

                .col-lg-6:first-child {
                    @media (max-width: 768px) {
                        width: 100%;
                        padding-right: 0;
                        z-index: 2;
                        position: relative;
                        padding: 20px;
                        margin-bottom: 20px;
                    }

                    @media (max-width: 576px) {
                        padding: 15px;
                        margin-bottom: 15px;
                    }

                    @media (max-width: 480px) {
                        padding: 12px;
                        margin-bottom: 12px;
                    }

                    @media (max-width: 360px) {
                        padding: 10px;
                        margin-bottom: 10px;
                    }
                }

                .col-lg-6:last-child {
                    @media (max-width: 768px) {
                        display: flex !important;
                    }

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

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

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

            .hero-text {
                color: #fff;
                padding-right: 20px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                height: 100%;

                @media (max-width: 1200px) {
                    padding-right: 15px;
                }

                @media (max-width: 992px) {
                    padding-right: 12px;
                }

                @media (max-width: 768px) {
                    padding-right: 0;
                    height: auto;
                    text-align: left;
                    justify-content: flex-start;
                    padding-top: 20px;
                }

                @media (max-width: 576px) {
                    padding-top: 15px;
                }

                @media (max-width: 480px) {
                    padding-top: 12px;
                }

                @media (max-width: 360px) {
                    padding-top: 10px;
                }

                .hero-badge {
                    display: inline-flex;
                    align-items: center;
                    width: fit-content;
                    gap: 8px;
                    background: rgba(255, 255, 255, 0.2);
                    backdrop-filter: blur(10px);
                    padding: 8px 16px;
                    border-radius: 25px;
                    font-size: 13px;
                    font-weight: 500;
                    margin-bottom: 15px;
                    border: 1px solid rgba(255, 255, 255, 0.3);

                    @media (max-width: 768px) {
                        display: none;
                    }

                    i {
                        color: #fff;
                        font-size: 13px;
                    }
                }

                .hero-title {
                    font-size: 2.3rem;
                    font-weight: 800;
                    line-height: 1.1;
                    margin-bottom: 15px;
                    color: #fff;
                    letter-spacing: -0.02em;

                    @media (max-width: 1200px) {
                        font-size: 2.5rem;
                        margin-bottom: 12px;
                    }

                    @media (max-width: 992px) {
                        font-size: 2.2rem;
                        margin-bottom: 10px;
                    }

                    @media (max-width: 768px) {
                        font-size: 2rem;
                        line-height: 1.2;
                        margin-bottom: 10px;
                    }

                    @media (max-width: 576px) {
                        font-size: 1.8rem;
                        margin-bottom: 8px;
                    }

                    @media (max-width: 480px) {
                        font-size: 1.6rem;
                        margin-bottom: 8px;
                    }

                    @media (max-width: 360px) {
                        font-size: 1.4rem;
                        margin-bottom: 6px;
                    }

                    .gradient-text {
                        background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
                        -webkit-background-clip: text;
                        -webkit-text-fill-color: transparent;
                        background-clip: text;
                        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
                        display: inline-block;
                    }
                }

                .hero-description {
                    font-size: 0.8rem;
                    line-height: 1.5;
                    margin-bottom: 20px;
                    color: rgba(255, 255, 255, 0.9);
                    max-width: 450px;
                    font-weight: 400;

                    @media (max-width: 1200px) {
                        font-size: 0.95rem;
                        max-width: 420px;
                        margin-bottom: 18px;
                    }

                    @media (max-width: 992px) {
                        font-size: 0.9rem;
                        margin-bottom: 15px;
                    }

                    @media (max-width: 768px) {
                        display: none;
                    }
                }

                .hero-stats {
                    display: flex;
                    gap: 15px;
                    margin-bottom: 20px;

                    @media (max-width: 992px) {
                        gap: 12px;
                        margin-bottom: 15px;
                    }

                    @media (max-width: 768px) {
                        gap: 10px;
                        margin-bottom: 12px;
                        justify-content: center;
                    }

                    @media (max-width: 576px) {
                        gap: 8px;
                        margin-bottom: 10px;
                    }

                    @media (max-width: 480px) {
                        display: none;
                        /* Hide stats on small mobile for cleaner look */
                    }

                    .stat-item {
                        text-align: center;

                        .stat-number {
                            display: block;
                            font-size: 1.4rem;
                            font-weight: 800;
                            color: #fff;
                            line-height: 1;

                            @media (max-width: 768px) {
                                font-size: 1.1rem;
                            }
                        }

                        .stat-label {
                            font-size: 0.75rem;
                            color: rgba(255, 255, 255, 0.8);
                            text-transform: uppercase;
                            letter-spacing: 0.5px;

                            @media (max-width: 768px) {
                                font-size: 0.7rem;
                            }
                        }
                    }
                }

                .hero-features {
                    margin-bottom: 25px;

                    @media (max-width: 480px) {
                        display: none;
                        /* Hide features on small mobile for cleaner look */
                    }

                    .feature-item {
                        display: flex;
                        align-items: center;
                        gap: 8px;
                        margin-bottom: 6px;
                        color: #fff;

                        @media (max-width: 768px) {
                            margin-bottom: 4px;
                        }

                        i {
                            color: #fff;
                            font-size: 0.9rem;

                            @media (max-width: 768px) {
                                font-size: 0.8rem;
                            }
                        }

                        span {
                            font-size: 0.85rem;
                            font-weight: 500;

                            @media (max-width: 768px) {
                                font-size: 0.8rem;
                            }
                        }
                    }
                }

                .hero-testimonial {
                    background: rgba(255, 255, 255, 0.1);
                    backdrop-filter: blur(10px);
                    border-radius: 12px;
                    padding: 15px;
                    margin-bottom: 20px;
                    border: 1px solid rgba(255, 255, 255, 0.2);

                    @media (max-width: 768px) {
                        padding: 12px;
                        margin-bottom: 15px;
                    }

                    @media (max-width: 480px) {
                        display: none;
                        /* Hide testimonial on small mobile for cleaner look */
                    }

                    .testimonial-content {
                        p {
                            font-style: italic;
                            margin-bottom: 15px;
                            color: #fff;
                            font-size: 0.8rem;
                        }

                        .testimonial-author {
                            display: flex;
                            align-items: center;
                            gap: 8px;

                            img {
                                width: 30px;
                                height: 30px;
                                border-radius: 50%;
                                object-fit: cover;
                            }

                            .author-name {
                                display: block;
                                font-weight: 600;
                                color: #fff;
                            }

                            .author-title {
                                display: block;
                                font-size: 0.7rem;
                                color: rgba(255, 255, 255, 0.8);
                            }
                        }
                    }
                }

                .hero-actions {
                    display: flex;
                    gap: 12px;
                    flex-wrap: wrap;
                    margin-top: 5px;

                    @media (max-width: 992px) {
                        gap: 10px;
                    }

                    @media (max-width: 768px) {
                        gap: 8px;
                        justify-content: flex-start;
                    }

                    @media (max-width: 576px) {
                        gap: 6px;
                        flex-direction: column;
                        align-items: flex-start;
                    }

                    @media (max-width: 480px) {
                        gap: 8px;
                        flex-direction: column;
                        align-items: flex-start;
                    }

                    @media (max-width: 360px) {
                        gap: 6px;
                    }

                    .btn-hero-primary,
                    .btn-hero-secondary {
                        display: inline-flex;
                        align-items: center;
                        gap: 8px;
                        padding: 12px 24px;
                        border-radius: 50px;
                        font-weight: 600;
                        font-size: 0.9rem;
                        text-decoration: none;
                        transition: all 0.3s ease;
                        border: 2px solid transparent;
                        min-width: 140px;
                        justify-content: center;

                        @media (max-width: 1200px) {
                            padding: 11px 22px;
                            min-width: 130px;
                            font-size: 0.85rem;
                        }

                        @media (max-width: 768px) {
                            padding: 10px 20px;
                            font-size: 0.8rem;
                            min-width: 110px;
                        }

                        @media (max-width: 480px) {
                            padding: 10px 18px;
                            font-size: 0.8rem;
                            min-width: 120px;
                            width: 100%;
                            max-width: 180px;
                        }

                        i {
                            font-size: 0.9rem;

                            @media (max-width: 768px) {
                                font-size: 0.8rem;
                            }

                            @media (max-width: 480px) {
                                font-size: 0.75rem;
                            }
                        }
                    }

                    .btn-hero-primary {
                        background: #fff;
                        color: #ffb200;
                        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);

                        &:hover {
                            background: rgba(255, 255, 255, 0.9);
                            transform: translateY(-3px);
                            box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
                            text-decoration: none;
                            color: #ff8c00;
                        }
                    }

                    .btn-hero-secondary {
                        background: transparent;
                        color: #fff;
                        border-color: rgba(255, 255, 255, 0.5);

                        &:hover {
                            background: rgba(255, 255, 255, 0.1);
                            border-color: #fff;
                            transform: translateY(-3px);
                            text-decoration: none;
                            color: #fff;
                        }
                    }
                }
            }

            .hero-visual {
                position: relative;
                height: 100%;
                display: flex;
                align-items: flex-end;
                justify-content: flex-end;
                padding-right: 0;

                @media (max-width: 992px) {
                    justify-content: center;
                }

                @media (max-width: 768px) {
                    position: relative;
                    width: 100%;
                    height: 100%;
                    align-items: center;
                    justify-content: center;
                    display: flex !important;
                    visibility: visible !important;
                    opacity: 1 !important;
                }

                @media (max-width: 576px) {
                    width: 100%;
                    height: 100%;
                }

                @media (max-width: 480px) {
                    width: 100%;
                    height: 100%;
                }

                @media (max-width: 360px) {
                    width: 100%;
                    height: 100%;
                }

                .hero-image-container {
                    position: relative;
                    width: 100%;
                    max-width: 450px;
                    height: 100%;
                    display: flex;
                    align-items: flex-end;
                    justify-content: flex-end;
                    overflow: visible;

                    @media (max-width: 1200px) {
                        max-width: 400px;
                    }

                    @media (max-width: 992px) {
                        max-width: 350px;
                        justify-content: center;
                    }

                    @media (max-width: 768px) {
                        width: 100%;
                        max-width: none;
                        height: 100%;
                        align-items: center;
                        justify-content: center;
                        display: flex !important;
                        visibility: visible !important;
                        opacity: 1 !important;
                    }

                    @media (max-width: 576px) {
                        width: 100%;
                    }

                    @media (max-width: 480px) {
                        width: 100%;
                    }

                    @media (max-width: 360px) {
                        width: 100%;
                    }

                    .hero-image {
                        width: 100%;
                        height: auto;
                        max-height: 100%;
                        scale: 2.3;
                        margin-bottom: -30px;
                        object-fit: contain;
                        object-position: bottom center;
                        animation: float 6s ease-in-out infinite;
                        z-index: 2;
                        position: relative;

                        @media (max-width: 768px) {
                            width: 100%;
                            scale: 1.5;
                            margin-bottom: 0;
                            object-position: center;
                            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
                            display: block !important;
                            visibility: visible !important;
                            opacity: 0.3 !important;
                        }

                        @media (max-width: 576px) {
                            scale: 1.3;
                            opacity: 0.25 !important;
                        }

                        @media (max-width: 480px) {
                            scale: 1.2;
                            opacity: 0.2 !important;
                        }

                        @media (max-width: 360px) {
                            scale: 1.1;
                            opacity: 0.15 !important;
                        }
                    }

                    .floating-cards {
                        position: absolute;
                        top: 0;
                        left: 0;
                        right: 0;
                        bottom: 0;
                        z-index: 3;

                        .floating-card {
                            position: absolute;
                            background: rgba(255, 255, 255, 0.95);
                            backdrop-filter: blur(10px);
                            border-radius: 14px;
                            padding: 14px 18px;
                            display: flex;
                            align-items: center;
                            gap: 10px;
                            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
                            border: 1px solid rgba(255, 255, 255, 0.3);
                            animation: cardFloat 4s ease-in-out infinite;
                            white-space: nowrap;

                            @media (max-width: 1200px) {
                                padding: 12px 16px;
                                border-radius: 12px;
                            }

                            @media (max-width: 768px) {
                                padding: 10px 14px;
                                border-radius: 10px;
                            }

                            @media (max-width: 480px) {
                                padding: 8px 12px;
                                border-radius: 8px;
                            }

                            i {
                                color: #ffb200;
                                font-size: 1.2rem;

                                @media (max-width: 1200px) {
                                    font-size: 1.1rem;
                                }

                                @media (max-width: 768px) {
                                    font-size: 1rem;
                                }

                                @media (max-width: 480px) {
                                    font-size: 0.9rem;
                                }
                            }

                            span {
                                font-weight: 600;
                                color: #333;
                                font-size: 1rem;

                                @media (max-width: 1200px) {
                                    font-size: 0.95rem;
                                }

                                @media (max-width: 768px) {
                                    font-size: 0.85rem;
                                }

                                @media (max-width: 480px) {
                                    font-size: 0.8rem;
                                }
                            }

                            &.card-1 {
                                top: 35%;
                                left: -35%;
                                animation-delay: 0s;

                                @media (max-width: 1200px) {
                                    top: 18%;
                                    left: -12%;
                                }

                                @media (max-width: 768px) {
                                    top: 10%;
                                    left: -8%;
                                }

                                @media (max-width: 480px) {
                                    top: 8%;
                                    left: -5%;
                                }
                            }

                            &.card-2 {
                                top: 90%;
                                right: -8%;
                                animation-delay: 1s;

                                @media (max-width: 1200px) {
                                    top: 52%;
                                    right: -15%;
                                }

                                @media (max-width: 768px) {
                                    top: 50%;
                                    right: -12%;
                                }

                                @media (max-width: 480px) {
                                    top: 45%;
                                    right: -8%;
                                }
                            }

                            &.card-3 {
                                bottom: 5%;
                                left: 8%;
                                animation-delay: 2s;

                                @media (max-width: 1200px) {
                                    bottom: 18%;
                                    left: 10%;
                                }

                                @media (max-width: 768px) {
                                    bottom: 12%;
                                    left: 5%;
                                }

                                @media (max-width: 480px) {
                                    bottom: 10%;
                                    left: 3%;
                                }
                            }
                        }
                    }
                }
            }

            .hero-controls {
                position: absolute;
                bottom: 30px;
                right: 30px;
                z-index: 4;
                display: flex;
                gap: 12px;
                pointer-events: none;

                @media (max-width: 768px) {
                    bottom: 20px;
                    right: 20px;
                    gap: 10px;
                }

                @media (max-width: 480px) {
                    bottom: 15px;
                    right: 15px;
                    gap: 8px;
                }

                .hero-nav {
                    width: 50px;
                    height: 50px;
                    background: rgba(255, 255, 255, 0.95);
                    backdrop-filter: blur(15px);
                    border: 2px solid rgba(255, 178, 0, 0.3);
                    border-radius: 50%;
                    color: #ffb200;
                    cursor: pointer;
                    transition: all 0.3s ease;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    pointer-events: auto;
                    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

                    @media (max-width: 768px) {
                        width: 45px;
                        height: 45px;
                    }

                    @media (max-width: 480px) {
                        width: 40px;
                        height: 40px;
                    }

                    &:hover {
                        background: #ffb200;
                        color: white;
                        border-color: #ffb200;
                        transform: translateY(-2px);
                        box-shadow: 0 12px 35px rgba(255, 178, 0, 0.3);
                    }

                    i {
                        font-size: 16px;

                        @media (max-width: 768px) {
                            font-size: 14px;
                        }

                        @media (max-width: 480px) {
                            font-size: 12px;
                        }
                    }
                }
            }

            .hero-indicators {
                position: absolute;
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%);
                display: flex;
                gap: 8px;
                z-index: 4;

                @media (max-width: 992px) {
                    bottom: 18px;
                    gap: 7px;
                }

                @media (max-width: 768px) {
                    bottom: 15px;
                    gap: 6px;
                }

                @media (max-width: 576px) {
                    bottom: 12px;
                    gap: 5px;
                }

                @media (max-width: 480px) {
                    bottom: 10px;
                    gap: 4px;
                }

                @media (max-width: 360px) {
                    bottom: 8px;
                    gap: 3px;
                }

                .indicator {
                    width: 12px;
                    height: 12px;
                    border-radius: 50%;
                    background: rgba(255, 255, 255, 0.5);
                    border: none;
                    cursor: pointer;
                    transition: all 0.3s ease;

                    @media (max-width: 768px) {
                        width: 10px;
                        height: 10px;
                    }

                    @media (max-width: 480px) {
                        width: 8px;
                        height: 8px;
                    }

                    &.active {
                        background: #fff;
                        transform: scale(1.2);
                    }

                    &:hover {
                        background: rgba(255, 255, 255, 0.8);
                    }
                }
            }

            .hero-progress {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                height: 4px;
                background: rgba(255, 255, 255, 0.2);
                z-index: 4;

                .progress-bar {
                    height: 100%;
                    background: #fff;
                    width: 0%;
                    transition: width 0.1s linear;
                }
            }
        }

        /* Animations */
        @keyframes float {

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

            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes cardFloat {

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

            50% {
                transform: translateY(-12px) rotate(2deg);
            }
        }

        /* Common Section Header Styles - Applied to all sections */
        .posts-header,
        .section-header,
        .showcase-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto 50px auto;
            position: relative;
            z-index: 2;

            @media (max-width: 992px) {
                flex-direction: column;
                align-items: flex-start;
                gap: 30px;
                margin-bottom: 40px;
            }

            @media (max-width: 768px) {
                gap: 20px;
                margin-bottom: 30px;
                padding: 0 10px;
            }
        }

        /* Override for posts-header to maintain row layout on mobile */
        .posts-header {
            @media (max-width: 992px) {
                flex-direction: row !important;
                align-items: center !important;
                justify-content: space-between !important;
                gap: 20px !important;
            }

            @media (max-width: 768px) {
                gap: 15px !important;
                align-items: center !important;
                padding: 0 10px;
                min-height: 60px;
            }

            @media (max-width: 480px) {
                gap: 10px !important;
                padding: 0 5px;
                min-height: 50px;
            }

            .header-content {
                flex: 1;
                min-width: 0;
                /* Allow text to shrink */

                @media (max-width: 768px) {
                    flex: 1;
                    max-width: calc(100% - 140px);
                    /* Reserve space for actions */
                }

                @media (max-width: 480px) {
                    max-width: calc(100% - 120px);
                }

                .header-text {
                    min-width: 0;
                    /* Allow text to shrink */

                    .section-title {
                        @media (max-width: 768px) {
                            white-space: nowrap;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            max-width: 100%;
                        }
                    }

                    .section-subtitle {
                        @media (max-width: 768px) {
                            white-space: nowrap;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            max-width: 100%;
                        }
                    }
                }
            }

            .header-actions {
                flex-shrink: 0;
                /* Prevent actions from shrinking */

                @media (max-width: 768px) {
                    width: auto !important;
                    justify-content: flex-end !important;
                    margin-left: auto !important;
                }

                .view-all-btn {
                    @media (max-width: 768px) {
                        min-width: 0;
                        flex-shrink: 1;

                        span {
                            white-space: nowrap;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            max-width: 80px;
                        }
                    }

                    @media (max-width: 480px) {
                        span {
                            max-width: 60px;
                        }
                    }
                }

                .carousel-navigation {
                    flex-shrink: 0;
                    /* Keep navigation buttons fixed size */
                }
            }
        }

        /* Modern Posts Section */
        .modern-posts-section {
            margin: 60px 0;
            position: relative;

            @media (max-width: 768px) {
                margin: 40px 0;
            }

            .posts-header {
                .header-content {
                    display: flex;
                    align-items: center;
                    gap: 20px;
                    height: 100%;

                    @media (max-width: 768px) {
                        gap: 12px;
                    }

                    @media (max-width: 480px) {
                        gap: 8px;
                    }

                    .header-icon {
                        width: 60px;
                        height: 60px;
                        background: linear-gradient(135deg, #ffb200, #ff8c00);
                        border-radius: 16px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        color: white;
                        font-size: 24px;
                        box-shadow: 0 8px 25px rgba(255, 178, 0, 0.3);

                        @media (max-width: 768px) {
                            width: 40px;
                            height: 40px;
                            font-size: 16px;
                            border-radius: 12px;
                        }

                        @media (max-width: 480px) {
                            width: 36px;
                            height: 36px;
                            font-size: 14px;
                            border-radius: 10px;
                        }
                    }

                    .header-text {
                        .section-title {
                            font-size: 32px;
                            font-weight: 700;
                            color: #1a1a1a;
                            margin: 0 0 5px 0;

                            @media (max-width: 992px) {
                                font-size: 28px;
                            }

                            @media (max-width: 768px) {
                                font-size: 18px;
                                margin: 0 0 2px 0;
                            }

                            @media (max-width: 480px) {
                                font-size: 16px;
                                margin: 0;
                            }
                        }

                        .section-subtitle {
                            font-size: 16px;
                            color: #666;
                            margin: 0;

                            @media (max-width: 768px) {
                                font-size: 12px;
                            }

                            @media (max-width: 480px) {
                                font-size: 11px;
                                display: none;
                                /* Hide subtitle on very small screens */
                            }
                        }
                    }
                }

                .header-actions {
                    display: flex;
                    align-items: center;
                    gap: 20px;
                    height: 100%;

                    @media (max-width: 992px) {
                        width: 100%;
                        justify-content: space-between;
                    }

                    @media (max-width: 768px) {
                        gap: 12px;
                        /* Keep flex-direction: row for horizontal layout */
                        flex-direction: row;
                        justify-content: flex-end;
                        margin-left: auto;
                    }

                    @media (max-width: 480px) {
                        gap: 8px;
                    }

                    .view-all-btn {
                        display: flex;
                        align-items: center;
                        gap: 8px;
                        padding: 12px 20px;
                        background: linear-gradient(135deg, #ffb200, #ff8c00);
                        color: white;
                        text-decoration: none;
                        border-radius: 25px;
                        font-weight: 600;
                        font-size: 14px;
                        transition: all 0.3s ease;
                        box-shadow: 0 4px 15px rgba(255, 178, 0, 0.3);
                        white-space: nowrap;

                        @media (max-width: 768px) {
                            padding: 8px 14px;
                            font-size: 12px;
                            border-radius: 20px;
                            gap: 6px;
                        }

                        @media (max-width: 480px) {
                            padding: 6px 12px;
                            font-size: 11px;
                            border-radius: 18px;
                            gap: 4px;
                        }

                        &:hover {
                            transform: translateY(-2px);
                            box-shadow: 0 8px 25px rgba(255, 178, 0, 0.4);
                            text-decoration: none;
                            color: white;

                            i {
                                transform: translateX(3px);
                            }
                        }

                        i {
                            font-size: 12px;
                            transition: transform 0.3s ease;

                            @media (max-width: 768px) {
                                font-size: 10px;
                            }

                            @media (max-width: 480px) {
                                font-size: 9px;
                            }
                        }
                    }

                    .carousel-navigation {
                        display: flex;
                        gap: 8px;

                        @media (max-width: 768px) {
                            gap: 6px;
                        }

                        @media (max-width: 480px) {
                            gap: 4px;
                        }

                        .nav-btn {
                            width: 40px;
                            height: 40px;
                            border: 2px solid #e0e0e0;
                            border-radius: 50%;
                            background: white;
                            color: #666;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            cursor: pointer;
                            transition: all 0.3s ease;
                            font-size: 14px;

                            @media (max-width: 768px) {
                                width: 32px;
                                height: 32px;
                                font-size: 11px;
                                border-width: 1.5px;
                            }

                            @media (max-width: 480px) {
                                width: 28px;
                                height: 28px;
                                font-size: 10px;
                                border-width: 1px;
                            }

                            &:hover {
                                border-color: #ffb200;
                                color: #ffb200;
                                background: rgba(255, 178, 0, 0.1);
                                transform: scale(1.05);
                            }

                            &:disabled {
                                opacity: 0.5;
                                cursor: not-allowed;

                                &:hover {
                                    border-color: #e0e0e0;
                                    color: #666;
                                    background: white;
                                    transform: none;
                                }
                            }
                        }
                    }

                    .filter-tabs {
                        display: flex;
                        background: rgba(255, 255, 255, 0.8);
                        border-radius: 12px;
                        padding: 4px;
                        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
                        backdrop-filter: blur(10px);

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

                        .filter-tab {
                            display: flex;
                            align-items: center;
                            gap: 6px;
                            padding: 10px 16px;
                            border: none;
                            background: transparent;
                            border-radius: 8px;
                            font-weight: 500;
                            font-size: 14px;
                            color: #666;
                            cursor: pointer;
                            transition: all 0.3s ease;
                            white-space: nowrap;

                            @media (max-width: 768px) {
                                flex: 1;
                                justify-content: center;
                                padding: 8px 12px;
                                font-size: 13px;
                            }

                            i {
                                font-size: 12px;
                            }

                            &.active {
                                background: linear-gradient(135deg, #ffb200, #ff8c00);
                                color: white;
                                box-shadow: 0 4px 15px rgba(255, 178, 0, 0.3);
                            }

                            &:hover:not(.active) {
                                background: rgba(255, 178, 0, 0.1);
                                color: #ffb200;
                            }
                        }
                    }

                    .view-more-btn {
                        background: linear-gradient(135deg, #333, #555);
                        color: white;
                        border: none;
                        padding: 12px 20px;
                        border-radius: 10px;
                        font-weight: 600;
                        font-size: 14px;
                        display: flex;
                        align-items: center;
                        gap: 8px;
                        cursor: pointer;
                        transition: all 0.3s ease;
                        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

                        @media (max-width: 768px) {
                            width: 100%;
                            justify-content: center;
                        }

                        &:hover {
                            transform: translateY(-2px);
                            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

                            i {
                                transform: translateX(3px);
                            }
                        }

                        i {
                            transition: transform 0.3s ease;
                        }
                    }
                }
            }

            .posts-carousel-container {
                position: relative;
                padding: 0 15px;

                @media (max-width: 768px) {
                    padding: 0 10px;
                }

                .posts-carousel {
                    display: flex;
                    gap: 5px;
                    overflow-x: auto;
                    scroll-behavior: smooth;
                    padding-bottom: 10px;
                    scrollbar-width: none;
                    -ms-overflow-style: none;

                    &::-webkit-scrollbar {
                        display: none;
                    }

                    @media (max-width: 768px) {
                        gap: 15px;
                    }

                    .post-card {
                        flex: 0 0 280px;
                        background: white;
                        border-radius: 20px;
                        overflow: hidden;
                        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
                        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                        cursor: pointer;
                        position: relative;
                        border: 1px solid rgba(255, 255, 255, 0.8);

                        @media (max-width: 768px) {
                            flex: 0 0 250px;
                        }

                        @media (max-width: 480px) {
                            flex: 0 0 220px;
                        }

                        &:hover {
                            transform: translateY(-12px) scale(1.02);
                            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
                            border-color: rgba(255, 178, 0, 0.3);

                            .post-image img {
                                transform: scale(1.08);
                            }

                            .post-overlay {
                                opacity: 1;
                            }

                            .post-badge {
                                transform: scale(1.1) rotate(2deg);
                            }

                            .post-content {
                                background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
                            }
                        }

                        &.featured {
                            border: 2px solid rgba(255, 178, 0, 0.4);
                            background: linear-gradient(135deg, rgba(255, 178, 0, 0.02), rgba(255, 140, 0, 0.01));

                            &:hover {
                                border-color: rgba(255, 178, 0, 0.8);
                                box-shadow: 0 25px 80px rgba(255, 178, 0, 0.25);
                            }
                        }

                        &.trending {
                            border: 2px solid rgba(255, 107, 107, 0.4);
                            background: linear-gradient(135deg, rgba(255, 107, 107, 0.02), rgba(238, 90, 36, 0.01));

                            &:hover {
                                border-color: rgba(255, 107, 107, 0.8);
                                box-shadow: 0 25px 80px rgba(255, 107, 107, 0.25);
                            }
                        }

                        .post-image {
                            position: relative;
                            height: 160px;
                            overflow: hidden;

                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                transition: transform 0.6s ease;
                            }

                            .post-overlay {
                                position: absolute;
                                top: 0;
                                left: 0;
                                right: 0;
                                bottom: 0;
                                background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
                                opacity: 0;
                                transition: all 0.3s ease;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                backdrop-filter: blur(4px);

                                .post-actions {
                                    display: flex;
                                    gap: 8px;

                                    .action-btn {
                                        display: flex;
                                        align-items: center;
                                        gap: 4px;
                                        padding: 6px 10px;
                                        background: rgba(255, 255, 255, 0.25);
                                        backdrop-filter: blur(15px);
                                        border: 1px solid rgba(255, 255, 255, 0.4);
                                        border-radius: 25px;
                                        color: white;
                                        font-size: 11px;
                                        font-weight: 600;
                                        cursor: pointer;
                                        transition: all 0.3s ease;
                                        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);

                                        &:hover {
                                            background: rgba(255, 255, 255, 0.4);
                                            transform: scale(1.1);
                                            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
                                        }

                                        &.like-btn:hover {
                                            background: rgba(255, 107, 107, 0.9);
                                            border-color: rgba(255, 107, 107, 0.6);
                                        }

                                        &.share-btn:hover {
                                            background: rgba(255, 178, 0, 0.9);
                                            border-color: rgba(255, 178, 0, 0.6);
                                        }

                                        i {
                                            font-size: 11px;
                                        }
                                    }
                                }
                            }

                            .post-badge {
                                position: absolute;
                                top: 10px;
                                right: 10px;
                                display: flex;
                                align-items: center;
                                gap: 3px;
                                padding: 4px 8px;
                                border-radius: 15px;
                                font-size: 9px;
                                font-weight: 700;
                                text-transform: uppercase;
                                letter-spacing: 0.8px;
                                transition: all 0.3s ease;
                                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);

                                &.featured {
                                    background: linear-gradient(135deg, #ffb200, #ff8c00);
                                    color: white;
                                }

                                &.trending {
                                    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
                                    color: white;
                                }

                                i {
                                    font-size: 8px;
                                }
                            }
                        }

                        .post-content {
                            padding: 16px;
                            transition: all 0.3s ease;

                            @media (max-width: 768px) {
                                padding: 14px;
                            }

                            .post-meta {
                                display: flex;
                                justify-content: space-between;
                                align-items: center;
                                margin-bottom: 10px;

                                .creator-info {
                                    display: flex;
                                    align-items: center;
                                    gap: 8px;

                                    .creator-avatar {
                                        width: 28px;
                                        height: 28px;
                                        border-radius: 50%;
                                        object-fit: cover;
                                        border: 2px solid rgba(255, 178, 0, 0.4);
                                        box-shadow: 0 2px 8px rgba(255, 178, 0, 0.2);
                                    }

                                    .creator-details {
                                        display: flex;
                                        flex-direction: column;

                                        .creator-name {
                                            font-size: 12px;
                                            font-weight: 700;
                                            color: #333;
                                            line-height: 1;
                                        }

                                        .post-time {
                                            font-size: 10px;
                                            color: #999;
                                            line-height: 1;
                                            margin-top: 1px;
                                        }
                                    }
                                }

                                .post-stats {
                                    .stat-item {
                                        display: flex;
                                        align-items: center;
                                        gap: 3px;
                                        font-size: 11px;
                                        color: #666;
                                        font-weight: 600;

                                        i {
                                            font-size: 10px;
                                            color: #ffb200;
                                        }
                                    }
                                }
                            }

                            .post-title {
                                font-size: 15px;
                                font-weight: 700;
                                color: #1a1a1a;
                                margin: 0 0 6px 0;
                                line-height: 1.25;
                                display: -webkit-box;
                                -webkit-line-clamp: 2;
                                -webkit-box-orient: vertical;
                                overflow: hidden;

                                @media (max-width: 768px) {
                                    font-size: 14px;
                                }
                            }

                            .post-excerpt {
                                font-size: 12px;
                                color: #666;
                                line-height: 1.35;
                                margin: 0 0 8px 0;
                                display: -webkit-box;
                                -webkit-line-clamp: 2;
                                -webkit-box-orient: vertical;
                                overflow: hidden;

                                @media (max-width: 768px) {
                                    font-size: 11px;
                                }
                            }

                            .post-tags {
                                display: flex;
                                gap: 4px;
                                flex-wrap: wrap;

                                .tag {
                                    padding: 3px 6px;
                                    background: linear-gradient(135deg, rgba(255, 178, 0, 0.15), rgba(255, 140, 0, 0.1));
                                    color: #ffb200;
                                    border: 1px solid rgba(255, 178, 0, 0.2);
                                    border-radius: 10px;
                                    font-size: 9px;
                                    font-weight: 700;
                                    text-transform: uppercase;
                                    letter-spacing: 0.8px;
                                    transition: all 0.3s ease;

                                    &:hover {
                                        background: linear-gradient(135deg, rgba(255, 178, 0, 0.25), rgba(255, 140, 0, 0.2));
                                        border-color: rgba(255, 178, 0, 0.4);
                                        transform: scale(1.05);
                                    }
                                }
                            }
                        }
                    }
                }

                /* Posts Carousel Navigation */
                .carousel-navigation {
                    position: absolute;
                    top: 50%;
                    left: 0;
                    right: 0;
                    transform: translateY(-50%);
                    display: flex;
                    justify-content: space-between;
                    padding: 0 -30px;
                    pointer-events: none;
                    z-index: 100;

                    .nav-btn {
                        width: 60px;
                        height: 60px;
                        background: #ffffff;
                        border: 3px solid #ffb200;
                        border-radius: 50%;
                        color: #ffb200;
                        cursor: pointer;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        pointer-events: auto;
                        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
                        font-size: 18px;
                        font-weight: bold;

                        &:hover {
                            background: #ffb200;
                            color: #ffffff;
                        }

                        &.prev-btn {
                            margin-left: -30px;
                        }

                        &.next-btn {
                            margin-right: -30px;
                        }
                    }

                    @media (max-width: 768px) {
                        display: none;
                    }
                }

            }

            /* Post Ripple Effect */
            .post-ripple {
                position: absolute;
                border-radius: 50%;
                background: rgba(255, 178, 0, 0.3);
                transform: scale(0);
                animation: post-ripple-effect 0.6s linear;
                pointer-events: none;
                z-index: 10;
            }

            @keyframes post-ripple-effect {
                to {
                    transform: scale(4);
                    opacity: 0;
                }
            }

            /* Premium lock pulse animation */
            @keyframes pulse-lock {

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

                50% {
                    transform: scale(1.1);
                    opacity: 0.8;
                }
            }

            /* Enhanced animations */
            .modern-posts-section .post-card {
                will-change: transform, opacity;
            }

            /* Loading skeleton for posts */
            .post-card-skeleton {
                background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
                background-size: 200% 100%;
                animation: loading-skeleton 1.5s infinite;
                border-radius: 16px;
                height: 400px;
            }

            /* Accessibility improvements */
            .modern-posts-section .post-card:focus {
                outline: 3px solid #ffb200;
                outline-offset: 2px;
            }

            .modern-posts-section .filter-tab:focus {
                outline: 2px solid #ffb200;
                outline-offset: 2px;
            }

            /* Reduced motion support */
            @media (prefers-reduced-motion: reduce) {
                .modern-posts-section .post-card {
                    transition: none !important;
                    animation: none !important;
                }

                .modern-posts-section .post-card:hover {
                    transform: none !important;
                }

                .post-ripple {
                    display: none;
                }
            }

            /* Touch device optimizations */
            @media (hover: none) and (pointer: coarse) {
                .modern-posts-section .post-card:hover {
                    transform: none;
                }

                .modern-posts-section .post-overlay {
                    opacity: 1;
                }
            }
        }
    }

    /* Modern Category Section */
    .modern-category-section {
        position: relative;
        overflow: hidden;

        &::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(255, 178, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 178, 0, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        @media (max-width: 768px) {
            padding: 60px 0;
        }

        .section-header {

            .section-title-wrapper {
                .section-title {
                    font-size: 42px;
                    font-weight: 700;
                    color: #1a1a1a;
                    margin: 0;
                    display: flex;
                    align-items: center;
                    gap: 15px;
                    position: relative;

                    @media (max-width: 992px) {
                        font-size: 36px;
                    }

                    @media (max-width: 768px) {
                        font-size: 28px;
                        gap: 10px;
                    }

                    .title-icon {
                        width: 50px;
                        height: 50px;
                        background: linear-gradient(135deg, #ffb200, #ff8c00);
                        border-radius: 15px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        color: white;
                        font-size: 20px;
                        box-shadow: 0 8px 25px rgba(255, 178, 0, 0.3);

                        @media (max-width: 768px) {
                            width: 40px;
                            height: 40px;
                            font-size: 16px;
                        }
                    }

                    .title-accent {
                        position: absolute;
                        bottom: -5px;
                        left: 65px;
                        width: 60px;
                        height: 4px;
                        background: linear-gradient(90deg, #ffb200, #ff8c00);
                        border-radius: 2px;

                        @media (max-width: 768px) {
                            left: 50px;
                            width: 40px;
                            height: 3px;
                        }
                    }
                }

                .section-subtitle {
                    font-size: 18px;
                    color: #666;
                    margin: 15px 0 0 65px;
                    font-weight: 400;

                    @media (max-width: 768px) {
                        font-size: 16px;
                        margin-left: 50px;
                    }
                }
            }

            .section-actions {
                .view-all-btn {
                    background: linear-gradient(135deg, #ffb200, #ff8c00);
                    color: white;
                    border: none;
                    padding: 12px 24px;
                    border-radius: 25px;
                    font-weight: 600;
                    font-size: 14px;
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    cursor: pointer;
                    transition: all 0.3s ease;
                    box-shadow: 0 4px 15px rgba(255, 178, 0, 0.3);

                    &:hover {
                        transform: translateY(-2px);
                        box-shadow: 0 8px 25px rgba(255, 178, 0, 0.4);

                        i {
                            transform: translateX(3px);
                        }
                    }

                    i {
                        transition: transform 0.3s ease;
                    }
                }
            }
        }

        .modern-category-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 130px);
            gap: 15px;
            position: relative;
            z-index: 2;

            @media (max-width: 1200px) {
                grid-template-rows: repeat(2, 120px);
                gap: 12px;
            }

            @media (max-width: 768px) {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, 110px);
                gap: 10px;
            }

            @media (max-width: 480px) {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(6, 100px);
                gap: 8px;
            }

            .category-card {
                position: relative;
                border-radius: 20px;
                text-decoration: none;
                transition: all 0.3s ease;
                cursor: pointer;
                background: #fff;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

                &.featured-card {
                    grid-row: span 2;

                    @media (max-width: 768px) {
                        grid-row: span 1;
                    }

                    .card-content {
                        padding: 20px;

                        @media (max-width: 768px) {
                            padding: 15px;
                        }

                        .card-text {
                            .card-title {
                                font-size: 18px;

                                @media (max-width: 768px) {
                                    font-size: 16px;
                                }
                            }

                            .card-stats {
                                display: block;
                                margin-top: 15px;

                                @media (max-width: 768px) {
                                    display: none;
                                }

                                .stat-item {
                                    display: flex;
                                    align-items: center;
                                    gap: 8px;
                                    font-size: 14px;
                                    color: rgba(255, 255, 255, 0.9);
                                    font-weight: 500;

                                    i {
                                        font-size: 12px;
                                    }
                                }
                            }
                        }
                    }
                }

                &:hover {
                    transform: translateY(-5px) scale(1.02);
                    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);

                    .gradient-overlay {
                        opacity: 0.9;
                    }

                    .card-arrow {
                        opacity: 1;
                        transform: translateX(3px);
                    }

                    .card-content {
                        transform: scale(1.05);
                    }

                    .card-hover-overlay {
                        opacity: 1;
                        transform: translateX(0);
                    }

                    .card-text .card-description {
                        opacity: 1;
                        transform: translateY(0);
                    }

                    .card-icon {
                        transform: scale(1.1) rotate(5deg);
                    }
                }

                .card-background {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    z-index: 1;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        transition: transform 0.3s ease;
                    }

                    .gradient-overlay {
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
                        transition: opacity 0.3s ease;
                        opacity: 0.8;
                    }
                }

                .card-hover-overlay {
                    position: absolute;
                    top: 0;
                    right: 0;
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(135deg, rgba(255, 178, 0, 0.8) 0%, rgba(255, 140, 0, 0.6) 100%);
                    opacity: 0;
                    transform: translateX(100%);
                    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                    z-index: 2;
                }

                .card-content {
                    position: relative;
                    z-index: 3;
                    height: 100%;
                    padding: 18px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    color: white;
                    transition: transform 0.3s ease;

                    @media (max-width: 768px) {
                        padding: 15px;
                    }

                    .card-icon {
                        width: 40px;
                        height: 40px;
                        background: rgba(255, 255, 255, 0.2);
                        backdrop-filter: blur(10px);
                        border-radius: 12px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        font-size: 16px;
                        color: white;
                        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                        border: 1px solid rgba(255, 255, 255, 0.1);
                        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

                        @media (max-width: 768px) {
                            width: 32px;
                            height: 32px;
                            font-size: 14px;
                        }
                    }

                    .card-text {
                        flex: 1;
                        margin: 8px 0;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;

                        .card-title {
                            font-size: 16px;
                            font-weight: 700;
                            margin: 0 0 4px 0;
                            color: white;
                            line-height: 1.2;

                            @media (max-width: 768px) {
                                font-size: 14px;
                                margin-bottom: 2px;
                            }
                        }

                        .card-description {
                            font-size: 12px;
                            color: rgba(255, 255, 255, 0.8);
                            margin: 0;
                            line-height: 1.3;
                            opacity: 0.7;
                            transform: translateY(10px);
                            transition: all 0.3s ease 0.1s;

                            @media (max-width: 768px) {
                                font-size: 10px;
                                display: none;
                            }
                        }

                        .card-stats {
                            display: none;
                        }
                    }

                    .card-badge {
                        position: absolute;
                        top: 12px;
                        right: 12px;
                        background: linear-gradient(135deg, #ffb200, #ff8c00);
                        color: white;
                        padding: 3px 8px;
                        border-radius: 12px;
                        font-size: 10px;
                        font-weight: 600;
                        text-transform: uppercase;
                        letter-spacing: 0.5px;

                        &.free {
                            background: linear-gradient(135deg, #00d4aa, #01a3a4);
                        }

                        @media (max-width: 768px) {
                            top: 10px;
                            right: 10px;
                            padding: 2px 6px;
                            font-size: 8px;
                        }
                    }

                    .card-arrow {
                        align-self: flex-end;
                        width: 28px;
                        height: 28px;
                        background: rgba(255, 255, 255, 0.2);
                        backdrop-filter: blur(10px);
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        font-size: 12px;
                        color: white;
                        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                        opacity: 0.7;
                        border: 1px solid rgba(255, 255, 255, 0.1);
                        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

                        @media (max-width: 768px) {
                            width: 24px;
                            height: 24px;
                            font-size: 10px;
                        }
                    }
                }



                /* Category-specific styling */
                &[data-category="popular"] {
                    .card-icon {
                        background: linear-gradient(135deg, #ff6b6b, #ee5a24);
                    }

                    .card-hover-overlay {
                        background: linear-gradient(135deg, rgba(255, 107, 107, 0.8) 0%, rgba(238, 90, 36, 0.6) 100%);
                    }
                }

                &[data-category="featured"] {
                    .card-icon {
                        background: linear-gradient(135deg, #ffb200, #ff8c00);
                    }

                    .card-hover-overlay {
                        background: linear-gradient(135deg, rgba(255, 178, 0, 0.8) 0%, rgba(255, 140, 0, 0.6) 100%);
                    }
                }

                &[data-category="active"] {
                    .card-icon {
                        background: linear-gradient(135deg, #9b59b6, #8e44ad);
                    }

                    .card-hover-overlay {
                        background: linear-gradient(135deg, rgba(155, 89, 182, 0.8) 0%, rgba(142, 68, 173, 0.6) 100%);
                    }
                }

                &[data-category="new"] {
                    .card-icon {
                        background: linear-gradient(135deg, #00d4aa, #01a3a4);
                    }

                    .card-hover-overlay {
                        background: linear-gradient(135deg, rgba(0, 212, 170, 0.8) 0%, rgba(1, 163, 164, 0.6) 100%);
                    }
                }

                &[data-category="free"] {
                    .card-icon {
                        background: linear-gradient(135deg, #3498db, #2980b9);
                    }

                    .card-hover-overlay {
                        background: linear-gradient(135deg, rgba(52, 152, 219, 0.8) 0%, rgba(41, 128, 185, 0.6) 100%);
                    }
                }

                &[data-category="others"] {
                    .card-icon {
                        background: linear-gradient(135deg, #95a5a6, #7f8c8d);
                    }

                    .card-hover-overlay {
                        background: linear-gradient(135deg, rgba(149, 165, 166, 0.8) 0%, rgba(127, 140, 141, 0.6) 100%);
                    }
                }
            }
        }
    }

    /* Animation keyframes */
    @keyframes cardFloat {

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

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

    @keyframes glowPulse {

        0%,
        100% {
            opacity: 0.5;
        }

        50% {
            opacity: 1;
        }
    }



    /* Scroll reveal animation */
    .modern-category-section .category-card {
        will-change: transform, opacity;
    }



    /* Loading skeleton for cards */
    .category-card-skeleton {
        background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
        background-size: 200% 100%;
        animation: loading-skeleton 1.5s infinite;
        border-radius: 20px;
        height: 200px;
    }

    @keyframes loading-skeleton {
        0% {
            background-position: 200% 0;
        }

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

    /* Accessibility improvements */
    .modern-category-section .category-card:focus {
        outline: 3px solid #ffb200;
        outline-offset: 2px;
    }

    .modern-category-section .category-card:focus-visible {
        outline: 3px solid #ffb200;
        outline-offset: 2px;
    }

    /* Reduced motion support */
    @media (prefers-reduced-motion: reduce) {
        .modern-category-section .category-card {
            transition: none !important;
            animation: none !important;
        }

        .modern-category-section .category-card:hover {
            transform: none !important;
        }

        .card-ripple {
            display: none;
        }
    }

    .live-sports {
        .live-sports-slider {
            margin: 0 -10px;
        }

        .slider-item {
            background-color: #fff;
            border-radius: 6px;
            padding: 10px 15px;
            margin: 0 10px;

            .title {
                display: flex;
                justify-content: space-between;

                span:first-child {
                    font-size: 15px;
                    color: #000;
                    font-weight: 600;
                }

                span:last-child {
                    background-color: rgba(14, 174, 94, 0.2);
                    color: var(--green-color);
                    padding: 0 8px;
                    border-radius: 3px;
                    display: flex;
                    justify-content: center;
                    align-items: center;

                    i {
                        font-size: 10px;
                        margin-right: 3px;
                    }
                }
            }

            .body {
                display: flex;
                justify-content: space-between;
                align-items: center;
                text-align: center;

                div {
                    margin-top: 20px;

                    svg {
                        fill: var(--text-color);
                        width: 50px;
                        height: 50px;
                    }

                    p {
                        font-weight: 600;
                        color: #000;
                    }

                    &.status {
                        p {
                            font-size: 24px;
                            font-weight: 700;
                            margin: 0;
                        }

                        span {
                            color: var(--text-color);
                        }
                    }
                }
            }

            .footer {
                ul {
                    display: grid;
                    grid-template-columns: repeat(4, 1fr);
                    gap: 10px;
                    justify-content: space-between;
                    row-gap: 10px;

                    li {
                        background-color: rgba(255, 92, 95, 0.25);

                        font-weight: 500;
                        color: #000;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        padding: 8px 3px;
                        border-radius: 8px;

                        span {
                            color: rgba(255, 92, 95, 1);
                            margin-left: 10px;
                        }

                        &:last-child {
                            background-color: #f2f2f2;
                        }
                    }
                }
            }
        }
    }

    /* Modern Creator Showcase */
    .modern-creator-showcase {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        position: relative;
        overflow: hidden;

        &::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 70%, rgba(255, 178, 0, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 178, 0, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        @media (max-width: 768px) {
            padding: 60px 0;
        }

        &.featured-showcase {
            background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);

            &::before {
                background: radial-gradient(circle at 30% 70%, rgba(255, 178, 0, 0.05) 0%, transparent 50%),
                    radial-gradient(circle at 70% 30%, rgba(255, 140, 0, 0.03) 0%, transparent 50%);
            }
        }

        .showcase-header {
            .header-content {
                display: flex;
                align-items: center;
                gap: 20px;
                height: 100%;

                @media (max-width: 768px) {
                    gap: 15px;
                }

                .header-icon {
                    width: 60px;
                    height: 60px;
                    background: linear-gradient(135deg, #ffb200, #ff8c00);
                    border-radius: 20px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: white;
                    font-size: 24px;
                    box-shadow: 0 8px 25px rgba(255, 178, 0, 0.3);

                    @media (max-width: 768px) {
                        width: 50px;
                        height: 50px;
                        font-size: 20px;
                        border-radius: 15px;
                    }
                }

                .header-text {
                    .section-title {
                        font-size: 36px;
                        font-weight: 700;
                        color: #1a1a1a;
                        margin: 0 0 8px 0;
                        line-height: 1.2;

                        @media (max-width: 992px) {
                            font-size: 32px;
                        }

                        @media (max-width: 768px) {
                            font-size: 28px;
                            margin-bottom: 6px;
                        }
                    }

                    .section-subtitle {
                        font-size: 16px;
                        color: #666;
                        margin: 0;
                        line-height: 1.4;

                        @media (max-width: 768px) {
                            font-size: 14px;
                        }
                    }
                }
            }

            .header-actions {
                display: flex;
                align-items: center;
                gap: 20px;
                height: 100%;

                @media (max-width: 992px) {
                    width: 100%;
                    justify-content: space-between;
                }

                @media (max-width: 768px) {
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 15px;
                    height: auto;
                }

                .view-controls {
                    display: flex;
                    background: rgba(255, 255, 255, 0.8);
                    border-radius: 12px;
                    padding: 4px;
                    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

                    .view-btn {
                        padding: 8px 12px;
                        border: none;
                        background: transparent;
                        border-radius: 8px;
                        color: #666;
                        cursor: pointer;
                        transition: all 0.3s ease;
                        font-size: 14px;

                        &.active {
                            background: #ffb200;
                            color: white;
                            box-shadow: 0 2px 8px rgba(255, 178, 0, 0.3);
                        }

                        &:hover:not(.active) {
                            background: rgba(255, 178, 0, 0.1);
                            color: #ffb200;
                        }
                    }
                }

                .filter-options {
                    display: flex;
                    gap: 8px;

                    .filter-btn {
                        padding: 8px 16px;
                        border: 2px solid rgba(255, 178, 0, 0.2);
                        background: transparent;
                        border-radius: 20px;
                        color: #666;
                        cursor: pointer;
                        transition: all 0.3s ease;
                        font-size: 14px;
                        font-weight: 500;

                        &.active {
                            background: #ffb200;
                            border-color: #ffb200;
                            color: white;
                            box-shadow: 0 4px 15px rgba(255, 178, 0, 0.3);
                        }

                        &:hover:not(.active) {
                            border-color: rgba(255, 178, 0, 0.5);
                            background: rgba(255, 178, 0, 0.05);
                            color: #ffb200;
                        }
                    }
                }

                .view-all-btn {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    padding: 12px 20px;
                    background: linear-gradient(135deg, #ffb200, #ff8c00) !;
                    color: white;
                    text-decoration: none;
                    border-radius: 25px;
                    font-weight: 600;
                    font-size: 14px;
                    transition: all 0.3s ease;
                    box-shadow: 0 4px 15px rgba(255, 178, 0, 0.3);

                    @media (max-width: 768px) {
                        padding: 10px 16px;
                        font-size: 13px;
                    }

                    &:hover {
                        transform: translateY(-2px);
                        box-shadow: 0 8px 25px rgba(255, 178, 0, 0.4);
                        text-decoration: none;
                        color: white;

                        i {
                            transform: translateX(3px);
                        }
                    }

                    i {
                        font-size: 12px;
                        transition: transform 0.3s ease;
                    }
                }
            }
        }

        .creators-carousel-container {
            position: relative;
            margin: 0 -20px;


            @media (max-width: 768px) {
                margin: 0 -10px;
            }

            @media (max-width: 480px) {
                margin: 0 -5px;
            }

            .creators-carousel {
                display: flex;
                gap: 5px;
                overflow-x: auto;
                scroll-behavior: smooth;
                padding: 20px;
                height: 100%;
                scrollbar-width: none;
                -ms-overflow-style: none;

                &::-webkit-scrollbar {
                    display: none;
                }

                @media (max-width: 768px) {
                    gap: 20px;
                    padding: 10px;
                }

                .creator-card {
                    flex: 0 0 180px;
                    background: white;
                    border-radius: 20px;
                    overflow: hidden;
                    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
                    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                    cursor: pointer;
                    position: relative;
                    border: 1px solid rgba(255, 255, 255, 0.8);

                    @media (max-width: 768px) {
                        flex: 0 0 250px;
                    }

                    @media (max-width: 480px) {
                        flex: 0 0 220px;
                    }

                    &:hover {
                        transform: translateY(-15px) scale(1.02);
                        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
                        border-color: rgba(255, 178, 0, 0.3);

                        .creator-image img {
                            transform: scale(1.1);
                        }

                        .creator-overlay {
                            opacity: 1;
                        }

                        .creator-badge {
                            transform: scale(1.1) rotate(3deg);
                        }

                        .creator-info {
                            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
                        }
                    }

                    &.featured {
                        border: 2px solid rgba(255, 178, 0, 0.4);
                        background: linear-gradient(135deg, rgba(255, 178, 0, 0.02), rgba(255, 140, 0, 0.01));

                        &:hover {
                            border-color: rgba(255, 178, 0, 0.8);
                            box-shadow: 0 30px 80px rgba(255, 178, 0, 0.2);
                        }
                    }

                    &.trending {
                        border: 2px solid rgba(255, 107, 107, 0.4);
                        background: linear-gradient(135deg, rgba(255, 107, 107, 0.02), rgba(238, 90, 36, 0.01));

                        &:hover {
                            border-color: rgba(255, 107, 107, 0.8);
                            box-shadow: 0 30px 80px rgba(255, 107, 107, 0.2);
                        }
                    }

                    &.premium {
                        border: 2px solid rgba(147, 51, 234, 0.4);
                        background: linear-gradient(135deg, rgba(147, 51, 234, 0.02), rgba(126, 34, 206, 0.01));

                        &:hover {
                            border-color: rgba(147, 51, 234, 0.8);
                            box-shadow: 0 30px 80px rgba(147, 51, 234, 0.2);
                        }
                    }

                    .creator-image {
                        position: relative;
                        overflow: hidden;

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            transition: transform 0.4s ease;
                        }

                        .creator-overlay {
                            position: absolute;
                            top: 0;
                            left: 0;
                            right: 0;
                            bottom: 0;
                            background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
                            opacity: 0;
                            transition: all 0.3s ease;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            backdrop-filter: blur(4px);

                            .creator-actions {
                                display: flex;
                                gap: 10px;
                                flex-direction: column;

                                .action-btn {
                                    display: flex;
                                    align-items: center;
                                    gap: 6px;
                                    padding: 8px 12px;
                                    background: rgba(255, 255, 255, 0.25);
                                    backdrop-filter: blur(15px);
                                    border: 1px solid rgba(255, 255, 255, 0.4);
                                    border-radius: 25px;
                                    color: white;
                                    font-size: 12px;
                                    font-weight: 600;
                                    cursor: pointer;
                                    transition: all 0.3s ease;
                                    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
                                    text-decoration: none;

                                    &:hover {
                                        background: rgba(255, 255, 255, 0.4);
                                        transform: scale(1.05);
                                        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
                                    }

                                    &.follow-btn:hover {
                                        background: rgba(34, 197, 94, 0.9);
                                        border-color: rgba(34, 197, 94, 0.6);
                                    }

                                    &.view-btn:hover {
                                        background: rgba(59, 130, 246, 0.9);
                                        border-color: rgba(59, 130, 246, 0.6);
                                    }

                                    &.support-btn:hover {
                                        background: rgba(255, 107, 107, 0.9);
                                        border-color: rgba(255, 107, 107, 0.6);
                                    }

                                    i {
                                        font-size: 11px;
                                    }
                                }
                            }
                        }

                        .creator-badge {
                            position: absolute;
                            top: 12px;
                            right: 12px;
                            display: flex;
                            align-items: center;
                            gap: 4px;
                            padding: 6px 10px;
                            border-radius: 15px;
                            font-size: 10px;
                            font-weight: 700;
                            text-transform: uppercase;
                            letter-spacing: 0.8px;
                            transition: all 0.3s ease;
                            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

                            &.new {
                                background: linear-gradient(135deg, #34d399, #10b981);
                                color: white;
                            }

                            &.trending {
                                background: linear-gradient(135deg, #ff6b6b, #ee5a24);
                                color: white;
                            }

                            &.featured {
                                background: linear-gradient(135deg, #ffb200, #ff8c00);
                                color: white;
                            }

                            &.premium {
                                background: linear-gradient(135deg, #9333ea, #7e22ce);
                                color: white;
                            }

                            i {
                                font-size: 9px;
                            }
                        }

                        .live-indicator {
                            position: absolute;
                            top: 12px;
                            left: 12px;
                            display: flex;
                            align-items: center;
                            gap: 6px;
                            padding: 4px 8px;
                            background: rgba(239, 68, 68, 0.9);
                            color: white;
                            border-radius: 12px;
                            font-size: 10px;
                            font-weight: 600;
                            text-transform: uppercase;
                            letter-spacing: 0.5px;

                            .pulse {
                                width: 6px;
                                height: 6px;
                                background: white;
                                border-radius: 50%;
                                animation: pulse 2s infinite;
                            }
                        }
                    }

                    .creator-info {
                        padding: 20px;
                        transition: all 0.3s ease;

                        @media (max-width: 768px) {
                            padding: 16px;
                        }

                        .creator-meta {
                            margin-bottom: 12px;

                            .creator-name {
                                font-size: 16px;
                                font-weight: 700;
                                color: #1a1a1a;
                                margin: 0 0 4px 0;
                                line-height: 1.3;
                            }

                            .creator-category {
                                font-size: 13px;
                                color: #666;
                                margin: 0;
                                font-weight: 500;
                            }
                        }

                        .creator-stats {
                            display: flex;
                            gap: 15px;

                            .stat-item {
                                display: flex;
                                align-items: center;
                                gap: 4px;
                                font-size: 12px;
                                color: #666;
                                font-weight: 600;

                                i {
                                    font-size: 11px;
                                    color: #ffb200;
                                }
                            }
                        }
                    }
                }
            }

            /* Creator Showcase Carousel Navigation */
            .carousel-navigation {
                position: absolute;
                top: 50%;
                left: 0;
                right: 0;
                transform: translateY(-50%);
                display: flex;
                justify-content: space-between;
                padding: 0 -25px;
                pointer-events: none;
                z-index: 100;

                .nav-btn {
                    width: 55px;
                    height: 55px;
                    background: #ffffff;
                    border: 3px solid #ffb200;
                    border-radius: 50%;
                    color: #ffb200;
                    cursor: pointer;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    pointer-events: auto;
                    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
                    font-size: 16px;
                    font-weight: bold;

                    &:hover {
                        background: #ffb200;
                        color: #ffffff;
                    }

                    &.prev-btn {
                        margin-left: -25px;
                    }

                    &.next-btn {
                        margin-right: -25px;
                    }
                }

                @media (max-width: 768px) {
                    display: none;
                }
            }

        }
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.5;
        }
    }

    /* Creator Ripple Effect */
    .creator-ripple {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 178, 0, 0.3);
        transform: scale(0);
        animation: creator-ripple-effect 0.6s linear;
        pointer-events: none;
        z-index: 10;
    }

    @keyframes creator-ripple-effect {
        to {
            transform: scale(4);
            opacity: 0;
        }
    }

    /* Enhanced animations */
    .modern-creator-showcase .creator-card {
        will-change: transform, opacity;
    }

    /* Accessibility improvements */
    .modern-creator-showcase .creator-card:focus {
        outline: 3px solid #ffb200;
        outline-offset: 2px;
    }

    .modern-creator-showcase .filter-btn:focus,
    .modern-creator-showcase .view-btn:focus {
        outline: 2px solid #ffb200;
        outline-offset: 2px;
    }

    /* Reduced motion support */
    @media (prefers-reduced-motion: reduce) {
        .modern-creator-showcase .creator-card {
            transition: none !important;
            animation: none !important;
        }

        .modern-creator-showcase .creator-card:hover {
            transform: none !important;
        }

        .creator-ripple {
            display: none;
        }

        .pulse {
            animation: none !important;
        }
    }

    /* Touch device optimizations */
    @media (hover: none) and (pointer: coarse) {
        .modern-creator-showcase .creator-card:hover {
            transform: none;
        }

        .modern-creator-showcase .creator-overlay {
            opacity: 1;
        }
    }

    .draw {
        .draw-slider {
            margin: 0 -5px;

            .slider-item {
                position: relative;
                padding: 15px;
                border-radius: 8px;
                margin: 0 5px;
                overflow: hidden;
                background: linear-gradient(rgba(244, 62, 139, 0) 0%,
                        rgba(244, 62, 139, 0.6) 100%),
                    rgb(255, 255, 255);

                &.gradient-1 {
                    background: var(--bg-gradient-1);
                }

                &.gradient-2 {
                    background: var(--bg-gradient-2);
                }

                &.gradient-3 {
                    background: var(--bg-gradient-3);
                }

                span {
                    font-weight: 600;
                }

                .flag {
                    position: absolute;
                    top: -20px;
                    right: -20px;
                    border: 6px solid #f4f4f4;
                    width: 80px;
                    height: 80px;
                    border-radius: 50%;

                    img {
                        width: 100%;
                        height: 100%;
                    }
                }

                >p {
                    font-size: 20px;
                    font-weight: 700;
                    margin-top: 6px;
                    border-bottom: 1px solid rgba(221, 221, 221, 0.548);
                    margin-bottom: 0;
                }

                small {
                    display: inline-block;
                    color: var(--text-color);
                }

                a {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-weight: 700;
                    width: 100%;
                    height: 32px;
                    margin-top: 10px;
                    background-image: linear-gradient(90deg,
                            rgb(30, 242, 136),
                            rgb(158, 235, 110));
                    color: #000;
                    border-radius: 8px;
                    box-shadow: rgba(35, 238, 136, 0.3) 0px 0px 12px,
                        rgb(29, 202, 106) 0px -2px inset;

                    &:hover {
                        background-image: linear-gradient(90deg,
                                rgb(19, 238, 128),
                                rgb(144, 213, 101));
                    }
                }

                .time {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    margin-top: 5px;

                    p {
                        padding: 2px 8px;
                        color: #000;
                        background-color: rgba(0, 0, 0, 0.15);
                        width: 30%;
                        text-align: center;
                        border-radius: 5px;
                        margin: 0;
                    }
                }
            }
        }
    }

    .bonus {
        padding-top: 30px;

        .bonus-content {
            background-color: #fff;
            padding: 30px 20px;
            border-radius: 10px;

            h2 {
                font-size: 26px;
                font-weight: 700;

                span {
                    color: var(--green-color);
                }
            }

            .brands {
                display: flex;

                img {
                    max-width: 56px;
                    margin: 0 6px;
                }
            }

            .icons {
                display: flex;

                img {
                    width: 24px;
                    height: 24px;
                    border-radius: 50%;
                    margin-left: -5px;
                }
            }
        }
    }

    .round-race {
        .tab-list {
            display: flex;
            background-color: rgb(228 230 231);
            border-radius: 8px;
            margin-top: 15px;

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

            li {
                padding: 8px 20px;
                border-radius: 8px;
                font-weight: 600;
                color: #000;
                cursor: pointer;

                &.active {
                    background-color: white;
                }
            }
        }

        .tab-item {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
        }

        .table {
            thead {
                th {
                    border-color: transparent;
                    background-color: #f6f9fc;
                    padding: 5 10px;
                    text-align: center;

                    &:first-child {
                        padding-left: 15px;
                        text-align: left;
                    }

                    &:last-child {
                        text-align: right;
                        padding-right: 15px;
                    }
                }
            }

            tbody {
                tr {

                    td,
                    th {
                        border-color: transparent;
                        padding: 8px 10px;
                        text-align: center;

                        &:first-child {
                            padding-left: 15px;
                        }
                    }

                    &:nth-child(even) {

                        td,
                        th {
                            background-color: #f6f9fc;
                        }
                    }
                }
            }

            .game-name {
                img {
                    width: 20px;
                }

                span {
                    color: var(--text-color);
                    cursor: pointer;
                }
            }

            .player {
                a {
                    color: var(--text-color);
                    white-space: nowrap;
                }
            }

            .amount,
            .profit {
                img {
                    width: 16px;
                }

                span {
                    color: var(--text-color);
                    padding: 0 5px;
                    font-weight: 600;

                    &.plus-profit {
                        color: var(--green-color);
                    }
                }
            }
        }

        .overview {
            display: grid;
            grid-template-columns: 50% 25% 25%;
            gap: 20px;
            background-color: #f4f4f4;

            span.title {
                font-weight: 700;
                color: var(--green-color);
                font-size: 18px;
            }

            .cup {
                background: linear-gradient(to right,
                        rgb(191, 249, 220),
                        transparent 75%);
                background-color: #fff;
                padding: 30px 15px;
                display: flex;
                padding-top: 20px;
                align-items: center;
                border-radius: 10px;
                text-align: center;

                .text {
                    margin-left: 15px;

                    .pool {
                        color: var(--text-color);
                        padding: 4px 0;
                    }

                    .money {
                        padding: 10px 16px;
                        border-radius: 10px;
                        background-color: var(--bg-color);
                        font-size: 20px;
                        color: var(--green-color);
                        font-weight: 700;
                    }
                }

                .img {
                    img {
                        height: 95px;
                    }
                }
            }

            .time {
                display: flex;
                flex-direction: column;
                padding-top: 20px;
                align-items: center;
                padding: 15px;
                background-color: #fff;
                border-radius: 10px;

                .clock {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    margin-top: 20px;

                    p {
                        width: 65px;
                        height: 65px;
                        background-color: #f1f2f3;
                        margin: 0 3px;
                        text-align: center;
                        border-radius: 8px;
                        margin-bottom: 0;
                        font-size: 12px;
                        line-height: 20px;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: center;

                        strong {
                            display: block;
                            font-size: 20px;
                            font-weight: 700;
                        }
                    }

                    .separator {
                        display: block;
                        font-size: 24px;
                        color: var(--text-color);
                        padding: 0 3px;
                    }
                }
            }

            .champion {
                display: flex;
                flex-direction: column;
                padding-top: 20px;
                align-items: center;
                padding: 15px;
                background-color: #fff;
                border-radius: 10px;

                .content {
                    display: flex;
                    align-items: center;
                    margin-top: 25px;

                    .img {
                        img {
                            width: 45px;
                            height: 45px;
                            border-radius: 50%;
                        }
                    }

                    span {
                        font-size: 12px;
                        margin-left: 10px;

                        &:last-child {
                            color: var(--green-color);
                        }
                    }
                }
            }
        }
    }

    .about {
        padding-top: 30px;

        .about-title {
            font-size: 20px;
            color: #000;
        }

        p {
            color: var(--text-color);
            font-size: 14px;

            a {
                color: var(--color-yellow);
            }
        }
    }

    .brands-section {
        ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 20px;

            li {
                width: calc((100% / 8) - 5px);

                @media screen and (max-width: 768px) {
                    width: calc((100% / 4) - 5px);
                }

                img {
                    width: 100%;
                }
            }
        }
    }

    .footer {
        padding-top: 60px;

        h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        ul {
            li {
                a {
                    color: var(--text-color);
                    display: inline-block;
                    margin-bottom: 5px;

                    &:hover {
                        color: var(--color-yellow);
                    }
                }
            }

            &.socials {
                display: flex;
                flex-wrap: wrap;

                li a {
                    margin-right: 10px;
                    margin-bottom: 10px;
                    width: 40px;
                    height: 40px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    border-radius: 3px;
                    background-color: #e6e6e6;
                }
            }
        }
    }

    /* Modern Footer Styles */
    .modern-footer {
        margin-top: 80px;
        background: #f4f4f4;
        color: #333;
        position: relative;
        overflow: hidden;

        &::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 80%, rgba(255, 178, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 178, 0, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .newsletter-section {

            background: linear-gradient(135deg, var(--color-yellow) 0%, #ff8c00 100%);
            padding: 60px 0;
            position: relative;

            &::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
                opacity: 0.3;
            }

            .newsletter-content {
                position: relative;
                z-index: 2;

                h3 {
                    font-size: 2.5rem;
                    font-weight: 700;
                    color: #fff;
                    margin-bottom: 1rem;
                    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);

                    @media (max-width: 768px) {
                        font-size: 2rem;
                        text-align: center;
                    }
                }

                p {
                    font-size: 1.1rem;
                    color: rgba(255, 255, 255, 0.9);
                    margin-bottom: 0;
                    line-height: 1.6;

                    @media (max-width: 768px) {
                        text-align: center;
                        margin-bottom: 2rem;
                    }
                }
            }

            .newsletter-form {
                position: relative;
                z-index: 2;

                .input-group {
                    display: flex;
                    max-width: 500px;
                    margin-left: auto;
                    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
                    border-radius: 50px;
                    overflow: hidden;
                    background: white;

                    @media (max-width: 768px) {
                        margin: 0 auto;
                    }

                    .form-control {
                        border: none;
                        padding: 30px 25px;
                        font-size: 1rem;
                        flex: 1;
                        background: transparent;

                        &:focus {
                            outline: none;
                            box-shadow: none;
                        }

                        &::placeholder {
                            color: #999;
                        }
                    }

                    .subscribe-btn {
                        background: linear-gradient(135deg, #333 0%, #555 100%);
                        color: white;
                        border: none;
                        padding: 18px 30px;
                        font-weight: 600;
                        display: flex;
                        align-items: center;
                        gap: 8px;
                        transition: all 0.3s ease;
                        white-space: nowrap;

                        &:hover {
                            background: linear-gradient(135deg, #555 0%, #333 100%);
                            /* transform: translateX(-2px); */
                        }

                        i {
                            font-size: 0.9rem;
                        }
                    }
                }
            }
        }

        .footer-main {
            padding: 80px 0 60px;
            position: relative;
            z-index: 2;
            background: #fff;
            border-radius: 20px 20px 0 0;
            margin-top: -20px;
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);

            .footer-brand {
                .brand-logo {
                    margin-bottom: 2rem;

                    img {
                        height: 80px;
                        filter: none;
                    }
                }

                .brand-description {
                    font-size: 1rem;
                    line-height: 1.7;
                    color: var(--text-color);
                    margin-bottom: 2rem;
                }

                .social-links {
                    display: flex;
                    gap: 15px;
                    flex-wrap: wrap;

                    .social-link {
                        width: 50px;
                        height: 50px;
                        border-radius: 12px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        transition: all 0.3s ease;
                        position: relative;
                        overflow: hidden;
                        background: linear-gradient(135deg, var(--color-yellow) 0%, #ff8c00 100%);

                        /* &::before {
                            content: '';
                            position: absolute;
                            top: 0;
                            left: 0;
                            right: 0;
                            bottom: 0;
                            background: linear-gradient(135deg, var(--color-yellow) 0%, #ff8c00 100%);
                            opacity: 0;
                            transition: opacity 0.3s ease;
                        } */

                        i {
                            font-size: 1.2rem;
                            position: relative;
                            z-index: 2;
                            transition: color 0.3s ease;
                            color: #fff;
                        }

                        &:hover {
                            /* transform: translateY(-3px); */
                            transform: scale(1.1);
                            box-shadow: 0 10px 25px rgba(255, 178, 0, 0.3);

                            &::before {
                                opacity: 1;
                            }

                            i {
                                color: #4a4a4a;
                            }
                        }

                        &.twitter {
                            background: linear-gradient(135deg, var(--color-yellow) 0%, #ff8c00 100%);
                            color: #fff;
                        }

                        &.instagram {
                            background: linear-gradient(135deg, var(--color-yellow) 0%, #ff8c00 100%);
                            color: #fff;
                        }

                        &.youtube {
                            background: linear-gradient(135deg, var(--color-yellow) 0%, #ff8c00 100%);
                            color: #fff;
                        }

                        &.linkedin {
                            background: linear-gradient(135deg, var(--color-yellow) 0%, #ff8c00 100%);
                            color: #fff;
                        }

                        &.discord {
                            background: linear-gradient(135deg, var(--color-yellow) 0%, #ff8c00 100%);
                            color: #fff;
                        }

                        /* &.instagram { background: rgba(225, 48, 108, 0.1); color: #e1306c; }
                        &.youtube { background: rgba(255, 0, 0, 0.1); color: #ff0000; }
                        &.linkedin { background: rgba(0, 119, 181, 0.1); color: #0077b5; }
                        &.discord { background: rgba(114, 137, 218, 0.1); color: #7289da; } */
                    }
                }
            }

            .footer-column {
                .column-title {
                    font-size: 1.2rem;
                    font-weight: 600;
                    margin-bottom: 1.5rem;
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    color: var(--color-yellow);

                    i {
                        font-size: 1rem;
                    }
                }

                .footer-links {
                    list-style: none;
                    padding: 0;

                    li {
                        margin-bottom: 12px;

                        a {
                            color: var(--text-color);
                            text-decoration: none;
                            transition: all 0.3s ease;
                            position: relative;
                            padding-left: 0;

                            &::before {
                                content: '';
                                position: absolute;
                                left: -15px;
                                top: 50%;
                                transform: translateY(-50%);
                                width: 0;
                                height: 2px;
                                background: var(--color-yellow);
                                transition: width 0.3s ease;
                            }


                        }

                        a:hover {
                            color: var(--color-yellow);
                            padding-left: 1px;

                            &::before {
                                width: 10px;
                            }
                        }
                    }
                }
            }

            .footer-stats {
                margin-top: 60px;
                padding-top: 40px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);

                .stat-item {
                    display: flex;
                    align-items: center;
                    gap: 20px;
                    padding: 25px;
                    background: rgba(255, 255, 255, 0.05);
                    border-radius: 15px;
                    transition: all 0.3s ease;
                    border: 1px solid rgba(255, 255, 255, 0.1);

                    &:hover {
                        background: rgba(255, 178, 0, 0.1);
                        border-color: rgba(255, 178, 0, 0.3);
                        transform: translateY(-5px);
                    }

                    .stat-icon {
                        width: 60px;
                        height: 60px;
                        border-radius: 12px;
                        background: linear-gradient(135deg, var(--color-yellow) 0%, #ff8c00 100%);
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        flex-shrink: 0;

                        i {
                            font-size: 1.5rem;
                            color: #1a1a1a;
                        }
                    }

                    .stat-content {
                        h5 {
                            font-size: 2rem;
                            font-weight: 700;
                            margin: 0;
                            color: var(--color-yellow);
                        }

                        p {
                            margin: 0;
                            color: rgba(255, 255, 255, 0.7);
                            font-size: 0.9rem;
                        }
                    }
                }
            }
        }

        .wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            white-space: nowrap;
        }

        .logo_inline {
            object-fit: contain;
            display: inline-block;
            max-height: 26px;
            max-width: 120px;
        }

        @media (max-width: 768px) {
            .wrapper {
                display: block;

            }

            .text-top {
                text-align: center;
            }

            .texto-buttom {
                display: block;
                text-align: center;
            }

            .copyright p {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                /* white-space: normal; */
            }

            .brand-highlight {
                display: block;
                max-height: 25px;
            }

            .logo_inline {
                display: block;
                /* margin: 0 auto; */
            }
        }

        .footer-bottom {
            background: #ffff;
            padding: 25px 0;
            display: flex;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 2;
            justify-content: space-between;
            align-items: center;
            /* flex-wrap: wrap; */

            .copyright {
                p {
                    margin: 0;
                    color: rgba(0, 0, 0, 0.7);
                    font-size: 0.9rem;
                    white-space: nowrap;

                    .brand-highlight {
                        color: var(--color-yellow);
                        font-weight: 600;
                    }
                }
            }

            .footer-legal {
                ul {
                    list-style: none;
                    padding: 0;
                    margin: 0;
                    display: flex;
                    align-items: center;
                    justify-content: flex-end;
                    gap: 9px;
                    /* flex-wrap: wrap; */

                    @media (max-width: 768px) {
                        justify-content: center;
                        margin-top: 1rem;
                    }

                    li {
                        a {
                            color: rgba(0, 0, 0, 0.7);
                            text-decoration: none;
                            font-size: 0.9rem;
                            transition: color 0.3s ease;

                            &:hover {
                                color: var(--color-yellow);
                            }
                            @media (max-width: 768px) {
                            
                            font-size: 12px;
                        }
                        }

                        

                        .language-selector {
                            display: flex;
                            align-items: center;
                            gap: 8px;
                            color: rgba(0, 0, 0, 0.7);

                            i {
                                font-size: 0.9rem;
                            }

                            select {
                                background: rgba(0, 0, 0, 0.1);
                                border: 1px solid rgba(0, 0, 0, 0.2);
                                color: #000;
                                padding: 5px 10px;
                                border-radius: 5px;
                                font-size: 0.9rem;

                                option {
                                    background: #1a1a1a;
                                    color: #000;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

/* Compact Post Card Styles with Title at Bottom */
.compact-post-card {
    flex: 0 0 178px;
    width: 178px;
    height: 260px;
    background: transparent;
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
    border-bottom-left-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
    overflow: visible;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 6px;

    @media (max-width: 768px) {
        flex: 0 0 178px;
        width: 178px;
        margin: 0 4px;
        border-radius: 20px;
    }

    @media (max-width: 480px) {
        flex: 0 0 178px;
        width: 178px;
        margin: 0 3px;
        border-radius: 20px;
    }

    &:hover {
        .post-image:not(.blurred) img {
            opacity: 0.8;
        }

        .post-content .post-title {
            color: #666;
        }

        .premium-lock-overlay .lock-icon {

            background: rgba(255, 255, 255, 1);
        }
    }

    &.featured {
        .post-content .post-title {
            color: #ffb200;
        }

        &:hover .post-content .post-title {
            color: #e6a000;
        }
    }

    &.premium {
        .post-content .post-title {
            color: #ff6b6b;
        }

        &:hover .post-content .post-title {
            color: #e55555;
        }
    }

    .post-link {
        display: flex;
        flex-direction: column;
        text-decoration: none;
        color: inherit;
        height: 100%;
    }

    .post-image-container {
        position: relative;
        width: 178px;
        height: 260px;
        border-radius: 20px;
        overflow: hidden;
        flex-shrink: 0;


        .post-image {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 20px;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: filter 0.3s ease;
                display: block;
            }

            &.blurred img {
                filter: blur(4px);
            }
        }

        .media-type-icon {
            position: absolute;
            top: 4px;
            left: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 16px;
            height: 16px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(5px);
            border-radius: 50%;
            color: #333;
            font-size: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);

            @media (max-width: 768px) {
                width: 14px;
                height: 14px;
                font-size: 7px;
                top: 3px;
                left: 3px;
            }

            i {
                color: #888;
            }
        }

        .premium-lock-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(2px);
            z-index: 2;

            .lock-icon {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 24px;
                height: 24px;
                background: rgba(255, 255, 255, 0.9);
                border-radius: 50%;
                color: #ff6b6b;
                font-size: 10px;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
                animation: pulse-lock 2s infinite;

                @media (max-width: 768px) {
                    width: 20px;
                    height: 20px;
                    font-size: 8px;
                }

                @media (max-width: 480px) {
                    width: 18px;
                    height: 18px;
                    font-size: 7px;
                }

                i {
                    color: #ff6b6b;
                }
            }
        }
    }

    .post-content {
        padding: 6px 0 0 0;
        background: transparent;
        transition: all 0.3s ease;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;

        @media (max-width: 768px) {
            padding: 4px 0 0 0;
        }

        .post-title {
            color: #888888;
            font-size: 10px;
            font-weight: 500;
            line-height: 1.2;
            margin: 0;
            text-align: center;
            max-width: 54px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;

            @media (max-width: 768px) {
                font-size: 9px;
                max-width: 48px;
            }

            @media (max-width: 480px) {
                font-size: 8px;
                max-width: 44px;
            }
        }
    }

    &.placeholder-card {
        .post-image-container {
            .post-image {
                display: flex;
                align-items: center;
                justify-content: center;
                background: linear-gradient(135deg, #f5f5f5, #e8e8e8);

                .placeholder-content {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 24px;
                    height: 24px;
                    background: rgba(136, 136, 136, 0.1);
                    border-radius: 50%;
                    color: #aaa;
                    font-size: 10px;

                    @media (max-width: 768px) {
                        width: 20px;
                        height: 20px;
                        font-size: 8px;
                    }
                }
            }
        }

        .post-content {
            .post-title {
                color: #bbb;
                font-style: italic;
                font-size: 8px;
            }
        }
    }
}

/* Remove duplicate carousel navigation - using the one inside posts-carousel-container */

/* Responsive adjustments */
@media (max-width: 480px) {
    .compact-post-card {

        .post-image-container .post-info-overlay {

            .post-title {
                font-size: 13px;
                margin-bottom: 4px;
            }

            .post-stats .likes {
                font-size: 11px;

                i {
                    font-size: 11px;
                }
            }
        }
    }
}

/* Focus states for accessibility */
.compact-post-card:focus,
.compact-post-card:focus-visible {
    outline: 2px solid #ffb200;
    outline-offset: 2px;
}

/* Text Post Preview Styles */
.text-post-preview {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
        animation: shimmer 2s infinite;
    }

    .text-content {
        padding: 8px;
        text-align: center;
        font-size: 8px;
        line-height: 1.3;
        color: #666;
        font-weight: 500;
        max-height: 100%;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        position: relative;
        z-index: 1;

        @media (max-width: 768px) {
            font-size: 7px;
            padding: 6px;
            -webkit-line-clamp: 5;
        }

        @media (max-width: 480px) {
            font-size: 6px;
            padding: 4px;
            -webkit-line-clamp: 4;
        }
    }
}

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

    100% {
        transform: translateX(100%);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .compact-post-card {
        transition: none;

        &:hover {
            transform: none;
        }

        .post-image img {
            transition: none;
        }

        .media-type-icon,
        .post-badge {
            transition: none;
        }
    }

    .text-post-preview::before {
        animation: none;
    }
}

/* Mobile responsive styles for showcase-header (creators section) */
.modern-creator-showcase .showcase-header {
    @media (max-width: 992px) {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 20px !important;
    }

    @media (max-width: 768px) {
        gap: 15px !important;
        align-items: center !important;
        padding: 0 10px;
        min-height: 60px;
        flex-wrap: nowrap !important;
    }

    @media (max-width: 480px) {
        gap: 10px !important;
        padding: 0 5px;
        min-height: 50px;
    }

    .header-content {
        display: flex !important;
        align-items: center !important;
        gap: 20px !important;
        flex: 1 !important;
        min-width: 0 !important;

        @media (max-width: 768px) {
            gap: 12px !important;
            flex: 1 !important;
            min-width: 0 !important;
        }

        @media (max-width: 480px) {
            gap: 8px !important;
        }

        .header-icon {
            flex-shrink: 0 !important;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ffb200, #ff8c00);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;

            @media (max-width: 768px) {
                width: 40px !important;
                height: 40px !important;
                font-size: 16px !important;
                border-radius: 12px !important;
            }

            @media (max-width: 480px) {
                width: 36px !important;
                height: 36px !important;
                font-size: 14px !important;
                border-radius: 10px !important;
            }
        }

        .header-text {
            flex: 1 !important;
            min-width: 0 !important;

            .section-title {
                font-size: 28px;
                font-weight: 700;
                color: #333;
                margin: 0 0 4px 0;
                line-height: 1.2;

                @media (max-width: 768px) {
                    font-size: 18px !important;
                    margin: 0 0 2px 0 !important;
                }

                @media (max-width: 480px) {
                    font-size: 16px !important;
                    margin: 0 !important;
                }
            }

            .section-subtitle {
                font-size: 14px;
                color: #666;
                margin: 0;
                line-height: 1.3;

                @media (max-width: 768px) {
                    font-size: 12px !important;
                }

                @media (max-width: 480px) {
                    font-size: 11px !important;
                    display: none !important;
                }
            }
        }
    }

    .header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 20px !important;
        flex-shrink: 0 !important;

        @media (max-width: 768px) {
            gap: 12px !important;
            flex-direction: row !important;
            justify-content: flex-end !important;
            margin-left: auto !important;
        }

        @media (max-width: 480px) {
            gap: 8px !important;
        }

        .view-all-btn {
            display: inline-flex !important;
            align-items: center !important;
            gap: 8px !important;
            padding: 12px 24px !important;
            background: linear-gradient(135deg, #ffb200, #ff8c00) !important;
            color: white !important;
            text-decoration: none !important;
            border-radius: 25px !important;
            font-weight: 600 !important;
            font-size: 14px !important;
            transition: all 0.3s ease !important;
            white-space: nowrap !important;
            border: none !important;

            @media (max-width: 768px) {
                padding: 8px 14px !important;
                font-size: 12px !important;
                border-radius: 20px !important;
                gap: 6px !important;
            }

            @media (max-width: 480px) {
                padding: 6px 12px !important;
                font-size: 11px !important;
                border-radius: 18px !important;
                gap: 4px !important;
            }

            &:hover {
                background: linear-gradient(135deg, #ff8c00, #ffb200) !important;
                transform: translateY(-1px) !important;
                box-shadow: 0 4px 12px rgba(255, 178, 0, 0.3) !important;
            }

            i {
                font-size: 12px !important;

                @media (max-width: 768px) {
                    font-size: 10px !important;
                }

                @media (max-width: 480px) {
                    font-size: 9px !important;
                }
            }
        }

        .carousel-navigation {
            display: flex !important;
            gap: 10px !important;

            @media (max-width: 768px) {
                gap: 6px !important;
            }

            @media (max-width: 480px) {
                gap: 4px !important;
            }

            .nav-btn {
                width: 40px !important;
                height: 40px !important;
                border: 2px solid #e0e0e0 !important;
                border-radius: 50% !important;
                background: white !important;
                color: #666 !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                cursor: pointer !important;
                transition: all 0.3s ease !important;
                font-size: 14px !important;

                @media (max-width: 768px) {
                    width: 32px !important;
                    height: 32px !important;
                    font-size: 11px !important;
                    border-width: 1.5px !important;
                }

                @media (max-width: 480px) {
                    width: 28px !important;
                    height: 28px !important;
                    font-size: 10px !important;
                    border-width: 1px !important;
                }

                &:hover {
                    border-color: #ffb200 !important;
                    color: #ffb200 !important;
                    background: rgba(255, 178, 0, 0.1) !important;
                }

                &:disabled {
                    opacity: 0.5 !important;
                    cursor: not-allowed !important;

                    &:hover {
                        border-color: #e0e0e0 !important;
                        color: #666 !important;
                        background: white !important;
                    }
                }
            }
        }
    }
}

/* Mobile responsive styles for section-header (categories section) */
.modern-category-section .section-header {
    @media (max-width: 992px) {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 20px !important;
    }

    @media (max-width: 768px) {
        gap: 15px !important;
        align-items: center !important;
        padding: 0 10px;
        min-height: 60px;
        flex-wrap: nowrap !important;
    }

    @media (max-width: 480px) {
        gap: 10px !important;
        padding: 0 5px;
        min-height: 50px;
    }

    .section-title-wrapper {
        display: flex !important;
        align-items: flex-start !important;
        justify-content: space-between !important;

        @media (max-width: 768px) {
            display: flex !important;
            align-items: flex-start !important;
            gap: 12px !important;
            flex: 1 !important;

        }

        @media (max-width: 480px) {
            gap: 8px !important;
        }

        .section-title {
            display: flex !important;
            align-items: center !important;
            gap: 20px !important;
            font-size: 28px;
            font-weight: 700;
            color: #333;
            margin: 0;
            line-height: 1.2;
            white-space: nowrap !important;
            overflow: hidden !important;
            text-overflow: ellipsis !important;

            @media (max-width: 768px) {
                font-size: 18px !important;
                margin: 0 0 2px 0 !important;
                display: flex !important;
                align-items: center !important;
                gap: 12px !important;
            }

            @media (max-width: 480px) {
                font-size: 16px !important;
                margin: 0 !important;
                gap: 8px !important;
            }

            .title-icon {
                flex-shrink: 0 !important;
                width: 60px;
                height: 60px;
                background: linear-gradient(135deg, #ffb200, #ff8c00);
                border-radius: 16px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-size: 20px;

                @media (max-width: 768px) {
                    width: 40px !important;
                    height: 40px !important;
                    font-size: 16px !important;
                    border-radius: 12px !important;
                }

                @media (max-width: 480px) {
                    width: 36px !important;
                    height: 36px !important;
                    font-size: 14px !important;
                    border-radius: 10px !important;
                }
            }

            .title-accent {
                flex: 1 !important;
                min-width: 0 !important;
            }
        }

        .section-subtitle {
            font-size: 14px;
            color: #666;
            margin: 4px 0 0 80px;
            line-height: 1.3;

            @media (max-width: 768px) {
                font-size: 12px !important;
                margin: 2px 0 0 52px !important;
            }

            @media (max-width: 480px) {
                font-size: 11px !important;
                display: none !important;
            }
        }
    }

    .section-actions {
        display: flex !important;
        align-items: center !important;
        flex-shrink: 0 !important;

        @media (max-width: 768px) {
            margin-left: auto !important;
        }

        .view-all-btn {
            display: inline-flex !important;
            align-items: center !important;
            gap: 8px !important;
            padding: 12px 24px !important;
            background: linear-gradient(135deg, #ffb200, #ff8c00) !important;
            color: white !important;
            text-decoration: none !important;
            border-radius: 25px !important;
            font-weight: 600 !important;
            font-size: 14px !important;
            transition: all 0.3s ease !important;
            white-space: nowrap !important;
            border: none !important;

            @media (max-width: 768px) {
                padding: 8px 14px !important;
                font-size: 12px !important;
                border-radius: 20px !important;
                gap: 6px !important;
            }

            @media (max-width: 480px) {
                padding: 6px 12px !important;
                font-size: 11px !important;
                border-radius: 18px !important;
                gap: 4px !important;
            }

            &:hover {
                background: linear-gradient(135deg, #ff8c00, #ffb200) !important;
                transform: translateY(-1px) !important;
                box-shadow: 0 4px 12px rgba(255, 178, 0, 0.3) !important;
            }

            i {
                font-size: 12px !important;

                @media (max-width: 768px) {
                    font-size: 10px !important;
                }

                @media (max-width: 480px) {
                    font-size: 9px !important;
                }
            }
        }
    }
}