/**
 * SITE.CSS - Master stylesheet for entire Oracle Collective Platform
 * ====================================================================
 *
 * ONE stylesheet to rule them all.
 * Every page includes this file.
 *
 * Copyright (c) 2026 Tammy L Casey. All rights reserved.
 */

/* PARTICLE CANVAS */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* MAIN CONTENT CONTAINER */
.page-container {
    position: relative;
    z-index: 10;
}

/* GOLD BORDER FRAME */
.glowing-frame {
    position: fixed;
    inset: 1rem;
    border: 3px solid #D4AF37;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6),
                0 0 60px rgba(212, 175, 55, 0.3),
                inset 0 0 30px rgba(0, 0, 0, 0.8);
    z-index: 2;
    pointer-events: none;
}

/* UNIVERSAL PAGE STYLES */
body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #c0c0c0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

h1, h2, h3 {
    color: #d4af37;
}

/* BUTTONS */
.btn-primary {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: #000;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.btn-secondary {
    background: transparent;
    color: #c0c0c0;
    border: 1px solid #c0c0c0;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
}
