body { 
    font-family: Arial, sans-serif;
    color:#f0f0f0;
    margin: 0; 
    padding: 0; 
    background-color: #383838
}
#header { 
    position: relative;
    color: #ffffff;
    text-align: center;
    border-radius: 10px;
    font-family: 'Roboto', 'Arial', sans-serif;
    display: flex; 
    flex-wrap: wrap; 
    flex-direction: column;
    gap: 0px; 
    padding: 0px 20px; 
    justify-content: center; 
    background: linear-gradient(90deg, #04174e, #1b1287);
    text-align: center;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid #fff;
    width: 50%;
    margin: 10px auto;  
}
.title {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 4px 4px 10px rgba(255, 255, 255, 0.5);
}
.subtitle {
    color: #e5e7eb;
    font-size: 1rem;
    margin-top: 5px;
}
.bottom-link {
    position: absolute;
    top: 5px;
    right: 5px;
    color: #ffcc00; /* Bright yellow for contrast */
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.2); /* Subtle background */
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.bottom-link:hover {
    background-color: rgba(255, 204, 0, 0.8); /* Brighter yellow on hover */
    color: #2c2f7c; /* Blue text on hover */
}
#footer { 
    display: flex; 
    flex-wrap: wrap; 
    flex-direction: column;
    font-size: 13px;
    gap: 10px; 
    padding: 10px; 
    justify-content: center; 
    /* background-color:#32306d ; */
    text-align: center;
}
.container { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 20px; 
    padding: 20px; 
    justify-content: center; 
}
.container-d { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 20px; 
    padding: 20px; 
    justify-content: center; 
    flex-direction: column;
    align-items: center;
}
.tile {
    position: relative;
    width: 200px; 
    height: 125px; 
    background-color: #434343; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    border: 1px solid #ccc; 
    border-radius: 5px; 
    cursor: pointer; 
}
.tile:hover { 
    background-color: #5b5b5b; 
}
.tile-check {
    position: absolute;
    bottom: 5px;
    right: 5px;
    color: #ffcc00; /* Bright yellow for contrast */
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.2); /* Subtle background */
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
a { 
    text-decoration: none; 
    color: inherit; 
}
.timeline-container {
    width: 80%;
    position: relative;
    align-items: center; 
    margin: auto;
}
.objectives {
    width: 90%;
    position: relative;
}
#objectives {
    transform: translateX(3%);
}
#actions {
    transform: translateX(3%);
}
.actions {
    width: 90%;
    position: relative;
    align-items: center; 
}
.section-title {
    letter-spacing: 0.3em;
    text-align: center;
    font-weight: bold;
    padding: 1em;
}
.patreon-link {
    text-align: center;
    font-weight: bold;
    padding: 1em;
    background-color: rgb(134, 19, 19);
    width:fit-content;
    border-radius: 10px;
}
.link {
    color:#fce37f;
}
.linkNews {
    color:#fce37f;
}
.latestNews {
    width: 80%;
    position: relative;
    align-items: center; 
    padding-top: 5%;
    left: 10%;
    padding-bottom: 5%;
}
#timeline {
    position: relative;
    height: 4px;
    background-color: white;
    width: 100%;
    /* margin: 50px 0; */
    margin-bottom: 50px;
    transition: all 0.2s ease;
}
.circle {
    position: absolute;
    left: calc(var(--position, 0) * 100%);
    top: -10px;
    width: 20px;
    height: 20px;
    background-color: #383838;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transition: all 0.6s ease;
}
.label {
    position: absolute;
    left: calc(var(--position, 0) * 100%);
    top: 20px;
    width: 100px;
    height: 20px;
    background-color: #383838;
    font-size: 12px;
    transition: all 0.6s ease;
    transform: translateX(-37%);
    text-align: center;
}
/* Media Query for Narrow Screens */
@media (max-width: 900px) {
    #timeline {
        width: 4px;
        height: 300px;
        /* margin: 0 auto; */
    }

    .circle {
        top: calc(var(--position, 0) * 100%);
        left: -10px; 
    }

    .label {
        top: calc(var(--position, 0) * 100%);
        left: 20px; 
        width: 200px;
        transform: translateY(+25%);
    }
    .title {
        font-size: 1.8rem;
    }
    .subtitle {
        font-size: 0.9rem;
    }
}

#listitem {
    font-size: 14px;
}

.store-ad {
    transform: scale(0.75); /* Scale down to 75% */
    transform-origin: center; /* Scale from the center */
    border-radius: 5px;
}