/* Timer Modern Design */
.base-timer {
    position: relative;
    width: 200px;
    height: 200px;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 50%;
    padding: 15px;
    box-shadow: 
      0 20px 60px rgba(0,0,0,0.3),
      inset 0 2px 10px rgba(255,255,255,0.2),
      0 0 40px rgba(102, 126, 234, 0.2);
    backdrop-filter: blur(10px);
  }

  .base-timer::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(30,30,50,0.9), rgba(20,20,40,0.95));
    z-index: -1;
  }

  .base-timer::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.5), rgba(118, 75, 162, 0.5));
    z-index: -2;
    opacity: 0.6;
  }
  
  .base-timer__label {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    font-weight: 800;
    font-family: 'Orbitron', 'Segoe UI', sans-serif;
    color: #ffffff;
    text-shadow: 
      0 0 20px rgba(255,255,255,0.5),
      0 0 40px rgba(102, 126, 234, 0.3);
    letter-spacing: 2px;
  }
  
  .base-timer__svg {
    transform: scaleX(-1);
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.5));
  }
  
  .base-timer__circle {
    fill: none;
    stroke: none;
  }
  
  .base-timer__path-elapsed {
    stroke-width: 10px;
    stroke: rgba(255,255,255,0.1);
  }
  
  .base-timer__path-remaining {
    stroke-width: 10px;
    stroke-linecap: round;
    transform: rotate(90deg);
    transform-origin: center;
    transition: 1s linear all;
    fill-rule: nonzero;
    stroke: currentColor;
    filter: drop-shadow(0 0 8px currentColor);
  }
  
  .base-timer__path-remaining.green {
    color: #00e676;
    filter: drop-shadow(0 0 15px rgba(0, 230, 118, 0.8));
  }
  
  .base-timer__path-remaining.orange {
    color: #ffab00;
    filter: drop-shadow(0 0 15px rgba(255, 171, 0, 0.8));
  }
  
  .base-timer__path-remaining.red {
    color: #ff1744;
    filter: drop-shadow(0 0 15px rgba(255, 23, 68, 0.8));
    animation: pulse-red 0.5s ease-in-out infinite alternate;
  }

  @keyframes pulse-red {
    from {
      filter: drop-shadow(0 0 15px rgba(255, 23, 68, 0.6));
    }
    to {
      filter: drop-shadow(0 0 25px rgba(255, 23, 68, 1));
    }
  }

  /* Timer container styling */
  #app {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Responsive timer */
  @media (max-width: 576px) {
    .base-timer {
      width: 150px;
      height: 150px;
    }
    
    .base-timer__label {
      width: 150px;
      height: 150px;
      font-size: 38px;
    }
    
    .base-timer__path-elapsed,
    .base-timer__path-remaining {
      stroke-width: 8px;
    }
  }
  
  