body {
    font-size: 16px;
    line-height: 1.5;
    color: whitesmoke;
    background-color: #181A1B;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    scrollbar-color: #0D0E0E #181A1B;
    scrollbar-width: thin;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}
::-webkit-scrollbar {
    width: 8px; 
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #2c2f33;
}
::-webkit-scrollbar-thumb {
    background-color: #1a1c1e; 
    border-radius: 10px;
    border: 2px solid #2c2f33; 
}
* {
    scrollbar-width: thin;
    scrollbar-color: #1a1c1e #2c2f33;
}
#taskbar {
    position: sticky;
    display: flex;
    flex-direction: column;
    background-color: #0D0E0E;
    margin: 0;
    padding: 0;
    z-index: 1000;
    width: 100vw;
}
#alerts {
    background-color: #af0000;
    color: whitesmoke;
    padding: 0;
    height: 2rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: clip;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
#alerts.closed {
    transform: translateY(-100%);
    opacity: 0;
}
@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
#alerts h3 {
    animation: marquee 50s linear infinite;
    display: inline-block;
    margin: 0;
    padding: 0;
}
#alerts i {
    float: right;
    margin-right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}
#nav {
    display: flex;
    align-items: center;
    background-color: black;
    padding: 1.5rem 8rem;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.logo img {
    height: 60px;
    margin-right: 1rem;
}
.navitems {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.navitems a {
    color: whitesmoke;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: transform 0.2s ease, text-decoration 0.2s;
}
.navitems a:hover {
    transform: translateY(-3px);
    text-decoration: underline;
    color: #af0000;
}
.navlogin {
    margin-left: auto;
}
.navlogin a {
    display: inline-flex;
    align-items: center;
    background-color: #5a0000;
    color: whitesmoke;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s;
}
.navlogin a:hover {
    background-color: #af0000;
}
.navlogin i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}
.navlogin a:hover i {
    animation: bounce 0.5s;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}
#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #181A1B;
    max-width: 100vw;
    overflow-x: hidden;
}
.banner {
    width: 100vw;
    height: 100%;
    overflow: hidden;
    background-color: #181A1B;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.banner img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
}
#announcement {
    top: -50px;
    right: 30vw;
    width: 400px;
    padding: 1rem 8rem 1rem 1rem;
    background-color: #000000;
    border-right: 15px solid #6b0000;
    position: relative;
    z-index: 10;
    display: flex;
}
#announcement h2 {
    padding-right: 20px;
    color: #af0000;
    font-size: 2rem;
    font-weight: 700;
    border-right: 2px solid #5e5858;
    justify-content: center;
}
#announcement i {
    margin-right: 10px;
    font-size: 2rem;
    color: #af0000;
}
#announcement p {
    color: whitesmoke;
    font-size: 1.5rem;
    font-weight: 500;
    padding-left: 20px;
    padding-top: 8px;
    justify-content: center;
}
.footer {
    display: flex;
    justify-content: space-around;
    background-color: #0D0E0E;
    padding: 2rem 8rem;
}
.footersection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footersection h4 {
    color: whitesmoke;
    font-size: 1.1rem;
    font-weight: 700;
}
.footersection a, p {
    color: whitesmoke;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    transition: transform 0.2s ease, text-decoration 0.2s;
}
.footersection a:hover {
    transform: translateY(-3px);
    text-decoration: underline;
    color: #af0000;
}
#news {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: #181A1B;
    padding: 2rem 8rem;
    color: whitesmoke;
}

#news p {
    font-size: 0.9rem;
}

#news h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
#news i {
    background-color: #af0000;
    font-size: 1.2rem;
    padding: 0.5rem 0.6rem;
}

#news-content {
    display: flex;
    gap: 2rem;
    width: 100%;
}

#focus {
    flex: 1.5;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

#focus img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.focusimg {
    width: 45%;
}

#focus img:hover {
    filter: brightness(70%);
}

.focus-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.focus-text a {
    text-decoration: none;
}

.focus-text a h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: whitesmoke;
    transition: color 0.3s ease;
    margin: 0; 
}

.focus-text a h4:hover {
    color: #af0000; 
}

#reel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background-color: #222;
    border-radius: 5px;
    padding-bottom: 10px;
}

