/* ==========================================================================
   1. SATOSHI VARIABLE FONT DEFINITION
   ========================================================================== */
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Variable.woff2') format('woff2-variations'),
       url('../fonts/Satoshi-Variable.woff') format('woff');
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}

/* ==========================================================================
   2. SITE LAYOUT & STYLING
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Now seamlessly utilizing your local Satoshi Variable font */
    font-family: 'Satoshi', system-ui, -apple-system, sans-serif;
    background: #0c2b59;
    color: #ffffff;
}

/* Particle Container */
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Center Content Wrapper */
.center-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

/* The Massive Rotating @ Symbol */
.rotating-symbol {
    font-size: 85vh; 
    font-weight: 300; /* Uses the light variant dynamically from the variable font */
    line-height: 1;
    color: rgba(255, 255, 255, 0.2); 
    animation: spin 90s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}