/* Global layout, typography, cursor, fade-in */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    background: #000;
    color: #fff;
    font-family: "Poppins", Arial, sans-serif;
    cursor: none;
}

/* Custom cursor */
.cursor {
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: 0.08s ease;
    z-index: 9999;
}

/* Titles and sections */
.page-title {
    text-align: center;
    margin-top: 40px;
    font-size: 2.4rem;
}

.section {
    width: 80%;
    max-width: 900px;
    margin: 40px auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1.05rem;
    background: #fff;
    color: #111;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.25s ease;
    text-decoration: none;
}

.btn:hover {
    transform: scale(1.07);
}

/* Back button */
.back-btn {
    margin: 40px auto;
    display: block;
}

/* Fade-in sections */
.fade-section {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s ease;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Simple navbar */
.navbar {
    width: 100%;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 16px;
    font-size: 0.95rem;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px 0 30px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 8px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    text-decoration: underline;
}
