        @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

        :root {
            --primary: #C2185b;
            --secondary: #ff006256;
            --text-primary: #47494e;
            --text-secondary: #8892b0;
            --bg-dark: #f0eded;
            --bg-light: rgba(100, 255, 218, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Cairo', sans-serif;
        }

        body {
            background-color: var(--bg-dark);
            overflow-x: hidden;
        }

        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 5px;
            height: 5px;
            background-color: rgba(100, 255, 218, 0.5);
            border-radius: 50%;
        }

        .navbar {
            background: rgba(243, 241, 241, 0.95);
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(196, 4, 142, 0.634);
            transition: all 0.3s ease;
            animation: slideDown 1s ease;
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }

        .logo {
    color: #C2185b;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.5s ease;
        }


        .logo:hover {
            transform: scale(1.55);
            text-shadow: 0 0 10px #f06292;
        }

        .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, 0, 81, 0.8) 0%,
                rgba(255, 0, 93, 0.356) 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, 0, 98, 0.4));
        }

        .logo-container:hover .glowing-effect {
            opacity: 1;
            animation: glow-pulse 3s ease-in-out infinite;
        }

        .logo-container:hover .logo {
            transform: translateY(-4px);
            text-shadow: 
                0 0 15px rgba(255, 0, 68, 0.8),
                0 0 30px rgba(255, 0, 98, 0.4),
                0 0 45px rgba(255, 0, 30, 0.2);
            letter-spacing: 2px;
            transition: all 0.5s ease;
        }

        /* تحسين للشاشات المتوسطة والصغيرة */
@media (max-width: 991px) {
    .logo-wrapper {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 767px) {
    .logo-container {
        gap: 0.8rem;
    }
    
    .logo-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .logo {
        font-size: 1.4rem;
    }
}

        @media (max-width: 767px) {
            .navbar {
                flex-direction: column;
                padding: 0.5rem 1rem;
            }

            .logo {
                font-size: 1.4rem;
                margin-bottom: 2px;
            }

            .nav-links {
                flex-wrap: wrap;
                gap: 1rem;
                justify-content: center;
            }

            .nav-links a {
                font-size: 0.9rem;
                padding: 0.4rem 0.8rem;
            }

                .store-link {
        padding: 0.5rem 1.2rem !important;
        letter-spacing: 1px !important;
        font-size: 0.9rem !important; /* تم تكبير الخط للـ Store link */
    }

        }

        .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;
            right: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* 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));
}

        .content {
            max-width: 1200px;
            margin: 120px auto 50px;
            padding: 0 2rem;
        }

        .page-title {
            text-align: center;
            margin-bottom: 3rem;
            color: var(--primary);
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            left: -50%;
            transform: translateX(50%);
        }

        .page-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary);
            animation: underlineMove 2s ease-in-out infinite;
        }

        @keyframes underlineMove {
            0% { width: 0; left: 100%; }
            50% { width: 100%; left: 0; }
            100% { width: 0; left: 0; }
        }

        .search-container {
            margin-bottom: 2rem;
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 1rem;
            background-color:#e9ebed;
            border: 1px solid var(--primary);
            color: var(--text-primary);
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            box-shadow: 0 0 10px rgba(189, 5, 146, 0.307);
        }

        .table-container {
            background-color: var(--secondary);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(17, 16, 17, 0.867);
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        thead {
            background-color: rgba(214, 77, 162, 0.355);
        }

        th, td {
            padding: 1rem;
            text-align: right;
            border-bottom: 1px solid rgba(100, 255, 218, 0.1);
            color: var(--text-primary);
        }

        th {
            color: var(--primary);
            font-weight: bold;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        tr:hover {
            background-color: rgba(212, 215, 214, 0.301);
        }

        /* Footer Styles */
.footer {
    background: #dfdddd;
    color: #c107a2;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: #ff00b7;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #ff0073;
    animation: expand 2s ease-out infinite;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #c30d92;
    text-decoration: none;
    padding: 0.8rem;
    border: 1px solid #ff008c;
    border-radius: 50%;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background: #ff0073;
    color: #810a51;
    transform: translateY(-5px) rotate(360deg);
}

.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 0, 162, 0.308);
    margin-top: 2rem;
}

/* Additional Animations */
@keyframes glow {
    from {
        text-shadow: 0 0 5px #64ffda, 0 0 10px #64ffda;
    }
    to {
        text-shadow: 0 0 15px #64ffda, 0 0 20px #64ffda;
    }
}

@keyframes expand {
    0% { width: 0; }
    50% { width: 100px; }
    100% { width: 0; }
}

        /* Table row and column animations */
        .table-row {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease-out, transform 0.5s ease-out;
        }

        .table-row.show {
            opacity: 1;
            transform: translateY(0);
        }

        .table-enter {
            animation: tableEnter 0.5s ease-out;
        }

        @keyframes tableEnter {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .content {
                padding: 0 1rem;
            }

            .nav-links {
                gap: 1rem;
            }

            .page-title {
                font-size: 2rem;
            }

            table {
                font-size: 0.9rem;
            }

            th, td {
                padding: 0.5rem;
            }
        }