:root {
    --iqdit-red: #ff0000;
    --iqdit-blue: #0000ff;
    --iqdit-yellow: #ffff00;
  }
  
  body {
    /* background-color: #212529; */
    /* height: 100vh; */
    margin: 0;
    /* overflow: hidden; */
  }
  
  #loading-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 37, 41, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* To hide by default, uncomment the next line */
    /* display: none; */
  }
  
  .iqdit-spinner-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
  }
  
  .color-burst {
    position: absolute;
    width: 300px;
    height: 300px;
    opacity: 0.6;
    mix-blend-mode: screen;
    filter: blur(10px);
    animation: rotate 10s linear infinite;
    background: radial-gradient(circle at 30% 30%, var(--iqdit-red) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, var(--iqdit-blue) 0%, transparent 50%),
                radial-gradient(circle at 50% 20%, var(--iqdit-yellow) 0%, transparent 50%);
  }
  
  .logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
  }
  
  .i-letter {
    position: absolute;
    font-size: 5rem;
    font-weight: bold;
    color: white;
    transform: translateX(-25px);
    z-index: 15;
    text-shadow: 
      0 0 15px rgba(255,255,255,0.8),
      2px 2px 0 var(--iqdit-red),
      -2px -2px 0 var(--iqdit-blue);
    animation: color-shift-i 3s infinite;
  }
  
  .q-letter {
    position: absolute;
    font-size: 5.5rem;
    font-weight: bold;
    color: white;
    transform: translateX(25px);
    z-index: 15;
    text-shadow: 
      0 0 15px rgba(255,255,255,0.8),
      2px 2px 0 var(--iqdit-yellow),
      -2px -2px 0 var(--iqdit-blue);
    animation: color-shift-q 3s infinite;
  }
  
  .outer-ring {
    position: absolute;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--iqdit-red);
    border-bottom-color: var(--iqdit-blue);
    border-left-color: var(--iqdit-yellow);
    border-right-color: #00ff00;
    animation: spin 5s linear infinite;
  }
  
  .ring-1 {
    width: 220px;
    height: 220px;
    filter: blur(1px);
  }
  
  .ring-2 {
    width: 260px;
    height: 260px;
    animation-direction: reverse;
    filter: blur(2px);
  }
  
  .domain-name {
    position: absolute;
    bottom: -50px;
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(90deg, var(--iqdit-red), var(--iqdit-yellow), var(--iqdit-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
  }
  
  .splash {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    filter: blur(5px);
    opacity: 0;
    z-index: 1;
    animation: splash-appear 3s ease-out infinite;
  }
  
  .splash:nth-child(1) { 
    background-color: var(--iqdit-red);
    left: 120px;
    top: 120px;
  }
  .splash:nth-child(2) { 
    background-color: var(--iqdit-blue);
    left: 180px;
    top: 180px;
    animation-delay: -1s;
  }
  .splash:nth-child(3) { 
    background-color: var(--iqdit-yellow);
    left: 150px;
    top: 130px;
    animation-delay: -2s;
  }
  
  .progress {
    position: absolute;
    bottom: -80px;
    width: 200px;
    height: 6px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255,255,255,0.1);
  }
  
  .progress-bar {
    background: linear-gradient(90deg, var(--iqdit-red), var(--iqdit-yellow), var(--iqdit-blue));
    width: 30%;
    animation: progress-animation 2s ease-in-out infinite;
  }
  
  @keyframes color-shift-i {
    0% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(180deg); }
    100% { filter: hue-rotate(360deg); }
  }
  
  @keyframes color-shift-q {
    0% { filter: hue-rotate(90deg); }
    50% { filter: hue-rotate(270deg); }
    100% { filter: hue-rotate(450deg); }
  }
  
  @keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  @keyframes splash-appear {
    0% { transform: scale(0.1); opacity: 0.9; }
    70% { opacity: 0.7; }
    100% { transform: scale(2); opacity: 0; }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  @keyframes progress-animation {
    0% { width: 5%; margin-left: 0%; }
    50% { width: 30%; }
    100% { width: 5%; margin-left: 95%; }
  }