/* === test7 — AxonStellar Dark Cosmic Theme === */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #050510;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* === Navbar === */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    background: rgba(10, 10, 30, 0.9);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    position: relative;
    z-index: 110;
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #00f0ff;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #00f0ff;
}

/* === Main Content === */
.main-content {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === Background Image === */
.bg-image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(180deg);
    filter: brightness(0.95);
}

/* === 2-Column Grid Overlay === */
.grid-overlay {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 65%;
    max-width: 600px;
    min-height: 250px;
}

.grid-cell {
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 32px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(4px);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.grid-cell:hover {
    background: rgba(0, 240, 255, 0.06);
    border-color: rgba(0, 240, 255, 0.25);
}

/* === Footer === */
.footer {
    padding: 24px 32px;
    background: rgba(10, 10, 30, 0.95);
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    text-align: center;
    z-index: 103;
}

.footer p {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

.footer strong {
    color: #b0b0b0;
}

/* === Responsive === */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 20px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .grid-overlay {
        width: 90%;
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 16px 20px;
    }
}
