body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
    background-color: #121212; /* Dark background */
    color: #ffffff; /* Light text color */
}

#app {
    max-width: 100vw;
    overflow-x: hidden;
    min-height: 100%;
    position: relative;
    padding-bottom: 60px; /* Height of the sticky bottom bar */
    box-sizing: border-box;
}

.wallpaper-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
}

.wallpaper-item {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}

#enlarged-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(30, 30, 30, 0.9); /* Darker background */
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.enlarged-content {
    position: relative;
    width: 80%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#enlarged-image {
    max-width: calc(100% - 30px);
    max-height: 100vh; 
    object-fit: contain;
    border-radius: 10px;
}

.bottom-bar {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 1px); /* Full width minus padding */
    max-width: 900px; 
    background-color: rgba(30, 30, 30, 0.8); /* Dark background */
    backdrop-filter: blur(10px);
    padding: 10px;
    color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    box-sizing: border-box;
}

.bottom-bar h2, .bottom-bar p {
    margin: 5px 0;
    flex-basis: 100%;
}

#image-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 5px;
    flex-basis: 100%;
}

.tag {
    background-color: rgba(255, 255, 255, 0.2); /* Light tag background */
    padding: 3px 8px;
    border-radius: 15px;
    font-size: 0.8em;
    color: #ffffff; /* Light text for tags */
}

.icon-btn {
    background-color: transparent;
    border: none;
    color: white;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: background-color 0.3s;
}

.icon-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    background-color: rgba(30, 30, 30, 0.8); /* Dark background */
    backdrop-filter: blur(10px);
    padding: 10px;
    z-index: 900;
    box-sizing: border-box;
}

.sticky-bottom-bar .icon-btn {
    flex: 1;
    border-radius: 5px;
    margin: 0 5px;
    max-width: 33.33%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    padding-bottom: 15px; /* Add space for the indicator */
}

.sticky-bottom-bar .icon-btn.active {
    color: #ffffff; /* Change text color for active button */
    background-color: rgba(255, 255, 255, 0.1);
    
}

.sticky-bottom-bar .icon-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: #ffffff; /* Bright green indicator */
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.hidden {
    display: none !important;
}

#tag-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}

#tag-cloud .tag {
    font-size: 1em;
    padding: 5px 10px;
    background-color: rgba(76, 76, 76, 0.6); /* Light green tag */
    color: white; /* Light text for tag cloud */
    cursor: pointer;
}

#profile {
    padding: 20px;
}
#profile2 {
    padding: 20px;
    background-color: rgba(30, 30, 30, 0.8); /* Dark background */
    border-radius: 10px;
    max-width: 600px;
    margin: auto;
    color: white; /* Light text color */
    text-align: center; /* Centered text */
}

.profile-header {
    margin-bottom: 20px;
}

.profile-pic {
    width: 100px; 
    height: 100px;
    border-radius: 10%; /* Circle shape */
    object-fit: cover; /* Maintain aspect ratio */
    border: 2px solid white; /* Optional border */
}

.about-me {
    font-size: 1em;
    margin: 10px 0;
}

.link-list {
    list-style: none; /* Remove bullet points */
    padding: 0;
}

.link-item {
    color: #76ff03; /* Bright link color for visibility */
    text-decoration: none;
    font-size: 1.1em;
}

.link-item:hover {
    text-decoration: underline; /* Underline on hover */
}
.centered-header {
    text-align: center; /* Center the text */
    position: relative; /* Needed for positioning */
    font-size: 2.5em; 
    color: white; /* Text color */
    margin: 30px 0; /* Margin for spacing */
    height: 5vh; /* Set the height of the header */
    overflow: hidden; /* Hide any overflow */
}

.header-image {
    position: absolute; /* Position the image absolutely within the header */
    top: 50%; /* Center the image vertically */
    left: 50%; /* Center the image horizontally */
    transform: translate(-50%, -50%); /* Center the image using transform */
    width: 80%; /* Set the width to full width of the header */
    height: auto; /* Allow height to adjust automatically to maintain aspect ratio */
    max-height: 100%; /* Prevent the image from exceeding the height of the header */
    object-fit: contain; /* Maintain aspect ratio, scale image to fit within the header */
    z-index: 1; /* Ensure the image is on top */
}




.button-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 10px; /* Space between buttons */
    padding: 20px; /* Padding around the grid */
}

.grid-button {
    background-color: rgba(255, 255, 255, 0.1); /* Dark background for buttons */
    color: #ffffff; /* Light text color */
    padding: 15px; /* Padding inside the button */
    text-align: center; /* Center text */
    border-radius: 10px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s; /* Smooth background change */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* Subtle shadow for depth */
}

.grid-button:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Lighter background on hover */
}
#count-number {
    font-weight: bold;
}
