/* ============================================
   UiKit.css - Base Styles & Reset
   ============================================ */

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

/* Root Variables - Rely Design System */
:root {
    /* Background Colors */
    --color-bg-primary: #181818;
    --color-bg-secondary: #181818;
    --color-bg-card: rgba(255, 255, 255, 0.04);
    
    /* Brand Colors */
    --color-orange: #ff6600;
    --color-red: #ff0000;
    --color-burgundy: #990033;
    --color-purple: #7700cc;
    --color-blue: #0066ff;
    
    /* Text Colors */
    --color-text-primary: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.7);
    --color-text-tertiary: rgba(255, 255, 255, 0.5);
    
    /* Border Colors */
    --color-border-light: rgba(255, 255, 255, 0.08);
    --color-border-medium: rgba(255, 255, 255, 0.12);
    
    /* Gradients */
    --gradient-rainbow: linear-gradient(135deg, #0066ff, #0066ff, #7700cc, #990033, #ff0000, #ff6600, #ff0000, #990033, #7700cc, #0066ff, #0066ff);
    --gradient-button: linear-gradient(135deg, #ff6600, #ff0000);
    
    /* Inset + Outer Shadow System - Consistent Pattern */
    /* Usage: box-shadow: inset var(--inner-color), var(--outer-color); */
    
    /* White Shadows */
    --shadow-outer-white: 0 0 6px 1.5px rgb(255, 255, 255);
    --shadow-inner-white: 0 0 3px 1.5px rgb(255, 255, 255);
    
    /* Orange Shadows (#ff6600) */
    --shadow-outer-orange: 0 0 6px 1.5px rgb(255, 102, 0);
    --shadow-inner-orange: 0 0 3px 1.5px rgb(255, 102, 0);
    
    /* Red Shadows (#ff0000) */
    --shadow-outer-red: 0 0 6px 1.5px rgb(255, 0, 0);
    --shadow-inner-red: 0 0 3px 1.5px rgb(255, 0, 0);
    
    /* Burgundy Shadows (#990033) */
    --shadow-outer-burgundy: 0 0 6px 1.5px rgb(153, 0, 51);
    --shadow-inner-burgundy: 0 0 3px 1.5px rgb(153, 0, 51);
    
    /* Purple Shadows (#7700cc) */
    --shadow-outer-purple: 0 0 6px 1.5px rgb(119, 0, 204);
    --shadow-inner-purple: 0 0 3px 1.5px rgb(119, 0, 204);
    
    /* Blue Shadows (#0066ff) */
    --shadow-outer-blue: 0 0 6px 1.5px rgb(0, 102, 255);
    --shadow-inner-blue: 0 0 3px 1.5px rgb(0, 102, 255);
    
    /* Light Dark Shadows (for cards/subtle effects) */
    --shadow-outer-light-dark: 0 0 6px 1.5px rgb(35, 35, 35);
    --shadow-inner-light-dark: 0 0 3px 1.5px rgb(35, 35, 35);

    /* Dark Shadows (for cards/subtle effects) */
    --shadow-outer-dark: 0 0 6px 1.5px rgb(25, 25, 25);
    --shadow-inner-dark: 0 0 3px 1.5px rgb(25, 25, 25);
    
    /* Card Shadow (for elevation) */
    --shadow-card-base: 0 8px 32px rgba(0, 0, 0, 0.4);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Typography */
body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    background-color: var(--color-bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-text-primary);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-orange);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-text-primary);
}

/* Text Utilities */
.text-gradient {
    background: var(--gradient-rainbow);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 10s linear infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.text-glow {
    text-shadow: var(--glow-orange);
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

