/* ==========================================================================
   KTK Designed - Design System Variables & Reset
   ========================================================================== */

:root {
    /* Colors - Deep Dark & Neon */
    --color-bg-primary: #070C14;
    --color-bg-secondary: #0D1526;
    
    --color-accent-blue: #3B82F6;
    --color-accent-cyan: #06B6D4;
    --color-accent-purple: #8B5CF6;
    
    --color-text-primary: #FFFFFF;
    --color-text-secondary: rgba(255, 255, 255, 0.55);
    
    --color-border-glass: rgba(59, 130, 246, 0.2);
    --color-glow-blue: rgba(59, 130, 246, 0.15);
    
    /* Typography */
    --font-heading: 'Bebas Neue', sans-serif;
    --font-section: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;

    /* Layout */
    --max-width: 1440px;
    --container-padding: 2rem;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    font-family: var(--font-body);
    line-height: 1.6;
}

/* Base Elements */
a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

img, video, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
