body {
    font-family: Arial;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: white;
    text-align: center;
}

.container {
    width: 85%;
    margin: auto;
    margin-top: 20px;
    padding: 25px;
    border-radius: 15px;
    position: relative;

    border: 3px solid transparent;
    background:
        linear-gradient(#203a43,#203a43) padding-box,
        linear-gradient(45deg, orange, cyan) border-box;
}

.logo {
    position: absolute;
    left: 15px;
    top: 15px;
    width: 150px;
}
/* LOGO STYLE */
.logo-container {
    display: flex;
    align-items: left;
}

/* LOGO IMAGE */
.logo {
    width: 150px;
    animation: floatLogo 3s ease-in-out infinite;
}

/* 2 PULSE EFFECT */
.logo {
    width: 150px;
    animation: pulse 2s infinite;
}

/*  ANIMATION */
@keyframes pulse {
    0% {
        filter: drop-shadow(0 0 5px cyan);
    }
    50% {
        filter: drop-shadow(0 0 20px cyan);
        transform: scale(1.05);
    }
    100% {
        filter: drop-shadow(0 0 5px cyan);
    }
}



#timer {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 18px;
    color: yellow;
    font-weight: bold;
}

h1 { margin-top: 20px; }
h2 { font-weight: normal; }

input {
    padding: 10px;
    margin: 8px;
    width: 250px;
    border-radius: 5px;
    border: none;
}

button {
    padding: 10px 20px;
    margin: 10px;
    border-radius: 8px;
    cursor: pointer;
    background: #00e6c3;
    color: black;
    font-weight: bold;
    box-shadow: 0 4px 0 black;
}

button:hover {
    background: orange;
}

#questionBox {
    margin-top: 25px;
    font-size: 22px;
    font-weight: bold;
}

.option-btn {
    display: inline-block;
    margin: 12px;
    padding: 12px 25px;
    background: #00e6c3;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 5px 0 black;
    transition: 0.2s;
}

.option-btn:hover {
    background: #00c2a3;
    transform: translateY(-2px);
}

.option-btn:active {
    transform: translateY(2px);
}

#result {
    font-size: 22px;
    margin-top: 20px;
    color: yellow;
}

.footer {
  background:black;
  padding:20px 10px;
  text-align:center;
  margin-top:40px;
  border-top:3px solid cyan;
}

.footer p {
  margin:5px 0;
}

.socials {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:20px;
  margin-top:10px;
}

.Lside-img {
  width:450px;
  float: left;
  margin-right: 30px;
}

.Rside-img {
  width:450px;
  float:right;
  margin-left: 30px;
}

.socials i {
    font-size: 22px;
    margin: 0 10px;
    color: white;
    transition: 0.3s;
}

.socials i:hover {
    color: cyan;
    transform: scale(1.2);
}

.center-logo {
  width:40px;
}

#nextLink {
  display: none;
  color: blue;
  font-weight: bold;
  padding: 8px 15px;
  text-decoration: none;
  background: linear-gradient(90deg, yellow, orange, yellow);
  background-size: 200% 200%;
  border-radius: 5px;
  animation: glow 2s linear infinite;
}

@keyframes glow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

#Textafterlink {
  color: yellow;
  font-weight: bold;
  font-size: 18px;
  margin-top: 10px;
  text-shadow: 0 0 5px yellow, 0 0 10px orange, 0 0 15px yellow;
  animation: blinkGlow 1.5s infinite alternate;
}

@keyframes blinkGlow {
  0% {
    opacity: 1;
    text-shadow: 0 0 5px yellow, 0 0 10px orange;
  }
  100% {
    opacity: 0.6;
    text-shadow: 0 0 15px yellow, 0 0 25px orange;
  }
}
