@import url('https://fonts.cdnfonts.com/css/cooper-black');

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0a0a0a;
    color: #f4f4f4;
}

.container {
    width: 90%;
    margin: auto;
    overflow: hidden;
}


h1 {
    text-align: center;
    margin: 20px 0;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff, 0 0 40px #00ffff;
    animation: glow 1.5s infinite alternate, neonChangeText 5s infinite;
}


@keyframes glow {
    from {
        text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff, 0 0 40px #00ffff;
    }
    to {
        text-shadow: 0 0 20px #00ffff, 0 0 30px #00ffff, 0 0 40px #00ffff, 0 0 50px #00ffff;
    }
}

@keyframes neonChangeText {
    0% { color: #ff007f; text-shadow: 0 0 10px #ff007f, 0 0 20px #ff007f, 0 0 30px #ff007f, 0 0 40px #ff007f; }
    100% { color: #00ffff; text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff, 0 0 40px #00ffff; }
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

th, td {
    border: 1px solid #444;
    padding: 12px;
    text-align: left;
    transition: background-color 0.3s, transform 0.3s;
}

th {
    background-color: #1e1e1e;
    color: #00ffff;
    box-shadow: 0 0 10px #00ffff;
    animation: pulse 2s infinite, neonChangeText 5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 10px #00ffff;
    }
    50% {
        box-shadow: 0 0 20px #00ffff;
    }
    100% {
        box-shadow: 0 0 10px #00ffff;
    }
}


tr:nth-child(even) {
    background-color: #1a1a1a;
}

tr:nth-child(odd) {
    background-color: #292929;
}

tr:hover {
    background-color: #333333;
    transform: scale(1.02);
}

a {
    color: #00ffff;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #00bfff;
    text-shadow: 0 0 10px #00bfff;
}

button {
    background-color: #1e1e1e;
    color: #00ffff;
    border: 2px solid #00ffff;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    animation: neonChangeText 5s infinite;
}

button:hover {
    background-color: #00ffff;
    color: #1e1e1e;
    transform: scale(1.1);
    box-shadow: 0 0 20px #00ffff;
}

.subscribe-box {
    background-color: #1e1e1e;
    color: #00ffff;
    border: 2px solid #00ffff;
    padding: 20px;
    text-align: center;
    font-size: 16px;
    margin: 10px 0;
    box-shadow: 0 0 10px #00ffff;
    animation: neonChangeText 5s infinite;
}

.subscribe-box:hover {
    background-color: #00ffff;
    color: #1e1e1e;
    box-shadow: 0 0 20px #00ffff;
}

@media (max-width: 600px) {
    table {
        font-size: 10px;
    }

    th, td {
        padding: 8px;
    }

    button {
        padding: 8px 16px;
        font-size: 14px;
    }

    .subscribe-box {
        font-size: 14px;
    }
}

footer {
    background-color: #000000;
    color: #00ffff;
    text-align: center;
    padding: 10px;
    position: flex;
    width: 100%;
    bottom: 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
}

footer a {
    color: #00ffff;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #00bfff;
}

div {
    display: flexbox;
    unicode-bidi: isolate;
    width: 80%; /* Adjust as needed */
    margin: 0 auto; /* Center the div itself */
    text-align: center; /* Center the text within the div */
}

ul {
    display: inline-flexbox;
    font-display:initial;
    list-style: square;
    margin: 1em auto; /* Center the ul itself */
    padding-inline-start: 30px; /* Adjust padding as needed */
    unicode-bidi: isolate;
    width: fit-content; /* Optional: Adjust width based on content */
    text-align: center; /* Center the text within the ul */
}
/* Navbar styles */
.navbar {
    background-color: transparent;
    color: #00ffff;
    padding: 10px;
    position: flex;
    width: 20%;
    height: 10%;
    min-height: min-content;
    top: 0;
    box-shadow: none;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.1);
}

.navbar-menu {
    list-style: none;
    margin: 10;
    padding: 0;
    display: flex;
    justify-content: center;
    transition: max-height 0.3s ease;
    flex-direction: row;
}

.navbar-menu.collapsed {
    max-height: 0;
    overflow: hidden;
}

.navbar-menu li {
    margin: 0 10px;
}

.navbar-menu a {
    color: #00ffff;
    text-decoration: none;
    font-size: 18px;
    font-display: flex;
    transition: color 0.3s, text-shadow 0.3s;
}

.navbar-menu a:hover {
    color: #ff007f;
    text-shadow: 0 0 10px #ff007f;
}
/* Responsive Design */
@media (max-width: 768px) {
    .navbar-menu {
        flex-direction: row;
        align-items: center;
        max-height: 60px; 
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        transition: max-height 0.3s ease;/* Adjust as needed */
    }

    .navbar-menu li {
        margin: 5px;
    }
    .navbar-menu a {
        color: #00ffff;
        text-decoration: none;
        font-size: 14px; /* Reduced font size */
        transition: color 0.3s, text-shadow 0.3s;
    }
}

/* Add padding to body content to account for fixed navbar */
body {
    padding-top: 10px; /* Adjust according to the height of your navbar */
}
