html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Prevents scrolling */
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/static/images/confus-cat-coder.jpg') no-repeat center center fixed;
    background-size: contain; /* Ensure the whole image fits */
    opacity: 0.90; /* 75% transparency */
    z-index: -1; /* Moves background behind the text */
}

h1 {
    position: absolute;
    top: 20px; /* Adjusts vertical position */
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    text-align: center;
    background: linear-gradient(90deg, #00ff00, #0099ff); /* Green to Blue gradient */
    -webkit-background-clip: text; /* Clips background to text */
    -webkit-text-fill-color: transparent; /* Makes text color transparent so gradient is visible */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Adds readability */
}

/* Style for the URL Guide Title */
.url-guide-title {
    position: absolute;
    top: 50px; /* Adjust position */
    left: 20px;
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(90deg, #00ff00, #009900); /* Green gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Style for the URL List */
.url-list {
    position: absolute;
    top: 90px; /* Adjust position below the title */
    left: 20px;
    list-style: none;
    padding: 0;
}

.url-list li {
    margin: 10px 0;
}

.url-list a {
    text-decoration: none;
    font-size: 1.2rem;
    color: #00ccff; /* Light blue for links */
    transition: color 0.3s ease;
}

.url-list a:hover {
    color: #ffcc00; /* Yellow on hover */
}

/* Container Styling */
.container {
    text-align: center;
    padding: 40px;
}

/* Page Title with Gradient */
.page-title {
    font-size: 2rem;
    background: linear-gradient(90deg, #ff6b6b, #6b6bff, #6bff6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

/* Cute Cat Icon */
.cat-icon {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}

/* File List */
.file-list {
    list-style: none;
    padding: 0;
}

.file-list li {
    margin: 10px 0;
}

.file-list a { 
    font-size: 1.2rem;
    font-weight: bold;
    color: #00A572; /* Metallic Green */
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 4px rgba(0, 255, 128, 0.6); /* Metallic shine effect */
}


.file-list a:hover {
    text-decoration: underline;
    color: #00FF99; /* Brighter metallic green */
    text-shadow: 2px 2px 6px rgba(0, 255, 128, 1);
}

/* Small Cat Footer */
.cat-footer {
    margin-top: 30px;
    font-size: 1.2rem;
    color: #555;
    font-weight: bold;
}

footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5); /* Optional: Adds a subtle background for better visibility */
    padding: 5px 0;
}

