body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Courier New', monospace;
    background-color: #151616;}

.container {
    background: rgba(11, 2, 94, 0.7);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 200px;
}

#timer {
    font-size: 3.5rem;
    color: #0ab858;
    margin: 1rem 0;
    text-shadow: 0 0 10px #3300ff80;
}

.controls {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

button {
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#playBtn {
    background-color: #14b74a;
    color: rgba(9, 100, 153, 0.923);
}




button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

#rocket {
    display: none;
    position: fixed;
    bottom: 0;
    left: 50%;
    font-size: 5rem;
    transform: translateX(-50%);
}

#message {
    display: none;
    font-size: 6rem;
    color: #bbd12a;
    text-shadow: 0 0 15px #ff000080;
    margin-top: 2rem;
}

.input-container {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-container label {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.input-container input {
    padding: 0.5rem;
    font-size: 1rem;
    border-radius: 5px;
    border: none;
    text-align: center;
    width: 60px;
}

#videoContainer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: #000;
}

#launchVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes launch {
    0% {
        bottom: 0;
        opacity: 1;
    }
    100% {
        bottom: 100vh;
        opacity: 0;
    }
}

@media (max-width: 480px) {
    #timer {
        font-size: 2.5rem;
    }
    
    button {
        width: 100%;
        padding: 1rem;
    }
}

footer {
  text-align: center;
  font-size: 1.1rem;
  color: #ffffff;
  margin-top: auto;
  padding: 16px 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.4);
  letter-spacing: 1px;
  font-weight: bold;
  border-top: 2px solid #00bfff;
}
footer a {
  color: #c5c8ca;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}
