        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Cairo', sans-serif;
        }

        :root {
            --primary: #fb1798;
            --secondary: #9b59b6;
            --text-primary: #333333;
            --text-secondary: #666666;
            --bg-dark: #ffffff;
            --bg-light: rgba(251, 23, 152, 0.08);
        }

        body {
            background: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* Animated particles background */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -5;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 5px;
            height: 5px;
            background: rgba(251, 23, 152, 0.5);
            border-radius: 50%;
            animation: fall linear infinite;
            box-shadow: 0 0 10px rgba(251, 23, 152, 0.3);
        }

        @keyframes fall {
            0% {
                transform: translateY(-100vh) scale(1);
                opacity: 0;
            }
            50% {
                transform: translateY(50vh) scale(1.5);
                opacity: 1;
            }
            100% {
                transform: translateY(100vh) scale(1);
                opacity: 0;
            }
        }

        .navbar {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95));
            padding: 1rem;
            position: fixed;
            width: 100%;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            box-shadow: 0 2px 20px rgba(255, 0, 106, 0.2);
            top: 0;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            position: relative;
        }

        .logo-wrapper {
            position: relative;
            width: 80px;
            height: 80px;
        }

        .logo-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            position: relative;
            z-index: 2;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .glowing-effect {
            position: absolute;
            inset: -15%;
            background: radial-gradient(
                circle at center,
                rgba(251, 23, 152, 0.8) 0%,
                rgba(251, 23, 152, 0.3) 40%,
                transparent 70%
            );
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.5s ease;
            z-index: 1;
        }

        @keyframes float {
            0% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(-8px) scale(1.08);
            }
            100% {
                transform: translateY(0) scale(1);
            }
        }

        @keyframes glow-pulse {
            0% {
                opacity: 0.4;
                transform: scale(0.9);
            }
            50% {
                opacity: 0.8;
                transform: scale(1.1);
            }
            100% {
                opacity: 0.4;
                transform: scale(0.9);
            }
        }

        .logo-container:hover .logo-img {
            animation: float 2s ease-in-out infinite;
            filter: brightness(0) invert(1) drop-shadow(0 8px 16px rgba(251, 23, 152, 0.4));
        }

        .logo-container:hover .glowing-effect {
            opacity: 1;
            animation: glow-pulse 3s ease-in-out infinite;
        }

        .logo {
            color: #df178f;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.5s ease;
        }

        .logo-container:hover .logo {
            transform: translateY(-4px);
            text-shadow: 
                0 0 15px rgba(255, 255, 255, 0.8),
                0 0 30px rgba(251, 23, 152, 0.4),
                0 0 45px rgba(251, 23, 152, 0.2);
            letter-spacing: 2px;
            transition: all 0.5s ease;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: #df2984;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .main-content {
            margin-top: 120px;
            padding: 2rem;
            min-height: calc(100vh - 120px);
        }

        .page-header {
            text-align: center;
            margin-bottom: 3rem;
            animation: fadeInDown 1s ease;
        }

        .page-title {
            color: var(--primary);
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 0 0 20px rgba(251, 23, 152, 0.5);
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            0% {
                text-shadow: 0 0 10px rgba(251, 23, 152, 0.5);
            }
            100% {
                text-shadow: 0 0 30px rgba(251, 23, 152, 0.8);
            }
        }

        .page-subtitle {
            color: var(--text-secondary);
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        @keyframes fadeInDown {
            0% {
                opacity: 0;
                transform: translateY(-30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .no-offers {
            text-align: center;
            padding: 4rem 2rem;
            color: var(--text-secondary);
            font-size: 1.2rem;
        }

        .loading {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 300px;
            font-size: 1.2rem;
            color: var(--primary);
        }

        .loading-spinner {
            display: inline-block;
            width: 40px;
            height: 40px;
            border: 4px solid rgba(251, 23, 152, 0.3);
            border-radius: 50%;
            border-top-color: var(--primary);
            animation: spin 1s ease-in-out infinite;
            margin-left: 1rem;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .error-message {
            text-align: center;
            padding: 2rem;
            color: #e91e63;
            font-size: 1.1rem;
            background: rgba(233, 30, 99, 0.1);
            border: 1px solid rgba(233, 30, 99, 0.3);
            border-radius: 10px;
            margin: 2rem auto;
            max-width: 600px;
        }

        /* Carousel Styles */
        .offers-carousel-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(250, 250, 250, 0.95));
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 40px rgba(255, 0, 106, 0.2);
            border: 2px solid var(--primary);
            backdrop-filter: blur(10px);
        }

        .main-image-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            height: 450px;
            margin: 0 auto 2rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(255, 0, 106, 0.3);
            background: #f5f5f5;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .main-image-container:hover {
            transform: scale(1.02);
        }

        .offer-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 1;
            background: #f5f5f5;
        }

        .offer-image.active {
            opacity: 1;
            z-index: 2;
        }

        .image-counter {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(251, 23, 152, 0.9);
            color: #fff;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
            z-index: 10;
        }

        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(251, 23, 152, 0.9);
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-arrow:hover {
            background: var(--primary);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 0 20px rgba(251, 23, 152, 0.6);
        }

        .nav-arrow.prev {
            left: -70px;
        }

        .nav-arrow.next {
            right: -70px;
        }

        .thumbnails-container {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        .thumbnail {
            width: 70px;
            height: 55px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            overflow: hidden;
            position: relative;
        }

        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .thumbnail:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(255, 0, 106, 0.3);
        }

        .thumbnail.active {
            border-color: var(--primary);
            box-shadow: 0 0 15px rgba(251, 23, 152, 0.5);
        }

        .thumbnail.active img {
            transform: scale(1.1);
        }

        .progress-bar {
            width: 100%;
            height: 4px;
            background: rgba(251, 23, 152, 0.2);
            border-radius: 2px;
            margin-top: 1.5rem;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), rgba(155, 89, 182, 0.7));
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 1rem;
        }

        .play-pause-btn {
            background: linear-gradient(45deg, var(--primary), rgba(155, 89, 182, 0.8));
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .play-pause-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(251, 23, 152, 0.5);
        }

        /* Image Modal */
        .image-modal {
            display: none;
            position: fixed;
            z-index: 10000;
            inset: 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            animation: fadeIn 0.3s ease;
        }

        .image-modal.show {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            max-width: 90vw;
            max-height: 90vh;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            animation: scaleIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes scaleIn {
            0% {
                transform: scale(0.8);
                opacity: 0;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .modal-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-close:hover {
            background: var(--primary);
            color: var(--bg-dark);
            transform: scale(1.1);
        }

        /* Extremely powerful styling for Store link */
        /* Extremely powerful styling for Store link */
.store-link {
    animation: intense-glow 1.5s infinite;
    font-weight: 800;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem !important;
    z-index: 2;
}
  
/* Multiple layers of glowing effects */
.store-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.356);
    box-shadow: 
        0 0 10px rgba(12, 12, 12, 0.5),
        0 0 20px rgba(12, 12, 12, 0.4),
        0 0 30px rgba(6, 6, 6, 0.3),
        0 0 40px rgba(11, 11, 11, 0.1);
    border-radius: 4px;
    z-index: -1;
    animation: intense-pulse 1.5s infinite;
}
  
/* Powerful text animation with bright glow */
@keyframes intense-glow {
    0% {
        color: #0b0b0b;
        text-shadow: 
            0 0 5px rgba(9, 9, 9, 0.8),
            0 0 10px rgba(5, 5, 5, 0.5);
    }
    50% {
        color: #161616;
        text-shadow: 
            0 0 10px rgb(3, 3, 3),
            0 0 20px rgb(8, 8, 8),
            0 0 30px rgb(10, 10, 10),
            0 0 40px rgb(13, 13, 13);
    }
    100% {
        color: #0b0b0b;
        text-shadow: 
            0 0 5px rgba(6, 6, 6, 0.8),
            0 0 10px rgba(21, 22, 21, 0.5);
    }
}
  
/* Intense pulsating background glow */
@keyframes intense-pulse {
    0% {
        opacity: 0.7;
        box-shadow: 
            0 0 10px rgba(24, 24, 24, 0.5),
            0 0 20px rgba(7, 7, 7, 0.3);
    }
    50% {
        opacity: 1;
        box-shadow: 
            0 0 15px rgba(7, 7, 7, 0.7),
            0 0 25px rgba(16, 17, 16, 0.5),
            0 0 35px rgba(9, 9, 9, 0.3),
            0 0 45px rgba(5, 5, 5, 0.2);
    }
    100% {
        opacity: 0.7;
        box-shadow: 
            0 0 10px rgba(8, 8, 8, 0.5),
            0 0 20px rgba(13, 13, 13, 0.3);
    }
}
  
/* Powerful underline effect */
.store-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #124406;
    box-shadow: 
        0 0 5px #124406,
        0 0 10px #124406,
        0 0 15px #124406;
    z-index: 1;
    animation: underline-flare 1.5s infinite;
}
  
