/* General Page Styling */
body {
    background-color: #0d1b1e; /* Dark deep-sea blue/black */
    color: #e0f2f1;           /* Off-white for easy reading */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 100px 20px 20px;
}

/* Header & Titles */
h1 {
    color: #4db6ac;           /* Bioluminescent teal */
    font-size: 3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h3 {
    color: #80cbc4;
    border-bottom: 1px solid #264d4d;
    display: inline-block;
    padding-bottom: 5px;
    margin-top: 0;
}

/* Content Containers */
section {
    margin-bottom: 40px;
    max-width: 850px;
}

/* The List Fix - Keeping bullets aligned but centered on page */
ul {
    padding-left: 20px;
    margin: 10px 0;
}

li {
    margin-bottom: 8px;
}

/* Image/Screenshot Styling */
img {
    border: 4px solid #264d4d;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(77, 182, 172, 0.2);
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.02); /* Slight zoom when hovering */
}

.corner-logo {
    position: fixed;
    top: 16px;
    width: 64px !important;
    height: 64px !important;
    object-fit: cover;
    border: none !important;
    border-radius: 10px;
    box-shadow: none !important;
    z-index: 20;
}

.corner-logo-left {
    left: 16px;
}

.corner-logo-right {
    right: 16px;
}

.corner-logo:hover {
    transform: none;
}

.header-cap-bottom {
    width: min(920px, 95vw);
    height: auto;
    display: block;
    margin: 10px auto 0;
}

.major-features-section h3 {
    display: block;
    width: fit-content;
    margin: 0 auto 12px;
}

.feature-list-wrap {
    display: block !important;
    width: fit-content;
    margin: 0 auto;
    text-align: left !important;
}

/* Links (Discord, etc) */
a {
    color: #4db6ac;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #b2dfdb;
    text-decoration: underline;
}

/* Footer / Horizontal Rule */
hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #4db6ac, transparent);
    margin: 40px 0;
}

footer {
    opacity: 0.8;
    font-size: 0.9rem;
}
