/* 기본 */
body {
    background-color: #000000;
    margin: 0;
    overflow: hidden;
    user-select: none;
    font-family: "Climate Crisis", sans-serif;
}

/* 타이틀 */
.title {
  font-family: "Climate Crisis", sans-serif;
  font-weight: 400px;
  font-size: 200px;
  font-style: normal;
  font-variation-settings: "YEAR" 1986;
  text-align: center;
  letter-spacing: 2px;
  z-index: 10;
  position: relative;
  color: #ffffff;
  line-height: 100%;
}
.subtitle{
    font-family: 'Courier New', Courier, monospace;
    font-size: 50px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    color: #fdffb6;
    letter-spacing: 2px;
    margin-top: -100px;
}



/* 드로잉 */
.dot {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    z-index: 999999;
    transition: transform 0.4s ease;
}


/* 1. fluffy  */
.fluffy {
    background: rgba(255, 94, 0, 0.9);
    animation: fluffyPop 1.6s ease-in-out infinite alternate;
}

@keyframes fluffyPop {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.7); opacity: 0.4; }
}

/* 2. glossy  */
.glossy {
    background: radial-gradient(circle at 30% 30%, #ff00aa, #ffff00);
    filter: contrast(150%) brightness(130%);
}


/* 4. gummy */
.gummy {
    background: rgb(0, 247, 255);
    animation: gummyBounce 0.5s cubic-bezier(0.33, 1.6, 0.66, 1);
}

@keyframes gummyBounce {
    0%   { transform: scale(1); }
    30%  { transform: scale(1.4, 0.8) translateY(-6px); }
    60%  { transform: scale(0.9, 1.1) translateY(3px); }
    100% { transform: scale(1); }
}

/* 5. rigid  */
.rigid {
    background: #2600ff;
    border-radius: 0; 
    transform: rotate(45deg);
}

.next-btn {
    position: fixed;
    top: 30px;
    right: 40px;

   font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 117%;
  letter-spacing: 0px;
  padding: 8px 15px;

    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    cursor: pointer;

    transition: all 0.3s ease;
    z-index: 999999;
}

.next-btn:hover {
    background: #fff;
    color: #000;
    transform: scale(1.1);
}
