* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'HFT';
    src: url('../assets/font.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CSS VARIABLES - DRY Refactoring
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
:root {
    /* Colors - Glass Morphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-bg-hover: rgba(255, 255, 255, 0.08);
    --glass-bg-active: rgba(255, 255, 255, 0.12);
    --glass-bg-lighter: rgba(255, 255, 255, 0.1);
    --glass-bg-lightest: rgba(255, 255, 255, 0.15);

    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-hover: rgba(255, 255, 255, 0.15);
    --glass-border-strong: rgba(255, 255, 255, 0.2);
    --glass-border-stronger: rgba(255, 255, 255, 0.3);

    /* Primary Colors */
    --primary-blue: #0088cc;
    --danger-red: #ef4444;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #ccc;
    --text-muted: #aaa;
    --text-dim: #888;
    --text-darker: #666;

    /* Backgrounds */
    --bg-dark: #1a1a1a;
    --bg-darker: #000;
    --bg-transparent-light: rgba(255, 255, 255, 0.03);

    /* Border Radius */
    --radius-xs: 6px;
    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 18px;
    --radius-3xl: 24px;

    /* Effects */
    --blur-light: blur(6px);
    --blur-medium: blur(10px);
    --blur-heavy: blur(40px);
    --backdrop-saturate: saturate(180%);

    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.3s ease;
    --transition-bounce: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elastic: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}


body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #000;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../assets/background.png?v=1');
    background-size: auto;
    background-position: center top;
    background-repeat: repeat;
    background-attachment: scroll;
    color: #ffffff;
    min-height: 100vh;
    padding-top: var(--tg-safe-area-inset-top, env(safe-area-inset-top));
    padding-bottom: 80px;
    position: relative;
}

