html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    color: #ffffff;
}

.index-section {
    background-image: url('Images/Axiom\ Network\ Cropped.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

h1 {
    font-size: 3rem;
    text-align: center;
    margin-top: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content-creators-section {
    padding: 50px 20px;
}

.content-creators-page {
    background-image: url('Images/bolck2.webp');
    background-size: 5em 5em;
    background-position: center;
    background-repeat: repeat;
}

.store-page {
    background-image: url('Images/bolck7.jpg');
    background-size: 4em 4em;
    background-position: center;
    background-repeat: repeat;
}

.modes-page {
    background-image: url('Images/bolck4.webp');
    background-size: 4em 4em;
    background-position: center;
    background-repeat: repeat;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00bfff;
}

.footer-text {
    color: white;
    text-align: center;
    font-size: 1em;
    padding: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    box-sizing: border-box;
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.creator-box {
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid white;
    padding: 15px;
    text-align: center;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.creator-box:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.creator-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.creator-name {
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: bold;
}

.topic-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

html {
    overflow: -moz-scrollbars-none; /* For older Firefox versions */
    -ms-overflow-style: none; /* For Internet Explorer */
    scrollbar-width: none; /* For modern Firefox */
}

body {
    overflow-y: scroll; /* Allows vertical scrolling */
}

body::-webkit-scrollbar {
    display: none; /* Hides the scrollbar for WebKit browsers (Chrome, Safari) */
}