body {
    background: #111;
    color: #d3d3d3;
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
header {
    background: #181818;
    padding: 1.5rem 0 1rem 0;
    text-align: center;
    border-bottom: 1px solid #222;
    position: relative;
}
.header-separator {
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #ff4c4c, #ff4c4c 80%, transparent 100%);
    border: none;
    margin: 0;
}
h1 {
    margin: 0 0 0.5rem 0;
    font-size: 2.5rem;
    letter-spacing: 2px;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}
nav a {
    color: #d3d3d3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
nav a:hover {
    color: #ff4c4c;
}
.intro {
    max-width: 600px;
    margin: 3rem auto;
    text-align: center;
}
.slogan {
    font-size: 1.3rem;
    color: #ff4c4c;
    margin-top: 2rem;
    font-style: italic;
}
main {
    flex: 1;
    padding-bottom: 2.5rem; /* Prevent footer overlap */
}
footer {
    text-align: center;
    padding: 1rem 0;
    background: #181818;
    border-top: 1px solid #222;
    color: #888;
    width: 100%;
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.footer-hex {
    width: 40px;
    height: 40px;
    display: inline-block;
}
.centered-text {
    text-align: center;
    margin: 0 auto;
    display: block;
    font-size: 1.1rem;
}
.slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    max-width: 600px;
}
.slider {
    width: 400px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px #000a;
}
.slider-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #222;
}
.slider-btn {
    background: #181818;
    color: #d3d3d3;
    border: none;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s;
}
.slider-btn:hover {
    background: #ff4c4c;
    color: #fff;
}