@keyframes underline-flare {
    0% {
        opacity: 0.8;
        box-shadow: 
            0 0 5px #255906,
            0 0 10px #0b5605;
    }
    50% {
        opacity: 1;
        box-shadow: 
            0 0 10px #1e4f04,
            0 0 20px #163f08,
            0 0 30px #055d11;
        height: 4px;
    }
    100% {
        opacity: 0.8;
        box-shadow: 
            0 0 5px #0d5c07,
            0 0 10px #174f05;
    }
}
  
/* Add an outer glow effect */
.store-link {
    filter: drop-shadow(0 0 8px rgba(14, 101, 6, 0.5));
}

        /* Mobile Responsive Improvements */
        @media (max-width: 768px) {
            .page-title {
                font-size: 2rem;
            }

            .main-content {
                margin-top: 100px;
                padding: 1rem;
            }

            .navbar {
                flex-direction: column;
                padding: 0.5rem 1rem;
            }

            .logo-wrapper {
                width: 60px;
                height: 60px;
            }

            .logo {
                font-size: 1.4rem;
            }

    .nav-links {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.3rem !important;
        justify-content: center !important;
        margin: 0.2rem 0 !important;
        width: 100% !important;
        padding: 0.2rem 0 !important;
    }

            .nav-links a {
                font-size: 0.9rem;
                padding: 0.4rem 0.8rem;
            }

            .offers-carousel-container {
                padding: 1rem;
                margin: 0 1rem;
                max-width: 650px;
            }

            .main-image-container {
                max-width: 550px;
                height: 380px;
            }

            .nav-arrow {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .nav-arrow.prev {
                left: -55px;
            }

            .nav-arrow.next {
                right: -55px;
            }

            .thumbnail {
                width: 60px;
                height: 48px;
            }

            .thumbnails-container {
                gap: 0.5rem;
            }

            .modal-content {
                max-width: 95vw;
                max-height: 85vh;
            }

            .modal-close {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
                top: 10px;
                right: 10px;
            }
        }

        @media (max-width: 480px) {
            .offers-carousel-container {
                max-width: 400px;
                padding: 0.8rem;
            }

            .main-image-container {
                max-width: 350px;
                height: 280px;
            }

            .thumbnail {
                width: 55px;
                height: 42px;
            }

            .nav-arrow.prev {
                left: -45px;
            }

            .nav-arrow.next {
                right: -45px;
            }
        }

        @media (max-width: 360px) {
            .offers-carousel-container {
                max-width: 320px;
                padding: 0.5rem;
            }

            .main-image-container {
                max-width: 280px;
                height: 220px;
            }

            .thumbnail {
                width: 45px;
                height: 36px;
            }

            .nav-arrow.prev {
                left: -35px;
            }

            .nav-arrow.next {
                right: -35px;
            }
        }