/* =====================
   CORE ELEMENTS (Updated Background)
===================== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');

:root {
    --bg-dark: #0a0e1a;
    --card-bg: #1a2a4a;
    --accent-cyan: #a3f7ff;
    --accent-blue: #244466;
    --border-light: rgba(163, 247, 255, 0.12);
}

body {
    /* Updated to the requested radial gradient */
    background: radial-gradient(circle at center, #1a2a4a 0%, #0a0e1a 100%);
    background-attachment: fixed; /* Keeps gradient in place while scrolling */
    color: #dfe7f7;
    font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
    margin-top: 60px;
    margin-bottom: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Footer */
footer {
    background: #0d1226;
    color: white;
    padding: 20px;
    text-align: center;
    border-top: 1px solid var(--border-light);
    margin-top: auto;
    margin-bottom: 0px;
}

footer a {
    color: #7aa7d8;
    margin: 0 10px;
    text-decoration: none;
}

footer a:hover {
    color: var(--accent-cyan);
}

h1 {
    color: #cfe6ff;
    font-size: 40px;
    font-family: "Bebas Neue", sans-serif;
    text-shadow: 0 2px 10px rgba(163, 247, 255, 0.2);
}

#plus-description {
    background: var(--card-bg); /* Using the synced card color */
    backdrop-filter: blur(8px);
    border-radius: 12px;
    margin: 0 100px 80px 100px;
    padding: 30px;
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}

#plus-description p {
    color: #e6eef8;
    font-size: 22px;
    font-family: "Bebas Neue", sans-serif;
    margin: 0 50px;
    text-shadow: none;
}

.status {
    padding: 8px 18px;
    background: var(--accent-blue);
    color: #d9f1ff;
    transition: all 0.25s;
    border: 1px solid var(--border-light);
    border-radius: 6px;
}

.status:hover {
    background: var(--accent-cyan);
    color: #0a0e1a;
    transform: translateY(-2px);
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Gallery and Menus synced to the new palette */
div.gallery {
    border: 1px solid var(--border-light);
    background: rgba(26, 42, 74, 0.4);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    overflow: hidden;
}

div.desc {
    padding: 15px;
    text-align: center;
    font-family: "Space Grotesk";
    color: var(--accent-cyan);
}

.side-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background: #0b1220;
    border-right: 1px solid var(--border-light);
    overflow-x: hidden;
    padding-top: 60px;
    transition: 0.4s;
}

.menu-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    background: var(--accent-blue);
    color: var(--accent-cyan);
    border: 1px solid var(--border-light);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle:hover {
    background: #2d5580;
}
