@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

:root {
    --primary: #ffd700;
    --secondary: #000000;
    --text-primary: #ccd6f6;
    --text-secondary: #8892b0;
    --bg-dark: #000000;
    --bg-light: rgba(100, 255, 218, 0.1);
}

:root {
--primary-color: #FFD700;
--secondary-color: #DAA520;
--text-color: #000000;
--background-gradient: linear-gradient(135deg, #000000, #1a1a1a);
--card-background: rgba(0, 0, 0, 0.7);
--animation-timing: cubic-bezier(0.4, 0, 0.2, 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(0, 0, 0, 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(162, 173, 4, 0.303);
    transition: all 0.3s ease;
    animation: slideDown 1s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.logo {
color: #FFD700;
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 #FFD700;
}

.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(218, 165, 32, 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, 215, 0, 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, 215, 0, 0.8),
0 0 30px rgba(218, 165, 32, 0.4),
0 0 45px rgba(255, 215, 0, 0.2);
letter-spacing: 2px;
transition: all 0.5s ease;
}

@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;
    }
}

.nav-links {
display: flex;
gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    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: #FFD700;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #FFD700;
}

.nav-links a:hover::after {
    width: 100%;
}

@media (max-width: 767px) {
    .logo-container {
        gap: 0.8rem;
    }
    
    .logo-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .logo {
        font-size: 1.4rem;
    }
}

.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: var(--secondary);
    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(100, 255, 218, 0.2);
}

.table-container {
    background-color: var(--secondary);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(197, 207, 8, 0.226);
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background-color: rgba(100, 255, 218, 0.1);
}

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(100, 255, 218, 0.05);
}

/* Footer Styles */
.footer {
background: #222222;
color: #ccd6f6;
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: #FFD700;
margin-bottom: 1rem;
position: relative;
display: inline-block;
}

.footer-section h3::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 50px;
height: 2px;
background: #FFD700;
animation: expand 2s ease-out infinite;
}

.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}

.social-links a {
color: #ccd6f6;
text-decoration: none;
padding: 0.8rem;
border: 1px solid #FFD700;
border-radius: 50%;
transition: 0.3s;
display: flex;
align-items: center;
justify-content: center;
}

.social-links a:hover {
background: #FFD700;
color: #0a192f;
transform: translateY(-5px) rotate(360deg);
}

.footer-bottom {
text-align: center;
padding: 1rem 0;
border-top: 1px solid rgba(255, 215, 0, 0.2);
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;
}

.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));
}

@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;
    }
}