/*!*******************************************************************
 * BASE.CSS - SoulsInfoTech Dimensional UI Base Styles
 * 
 * Copyright (c) 2025 Souls InfoTech. All rights reserved.
 * Author: SoulsInfoTech Development Team
 * Website: https://soulsinfotech.com
 * 
 * This software is the proprietary property of Souls InfoTech.
 * Unauthorized copying, modification, distribution, or use of this
 * software, via any medium, is strictly prohibited without prior
 * written permission from Souls InfoTech.
 * 
 * Licensed under proprietary license.
 * For licensing inquiries, contact: info@soulsinfotech.com
 * 
 * Description: Base styles including fonts, colors, typography,
 * and global styles for the SoulsInfoTech Dimensional UI.
 * 
 * Version: 1.0.0
 * Last Updated: 2025-11-28
 *******************************************************************!*/

/* Brand Color Variables */
:root {
    --primary: #000000;
    --secondary: #D80828;
    --accent: #27F7D7;
    --glass: rgba(255, 255, 255, 0.06);
    --panel-bg: rgba(0, 0, 0, 0.55);
    --text: #d7ffff;
}

/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #000;
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 15px var(--accent);
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: 6px;
}

h2 {
    font-size: 2rem;
    margin-top: 50px;
}

h3 {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

p {
    margin: 15px 0;
    line-height: 1.8;
}

/* Links */
a {
    color: var(--accent);
    text-decoration: none;
    transition: 0.2s;
}

a:hover {
    color: var(--secondary);
    text-shadow: 0 0 10px var(--secondary);
}

/* Holographic Grid Background */
/*
.grid-bg {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(39, 247, 215, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(39, 247, 215, 0.12) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: -1;
}
*/