* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    position: relative;
    padding-bottom: 50px;
    overflow-y: auto;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/fire.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: -2;
}

.navbar {
    padding: 15px;
    position: sticky;
    margin-top: 15px;
    display: flex;
    gap: 15px;
    z-index: 100;
}

.nav-link {
    font-family: 'DC Sans', sans-serif;
    font-weight: bolder;
    margin-top: 5px;
    font-family: 'DC Sans', sans-serif;
    background-color: #a30707cc;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(32, 0, 0, 0.3);
    border: 1px solid rgba(36, 1, 1, 0.2);
    
}

.nav-link:hover {
    font-family: 'DC Sans', sans-serif;
    font-weight: bolder;
    background-color: rgba(245, 239, 239, 0.3);
    color:#a30707cc;
    transform: scale(1.1);
}
.content {
    font-family: 'DC Sans', sans-serif;
    font-weight: bolder;
    color:#a30707cc;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(16, 3, 133, 0.20);
    margin-top: 80px;
    margin-bottom: 80px;
    border-radius: 20px;
    border: 3px solid #b80b0b66;
    opacity: 1.0;
}

h1 {
    font-family: 'DC Sans', sans-serif;
    font-weight: bolder;
    color: #f80505cc;
    font-size: 2.5em;
    margin-bottom: 10px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

h1 a {
    color: #a30707cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

h1 a:hover {
    font-family: 'DC Sans', sans-serif;
    font-weight: bolder;
    color: #dc143c;
    text-decoration: underline;
    text-shadow: #0f0101;
}

h2 {
    font-family: 'DC Sans', sans-serif;
    font-weight: bolder;
    text-align: center;
    color: #a30707cc;
    font-size: 1.8em;
    margin-bottom: 15px;
    border-bottom: 3px solid #dc143c;
    padding-bottom: 5px;
}

h3 {
    font-family: 'DC Sans', sans-serif;
    color: #a30707cc;
    font-weight: bolder;
    text-align: center;
    font-size: 1.4em;
    margin-bottom: 10px;
    margin-top: 20px;
}

p {
    font-family: 'DC sans', sans-serif;
    font-weight: bolder;
    color: #0f0101;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #0f0101;
}

ul {
    font-family: 'DC Sans', sans-serif;
    font-weight: bolder;
    color: #0f0101;
    list-style-position: inside;
    margin: 0 auto 15px auto;
    padding: 0;
    max-width: 600px;
}

li {
    font-family: 'DC Sans', sans-serif;     
    font-weight: bolder;
    line-height: 1.6;
    margin-bottom: 5px;
    color: #0f0101;
    list-style-type: disc;
    display: list-item;
}

section {
    font-family: 'DC sans', sans-serif;
    font-weight: bolder;
    color:#0f0101;
    margin-bottom: 25px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.64);
    border: solid 2px #dc143c;
    border-radius: 20px;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 10px;
        margin-top: 10px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        margin: 5px;
        padding: 12px 16px;
        font-size: 14px;
        min-height: 44px;
    }
    
    .content {
        margin: 10px;
        padding: 15px;
        margin-top: 20px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-link {
        width: 90%;
        margin: 3px 0;
        text-align: center;
    }
    
    .content {
        margin: 5px;
        padding: 10px;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    h2 {
        font-size: 1.3em;
    }
    
    p, li {
        font-size: 16px;
        line-height: 1.5;
    }
}