/* --- Base & Reset --- */
* {
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

body {
  background: #0c0c0c;
  color: #eee;
}

/* --- Background Canvas --- */
#bg, canvas#bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

/* --- Blinking Dot --- */
.blinking-dot {
  height: 25px;
  width: 25px;
  background-color: #28a745;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  animation: blink 1s infinite;
  vertical-align: middle;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}
#onlineCount { color: #28a745; font-weight: bold; }

/* --- Container & Cards --- */
.containerr {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 60px 20px;
}

.card {
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  border: 1px solid #555; /* Gray border */
  padding: 35px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.85);
  text-align: center;
  width: 100%;
  max-width: 500px;
  animation: fadeInUp 1s ease-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(0,255,191,0.3);
}

/* --- Input Fields --- */
input[type="text"] {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #444; /* Gray border */
  width: 100%;
  margin-top: 20px;
  font-size: 17px;
  background: #1c1c1c;
  color: white;
  outline: none;
  box-shadow: inset 0 0 8px #000;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
input[type="text"]:focus {
  box-shadow: 0 0 10px #00ffbf;
  border-color: #00ffbf;
}

/* --- Buttons --- */
buttonlike {
  margin-top: 25px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #3a3a3a, #474747);
  color: rgb(247, 253, 255);
  font-size: 17px;
  border: 1px solid #666; /* Gray border */
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 6px #272727;
}
buttonlike:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00ffbf, 0 0 30px #0ff;
}

/* --- Preformatted Output --- */
pre {
  text-align: left;
  background: #222;
  padding: 18px;
  border-radius: 10px;
  margin-top: 25px;
  max-height: 300px;
  overflow-y: auto;
  font-size: 14px;
  border: 1px solid #555;
  box-shadow: 0 0 15px rgba(0,255,191,0.2);
}

/* --- Input Icon --- */
.input-with-icon {
  position: relative;
  width: 100%;
}
.input-with-icon input[type="text"] { padding-right: 45px; }
.input-with-icon .paste-icon {
  position: absolute;
  right: 12px;
  top: 60%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  opacity: 0.7;
  cursor: pointer;
  filter: invert(100%);
  transition: opacity 0.3s ease;
}
.input-with-icon .paste-icon:hover { opacity: 1; }

/* --- Select Fields --- */
.region-select {
  margin-top: 10px;
  padding: 15px 30px 15px 15px;
  border-radius: 10px;
  border: 1px solid #555;
  font-size: 16px;
  background: #1c1c1c;
  color: white;
  width: 100%;
  box-shadow: inset 0 0 8px #000;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="12" viewBox="0 0 24 24" width="12" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px;
}
.region-select:focus { box-shadow: 0 0 10px #00ffbf; border-color: #00ffbf; }

/* --- About Section --- */
.about {
  max-width: 880px;
  padding: 50px 20px;
  text-align: center;
  margin: 0 auto;
}
.about h2 { font-size: 2rem; color: #00bfff; margin-bottom: 20px; }
.about p { color: #ccc; font-size: 1.1rem; line-height: 1.7; }

/* --- Animations --- */
@keyframes jumpLoop {
  0%, 50%, 100% { transform: translateY(0); opacity: 1; }
  30% { transform: translateY(-20px); opacity: 1; }
  70% { transform: translateY(-10px); }
}
.jump-loop { animation: jumpLoop 2s ease-in-out infinite; }

@keyframes fadeInDown { from { transform: translateY(-40px); opacity:0; } to { transform: translateY(0); opacity:1; } }
@keyframes fadeInUp { from { transform: translateY(40px); opacity:0; } to { transform: translateY(0); opacity:1; } }
@keyframes fadeIn { 0% { opacity:0; transform:translateY(30px); } 100% { opacity:1; transform:translateY(0); } }

/* --- Pricing Cards --- */
.pricing-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  min-height: 100vh;
  flex-direction: column;
  text-align: center;
}
.pricing-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  justify-content: center;
  animation: fadeIn 1.2s ease-in-out;
}
.plan {
  background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
  border: 1px solid #555; /* Gray border */
  border-radius: 16px;
  padding: 24px;
  width: 240px;
  text-align: center;
  box-shadow: 0 0 16px rgba(83,83,83,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 28px rgba(0,255,191,0.4);
}
.plan-title { font-size:1.5rem; font-weight:bold; margin-bottom:10px; color:#00e1ff; }
.plan-info { margin:10px 0; font-size:0.95rem; color:#ccc; }
.plan-price { font-size:1.3rem; font-weight:bold; margin:16px 0; color:#00ffbf; }
.buy-btn {
  background:#8d8d8d; color:black; padding:10px 16px;
  border:none; border-radius:8px; font-weight:bold;
  cursor:pointer; text-decoration:none; display:inline-block;
  transition: background 0.3s ease;
}
.buy-btn:hover { background:#464646; }

/* --- Responsive --- */
@media(max-width:600px){
  .card, .plan { width: 100%; }
}
.profile-container {
  margin-top: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.profile-card {
  padding: 25px;
  border: 1px solid #444;
  border-radius: 20px;
  background: rgba(25, 25, 25, 0.95);
  box-shadow: 0 10px 25px rgba(0,0,0,0.7);
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.profile-card .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 15px auto;
  border: 2px solid #666;
}


.info-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid #333;
  font-size: 15px;
}

.info-row:last-child { border-bottom: none; }

.info-title {
  color: #00bfff;
  font-weight: 600;
}

.info-text {
  color: #ccc;
  font-weight: 500;
  text-align: right;
}
