        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Cairo', sans-serif;
        }

        :root {
            --primary: #ffd700;
            --secondary: #000000;
            --text-primary: #ccd6f6;
            --text-secondary: #8892b0;
            --bg-dark: #000000;
            --bg-light: rgba(7, 16, 21, 0.23);
        }

        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(100, 255, 218, 0.5);
            border-radius: 50%;
            animation: fall linear infinite;
            box-shadow: 0 0 10px rgba(100, 255, 218, 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: rgb(16, 16, 16);
            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, 217, 0, 0.499);
            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(255, 215, 0, 0.8) 0%,
                rgba(255, 215, 0, 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: drop-shadow(0 8px 16px rgba(255, 215, 0, 0.4));
        }

        .logo-container:hover .glowing-effect {
            opacity: 1;
            animation: glow-pulse 3s ease-in-out infinite;
        }

        .logo {
            color: #f1cc54;
            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, 215, 0, 0.8),
                0 0 30px rgba(255, 215, 0, 0.4),
                0 0 45px rgba(255, 215, 0, 0.2);
            letter-spacing: 2px;
            transition: all 0.5s ease;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--text-primary);
            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(255, 215, 0, 0.5);
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            0% {
                text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
            }
            100% {
                text-shadow: 0 0 30px rgba(255, 215, 0, 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(255, 215, 0, 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: #ff6b6b;
            font-size: 1.1rem;
            background: rgba(255, 107, 107, 0.1);
            border: 1px solid rgba(255, 107, 107, 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(16, 16, 16, 0.95), rgba(32, 32, 32, 0.95));
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 40px rgba(255, 215, 0, 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, 215, 0, 0.3);
            background: #111;
            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: #111;
        }

        .offer-image.active {
            opacity: 1;
            z-index: 2;
        }

        .image-counter {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 215, 0, 0.9);
            color: #111;
            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(255, 215, 0, 0.9);
            color: #111;
            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(255, 215, 0, 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, 215, 0, 0.3);
        }

        .thumbnail.active {
            border-color: var(--primary);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        }

        .thumbnail.active img {
            transform: scale(1.1);
        }

        .progress-bar {
            width: 100%;
            height: 4px;
            background: rgba(255, 215, 0, 0.2);
            border-radius: 2px;
            margin-top: 1.5rem;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), rgba(255, 215, 0, 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(255, 215, 0, 0.8));
            color: #111;
            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(255, 215, 0, 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 */
        .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(255, 0, 68, 0.15);
            box-shadow: 
                0 0 10px rgba(255, 0, 68, 0.5),
                0 0 20px rgba(255, 0, 68, 0.3),
                0 0 30px rgba(255, 0, 68, 0.2),
                0 0 40px rgba(255, 0, 68, 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: #ff1744;
                text-shadow: 
                    0 0 5px rgba(255, 23, 68, 0.8),
                    0 0 10px rgba(255, 23, 68, 0.5);
            }
            50% {
                color: #ff0052;
                text-shadow: 
                    0 0 10px rgba(255, 0, 82, 1),
                    0 0 20px rgba(255, 0, 82, 0.8),
                    0 0 30px rgba(255, 0, 82, 0.6),
                    0 0 40px rgba(255, 0, 82, 0.4);
            }
            100% {
                color: #ff1744;
                text-shadow: 
                    0 0 5px rgba(255, 23, 68, 0.8),
                    0 0 10px rgba(255, 23, 68, 0.5);
            }
        }
  
        /* Intense pulsating background glow */
        @keyframes intense-pulse {
            0% {
                opacity: 0.7;
                box-shadow: 
                    0 0 10px rgba(255, 0, 68, 0.5),
                    0 0 20px rgba(255, 0, 68, 0.3);
            }
            50% {
                opacity: 1;
                box-shadow: 
                    0 0 15px rgba(255, 0, 68, 0.7),
                    0 0 25px rgba(255, 0, 68, 0.5),
                    0 0 35px rgba(255, 0, 68, 0.3),
                    0 0 45px rgba(255, 0, 68, 0.2);
            }
            100% {
                opacity: 0.7;
                box-shadow: 
                    0 0 10px rgba(255, 0, 68, 0.5),
                    0 0 20px rgba(255, 0, 68, 0.3);
            }
        }
  
        /* Powerful underline effect */
        .store-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: #ff0052;
            box-shadow: 
                0 0 5px #ff0052,
                0 0 10px #ff0052,
                0 0 15px #ff0052;
            z-index: 1;
            animation: underline-flare 1.5s infinite;
        }
  
        @keyframes underline-flare {
            0% {
                opacity: 0.8;
                box-shadow: 
                    0 0 5px #ff0052,
                    0 0 10px #ff0052;
            }
            50% {
                opacity: 1;
                box-shadow: 
                    0 0 10px #ff0052,
                    0 0 20px #ff0052,
                    0 0 30px #ff0052;
                height: 4px;
            }
            100% {
                opacity: 0.8;
                box-shadow: 
                    0 0 5px #ff0052,
                    0 0 10px #ff0052;
            }
        }
  
        /* Add an outer glow effect */
        .store-link {
            filter: drop-shadow(0 0 8px rgba(255, 0, 82, 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 {
                gap: 0rem;
                flex-wrap: wrap;
                justify-content: center;
                margin-top: 1rem;
            }

            .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;
            }
        }