:root {
  --bg-color: #0b0d12; /* Darker Background */
  --text-color: #f1f5f9;
  --primary-btn-bg: linear-gradient(135deg, #00ff95 0%, #00ffff 100%);
  --primary-btn-text: #ffffff;
  --social-btn-bg: #1e293b;
  --social-btn-border: #334155;
  --social-btn-text: #ffffff;
  --link-color: #24fbcc;
  --font-main: "Roboto", sans-serif;
  --accent-glow: 0 0 20px rgba(0, 255, 234, 0.6); /* Intensified Glow */
  --input-bg: #1e293b;
  --input-border: #334155;
  --card-bg: #161b22;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  background-image: radial-gradient(
    circle at top center,
    #1f2937 0%,
    #0b0d12 80%
  );
  overflow-x: hidden;
}

/* Ambient Background Pulse */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 69, 0, 0.05) 0%,
    transparent 70%
  );
  animation: ambientPulse 4s infinite ease-in-out;
  pointer-events: none;
  z-index: -1;
}

@keyframes ambientPulse {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
}

.container {
  width: 100%;
  max-width: 680px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.4s ease-out forwards; /* Faster Entrance */
}

/* Infinite Animations - Hyper Fast */
@keyframes pulseInfinite {
  0% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.4);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(0, 225, 255, 0.7);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(0, 81, 255, 0.4);
  }
}

@keyframes floatInfinite {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Border Animation - Hyper Fast & Brighter */
@keyframes borderRotate {
  0% {
    border-color: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 98, 0.6),
      inset 0 0 10px rgba(0, 255, 136, 0.2);
  }
  25% {
    border-color: #00ffd5;
    box-shadow: 0 0 25px rgba(0, 255, 200, 0.6),
      inset 0 0 10px rgba(0, 247, 255, 0.2);
  }
  50% {
    border-color: #1eff00;
    box-shadow: 0 0 15px rgba(21, 255, 0, 0.6),
      inset 0 0 10px rgba(0, 255, 34, 0.2);
  }
  75% {
    border-color: #ffee00;
    box-shadow: 0 0 25px rgba(255, 238, 0, 0.6),
      inset 0 0 10px rgba(255, 251, 0, 0.2);
  }
  100% {
    border-color: #0011ff;
    box-shadow: 0 0 15px rgba(17, 0, 255, 0.6),
      inset 0 0 10px rgba(0, 4, 255, 0.2);
  }
}

/* Header */
.profile-header {
  margin-bottom: 40px;
}

.logo-container {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.profile-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #00ff95;
  /* Hyper Fast Rotation */
  animation: borderRotate 0.8s infinite linear;
}

.brand-name {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(0, 255, 170, 0.5); /* Neon Text Glow */
}

.tagline {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #cbd5e1;
}
.sub-tagline {
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
}

.highlight-link {
  color: var(--link-color);
  text-decoration: none;
  font-weight: bold;
  transition: all 0.2s;
  text-shadow: 0 0 5px rgba(0, 255, 170, 0.5);
}

.highlight-link:hover {
  color: #fcd34d;
  text-decoration: underline;
  text-shadow: 0 0 10px rgba(36, 251, 186, 0.8);
}

/* Main Links */
.links-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.main-link-btn {
  display: block;
  background: var(--primary-btn-bg);
  color: var(--primary-btn-text);
  padding: 18px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: transform 0.1s, box-shadow 0.1s;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  /* Hyper Fast Pulse */
  animation: fadeInUp 0.4s ease-out forwards,
    pulseInfinite 0.8s infinite ease-in-out 0.5s;
}

.main-link-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 162, 255, 0.8);
  animation-play-state: paused;
}

/* Social Section */
.social-section {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #94a3b8;
  letter-spacing: 1px;
  text-shadow: 0 0 5px rgba(148, 176, 184, 0.3);
}

.social-btn {
  display: block;
  background-color: var(--social-btn-bg);
  color: var(--social-btn-text);
  padding: 16px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.2s;
  border: 2px solid var(--social-btn-border);
  position: relative;
  overflow: hidden;
  /* Hyper Fast Float */
  animation: fadeInUp 0.4s ease-out forwards,
    floatInfinite 1s infinite ease-in-out 0.5s;
}

/* Animated Border for Social Buttons - Hyper Fast */
.social-btn.telegram,
.social-btn.whatsapp,
.social-btn.instagram {
  animation: fadeInUp 0.4s ease-out forwards,
    floatInfinite 1s infinite ease-in-out 0.5s, borderRotate 1s infinite linear;
}

.social-btn:hover {
  background-color: #334155;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  animation-play-state: paused;
}

/* Footer */
.site-description {
  font-size: 13px;
  color: #64748b;
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  border-top: 1px solid #1e293b;
  line-height: 1.8;
}

.site-description a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: bold;
}
.site-description a:hover {
  text-decoration: underline;
  text-shadow: 0 0 5px var(--link-color);
}
.site-description p {
  margin-bottom: 12px;
}

/* Admin Styles */
.admin-card {
  background-color: var(--card-bg);
  border: 1px solid var(--social-btn-border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.admin-card h3 {
  color: var(--primary-btn-text);
  margin-bottom: 15px;
  border-bottom: 1px solid var(--social-btn-border);
  padding-bottom: 10px;
}

.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #cbd5e1;
  font-weight: 500;
}
.form-group input[type="text"] {
  width: 100%;
  padding: 12px;
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 8px;
  color: var(--text-color);
  font-family: var(--font-main);
  transition: border-color 0.2s;
}

.form-group input[type="text"]:focus {
  outline: none;
  border-color: #00ff95;
  box-shadow: 0 0 10px rgba(0, 183, 255, 0.3);
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-family: var(--font-main);
  transition: all 0.2s;
}

.btn-primary {
  background: var(--primary-btn-bg);
  color: white;
  box-shadow: 0 4px 10px rgba(0, 195, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 255, 179, 0.5);
}

.btn-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.btn-danger {
  background: linear-gradient(135deg, #44efef 0%, #26dc81 100%);
  color: white;
  padding: 6px 12px;
  font-size: 12px;
}

.message {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #059669;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .brand-name {
    font-size: 24px;
  }
  .tagline {
    font-size: 16px;
  }
  .main-link-btn {
    font-size: 16px;
    padding: 15px 20px;
  }
  .social-btn {
    padding: 14px 18px;
    font-size: 15px;
  }
}