.section a {
    text-decoration: none;
}

.section a img {
    width: 100%;
    height: 100px;
    border-radius: 5px 5px 0 0;
    object-fit: cover;
    transition: filter 0.3s ease;
    margin: 0;
}

.section img:hover {
    filter: brightness(70%);
}

.section a h4 {
    font-size: 1rem;
    font-weight: 700;
    color: whitesmoke;
    transition: color 0.3s ease;
    margin: 0;
    padding-left: 0.5rem;
}

.section a h4:hover {
    color: #af0000;
}

.tags {
    display: flex;
    gap: 0.5rem;
    padding-left: 14px;
}

.tags a {
    background-color: #333;
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
    cursor:pointer;
}
#lodd {
    background-color: #181A1B;
    padding: 2rem 8rem;
    color: whitesmoke;
}

#lodd h2 {
    font-size: 2rem;
    font-weight: 700;
    color: whitesmoke;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#lodd i {
    background-color: #af0000;
    font-size: 1.2rem;
    padding: 0.5rem 0.6rem;
}

#loddsection {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem; /* Space between items */
}

.lodditem {
    display: flex;
    flex-direction: column;
    background-color: #222;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none; /* Remove underline */
    color: whitesmoke; /* Default text color */
    width: calc(33.333% - 2rem); /* Three items per row, with space in between */
}

.lodditem:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Shadow effect on hover */
}

.lodditem img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.lodditem img:hover {
    filter: brightness(80%); /* Darken effect on hover */
}

.lodditem h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1rem;
    color: whitesmoke;
    transition: color 0.3s ease;
}

.lodditem p {
    font-size: 0.9rem;
    margin: 0 1rem 1rem;
    line-height: 1.4;
    color: rgb(189, 189, 189)
}

.lodditem p:hover {
    color: whitesmoke;
}

.lodditem:hover h4 {
    color: #af0000;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: #181A1B;
    position: absolute;
    top: 126px;
    left: 0;
    width: 100vw;
    padding: 1rem;
    z-index: 1000;
    box-sizing: border-box;
}

.mobile-nav a {
    color: whitesmoke;
    text-decoration: none;
    padding: 0.5rem;
    border-bottom: 1px solid #2c2f33;
}

.hamburger-menu {
    display: none;
    font-size: 1.5rem;
    color: whitesmoke;
    cursor: pointer;
    margin-left: auto;
}

@media (max-width: 1450px) {
    #nav {
        padding: 1.5rem 5rem;
    }
    #announcement {
        right: 20vw;
        padding: 0.1rem 1rem 0.1rem 1rem;
    }
    #news {
        padding: 2rem 5rem;
    }
    #lodd {
        padding: 2rem 5rem;
    }
}
@media (max-width: 730px){
    #announcement {
        right: 10vw;
        padding: 0.1rem 0.1rem 0.1rem 0.1rem;
        width: 300px;
    }
    #announcement h2 {
        font-size: 1.5rem;
    }
    #announcement p {
        font-size: 1rem;
    }
    #nav {
        padding: 1rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .navitems, .navlogin {
        display: none;
    }
    .hamburger-menu {
        display: block;
    }
    #focus {
        flex-direction: column;
    }
    #focus img {
        width: 100%;
    }
    .focusimg {
        width: 100%;
    }
    .focus-text {
        margin-top: 1rem;
    }
    #news {
        padding: 0px 2rem 2rem 2rem;
    }
    #lodd {
        padding: 0px 2rem 2rem 2rem;
    }
    .footer {
        padding: 0px 2rem 2rem 2rem;
    }
}
@media (max-width: 600px){
    #announcement {
        top: -10px;
        right: 1vw;
        padding: 1px 1px 1px 10px;
        margin: 0;
        width: 250px;
    }
    #announcement i {
        font-size: 1.1rem;
    }
    #announcement h2 {
        font-size: 1.1rem;
    }
    #announcement p {
        font-size: 0.9rem;
    }
    #loddsection {
        gap: 1rem;
    }
    .lodditem {
        width: calc(50% - 1rem);
    }
    .footer {
        padding: 0px 1rem 1rem 1rem;
    }
    .footersection {
        margin-right: 40px;
    }
    #footerdepart{
        display: none;
    }
}