:root {
    --primary-dark: #020B2C;
    --primary-light: #0A2463;
    --accent: #00eeff;
    --purple: #e81cff;
    --text-light: #FFFFFF;
    --text-dark: #8B9AB9;
    --card-bg: rgba(10, 36, 99, 0.3);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}
@font-face {
    font-family: uiverse;
    src: url(UniversBlack.ttf);
}
@font-face {
    font-family: runwild;
    src: url(RunWild-Demo1.ttf)
}
@font-face {
    font-family: neoneon;
    src: url(neoneon.otf)
}
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-logo {
        display: none;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        margin-top: 2.8rem;
    }
    .guidelines-content .title {
        font-size: 2.75rem;
        margin-top: 6rem;
    }
    .parent {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .parent .card {
        width: 361px;
        height: 780px;
        border-radius: 20px;
        box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
        background-image: linear-gradient(144deg,#AF40FF, #5B42F3 50%,#00DDEB);
    }

    .parent .card_content {
        background: rgb(5, 6, 45);
        border-radius: 17px;
        width: 350px;
        height: 770px;
    }
    .parent .card .card_content .number {
        position: relative;
        top: 1.3rem;
        margin-left: 2rem;
        margin-right: 2rem;
    }
    .parent .card .card_content .content {
        margin-left: 2rem;
        margin-right: 2rem;
        margin-bottom: 1rem;
        font-size: 1.95rem;
    }
}
/*Start Of Navbar*/
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(2, 11, 44, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    background: linear-gradient(145deg, #e81cff, #00ffea);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.nav-logo .logo {
    height: 50px; /* Adjust as needed */
    width: auto;
}
.nav-title .neon-text {
    font-family: neoneon, sans-serif;
    font-size: 1.6rem;
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--text-light);
    white-space: nowrap;
}
.nav-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    font-family: uiverse;
    font-size: 1.2rem;
}

.nav-links a:hover {
    color: var(--purple);
    text-shadow: 0 0 10px var(--accent);
    transform: translateY(-5px);
    transition: transform 0.5s ease;
}
/* End Of Navbar*/
.guidelines {
    margin-left: 5rem;
    margin-right: 5rem;
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}
.guidelines h2 {
    background: linear-gradient(145deg, #e81cff, #00ffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: neoneon;
    font-size: 3.5rem;
    text-align: center;
}
.guidelines-content p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    background: linear-gradient(145deg, #e81cff, #00ffea);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: uiverse;
    letter-spacing: normal;
    text-align: center;
}
.parent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.card {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    padding: 5px;
    box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
    background-image: linear-gradient(144deg,#AF40FF, #5B42F3 50%,#00DDEB);
    margin-top: 3rem;
}
.card_content {
    background: rgb(5, 6, 45);
    border-radius: 17px;
    width: 100%;
    height: 100%;
}
.card_content .number {
    position: relative;
    top: 1.3rem;
    margin-left: 4rem;
    text-align: start;
    font-family: uiverse;
}
.card_content .content {
    position: relative;
    bottom: 1.3rem;
    margin-left: 4rem;
    margin-bottom: 4rem;
    text-align: start;
    font-family: uiverse;
    font-size: 2rem;
}
