:root {
  --text: #e3e3ec;
  --background: #0b0b15;
  --primary: #9a98da;
  --secondary: #26228b;
  --accent: #3c36e2;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  position: relative;
  overflow-x: hidden;
}

button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2rem;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transition: left 0.3s ease;
  z-index: -1;
}

button:hover::before {
  left: 0;
}

button:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(156, 152, 218, 0.3);
}

/* Floating particles background */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(156, 152, 218, 0.3);
  border-radius: 50%;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* Signup Container */
.signup-container {
  width: 100%;
  max-width: 480px;
  animation: slideInUp 1s ease-out;
}

.signup-form_area {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(156, 152, 218, 0.1);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.signup-form_area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.signup-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

/* Form Groups */
.signup-form_group {
  margin-bottom: 1.5rem;
}

.signup-sub_title {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.signup-form_style {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(11, 11, 21, 0.8);
  border: 2px solid rgba(156, 152, 218, 0.2);
  border-radius: 12px;
  color: var(--text);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.signup-form_style:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(156, 152, 218, 0.1);
  transform: translateY(-1px);
}

.signup-form_style::placeholder {
  color: rgba(227, 227, 236, 0.5);
}

/* Submit Button */
.signup-btn {
  width: 100%;
  padding: 1.25rem;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 12px;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.signup-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  transition: left 0.3s ease;
  z-index: -1;
}

.signup-btn:hover::before {
  left: 0;
}

.signup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(156, 152, 218, 0.3);
}

.signup-btn:active {
  transform: translateY(0);
}

/* Links */
.signup-link-container {
  text-align: center;
  color: rgba(227, 227, 236, 0.8);
}

.signup-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.signup-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.signup-link:hover {
  color: var(--accent);
}

.signup-link:hover::after {
  width: 100%;
}

/* Error Messages */
.error-message {
  color: #ff6b6b !important;
  background: rgba(255, 107, 107, 0.1) !important;
  border: 1px solid rgba(255, 107, 107, 0.3) !important;
  border-radius: 12px !important;
  padding: 1rem !important;
  margin-bottom: 1.5rem !important;
  font-weight: 500 !important;
  text-align: center;
  animation: shake 0.5s ease-in-out;
}

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

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  body {
    padding: 1rem;
  }

  .signup-form_area {
    padding: 2rem;
  }

  .signup-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .signup-form_group {
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 480px) {
  .signup-form_area {
    padding: 1.5rem;
  }

  .signup-title {
    font-size: 1.6rem;
  }
}

/* Forgot Password Link Styling */
.forgot-password-link {
  display: block;
  text-align: center;
  padding: 0.75rem;
  background: rgba(156, 152, 218, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(156, 152, 218, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  font-size: 0.9rem;
}

.forgot-password-link:hover {
  background: rgba(156, 152, 218, 0.1);
  border-color: rgba(156, 152, 218, 0.3);
  transform: translateY(-1px);
}


/* Main Display Container */
.display {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 2rem 2rem;
  animation: slideInUp 1s ease-out;
}

/* Header Section */
.blogs-header {
  text-align: center;
  margin-bottom: 4rem;
}

.blogs-header h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.blogs-header p {
  font-size: 1.2rem;
  color: rgba(227, 227, 236, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Blog List Container */
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Blog Card */
.blog-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(156, 152, 218, 0.1);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  animation: slideInUp 0.8s ease-out;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(156, 152, 218, 0.3);
}

.blog-card:hover .blog-thumb {
  transform: scale(1.05);
}

/* Blog Thumbnail */
.blog-thumb {
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-thumb::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(11, 11, 21, 0.1) 50%,
    rgba(11, 11, 21, 0.8) 100%
  );
}

/* Blog Content */
.blog-text {
  padding: 2rem;
  position: relative;
}

.blog-date {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-date::before {
  content: "\f133";
  font-size: 1rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.blog-title {
  margin-bottom: 1rem;
}

.blog-title a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  line-height: 1.3;
  transition: all 0.3s ease;
  display: block;
}

.blog-title a:hover {
  color: var(--primary);
  text-shadow: 0 0 20px rgba(156, 152, 218, 0.3);
}

.blog-preview {
  color: rgba(227, 227, 236, 0.8);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Read More Button */
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.read-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  transition: left 0.3s ease;
  z-index: -1;
}

.read-more-btn:hover::before {
  left: 0;
}

.read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(156, 152, 218, 0.3);
}

.read-more-btn::after {
  content: '→';
  transition: transform 0.3s ease;
}

.read-more-btn:hover::after {
  transform: translateX(4px);
}

/* Featured Badge */
.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

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

/* Stagger animation for blog cards */
.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-card:nth-child(4) { animation-delay: 0.4s; }
.blog-card:nth-child(5) { animation-delay: 0.5s; }
.blog-card:nth-child(6) { animation-delay: 0.6s; }

/* Mobile Responsive */
@media (max-width: 768px) {
  .display {
    padding: 100px 1rem 2rem;
  }

  .blogs-header h1 {
    font-size: 2.5rem;
  }

  .blogs-header p {
    font-size: 1rem;
  }

  .blog-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-card {
    margin-bottom: 0;
  }

  .blog-thumb {
    height: 200px;
  }

  .blog-text {
    padding: 1.5rem;
  }

  .blog-title a {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .blogs-header {
    margin-bottom: 2rem;
  }

  .blogs-header h1 {
    font-size: 2rem;
  }

  .blog-text {
    padding: 1.25rem;
  }

  .blog-thumb {
    height: 180px;
  }
}


/* UI update code */

/* Mobile Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(11, 11, 21, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 2rem;
    transition: right 0.3s ease;
  }

  .nav-links.show {
    right: 0;
  }

  .nav-links a {
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(156, 152, 218, 0.1);
  }

  .topbar {
    padding: 1rem;
  }
}

/* Topbar */
.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(11, 11, 21, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(156, 152, 218, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #6BAFF8;
  text-decoration: none;
  letter-spacing: -0.5px;
  position: relative;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.nav-links a:hover {
  color: var(--primary);
  background: rgba(156, 152, 218, 0.1);
}

/* Banned Link Page Styles */
.banned-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1rem;
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: slideInUp 0.8s ease-out;
}

/* Warning Icon Animation */
.warning-icon {
  position: relative;
  margin-bottom: 2rem;
  animation: warningPulse 2s infinite;
}

.shield-icon {
  font-size: 4rem;
  filter: drop-shadow(0 10px 25px rgba(217, 79, 79, 0.3));
}

.ban-overlay {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 2.5rem;
  animation: shake 1s infinite;
}

@keyframes warningPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes shake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}

/* Main Card */
.banned-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(217, 79, 79, 0.2);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 25px 50px rgba(217, 79, 79, 0.1);
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.banned-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D94F4F, transparent);
}

/* Header */
.banned-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.banned-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FF6B6B, #D94F4F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.status-badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #D94F4F, #B73E3E);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(217, 79, 79, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.02); opacity: 0.9; }
}

/* Ban Details */
.ban-details {
  margin-bottom: 2.5rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(217, 79, 79, 0.05);
  border: 1px solid rgba(217, 79, 79, 0.1);
  border-radius: 16px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: rgba(217, 79, 79, 0.1);
  transform: translateX(5px);
}

.detail-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.detail-content {
  flex: 1;
}

.detail-content strong {
  display: block;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.ban-reason,
.ban-duration {
  color: #D94F4F;
  font-weight: 600;
  font-size: 1rem;
}

/* Info Section */
.info-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(156, 152, 218, 0.1);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  gap: 1rem;
}

.info-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.info-content h3 {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.info-content p {
  color: rgba(227, 227, 236, 0.9);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.terms-link {
  color: #D94F4F;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.terms-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #D94F4F;
  transition: width 0.3s ease;
}

.terms-link:hover {
  color: #FF6B6B;
  text-shadow: 0 0 10px rgba(217, 79, 79, 0.3);
}

.terms-link:hover::after {
  width: 100%;
}

/* Guidelines Section */
.guidelines-section {
  margin-bottom: 2.5rem;
}

.guidelines-section h3 {
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.guidelines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.guideline-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(156, 152, 218, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.guideline-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.guideline-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.home-btn,
.terms-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.home-btn {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

.home-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  transition: left 0.3s ease;
  z-index: -1;
}

.home-btn:hover::before {
  left: 0;
}

.terms-btn {
  background: transparent;
  color: #D94F4F;
  border: 2px solid #D94F4F;
}

.terms-btn:hover {
  background: #D94F4F;
  color: white;
}

.home-btn:hover,
.terms-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(156, 152, 218, 0.3);
}

/* Help Section */
.help-section {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(156, 152, 218, 0.1);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.help-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.help-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.help-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.help-text h4 {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.help-text p {
  color: rgba(227, 227, 236, 0.8);
  line-height: 1.6;
  margin: 0;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .banned-container {
    padding: 1rem;
  }

  .banned-card {
    padding: 2rem;
  }

  .banned-title {
    font-size: 2.5rem;
  }

  .shield-icon {
    font-size: 3rem;
  }

  .ban-overlay {
    font-size: 2rem;
    top: -5px;
    right: -5px;
  }

  .guidelines-grid {
    grid-template-columns: 1fr;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .home-btn,
  .terms-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .info-section,
  .help-content {
    flex-direction: column;
    text-align: center;
  }

  .detail-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .banned-card {
    padding: 1.5rem;
  }

  .banned-title {
    font-size: 2rem;
  }

  .status-badge {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .guidelines-section h3 {
    font-size: 1.1rem;
  }
}

/* Contact Page Styles */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  animation: slideInUp 0.8s ease-out;
}

/* Hero Section */
.contact-hero {
  text-align: center;
  padding: 3rem 0;
  margin-bottom: 3rem;
}

.hero-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: bounce 2s infinite;
}

.contact-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.contact-subtitle {
  font-size: 1.3rem;
  color: rgba(227, 227, 236, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Content Layout */
.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Form Section */
.contact-form-section {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(156, 152, 218, 0.1);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.form-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-header p {
  color: rgba(227, 227, 236, 0.8);
  font-size: 1rem;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.label-icon {
  font-size: 1.1rem;
}

.form-input {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: rgba(11, 11, 21, 0.8);
  border: 2px solid rgba(156, 152, 218, 0.2);
  border-radius: 16px;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  resize: vertical;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(156, 152, 218, 0.1);
  transform: translateY(-1px);
}

.form-input::placeholder {
  color: rgba(227, 227, 236, 0.5);
}

.message-input {
  min-height: 150px;
  line-height: 1.6;
}

.character-count {
  text-align: right;
  font-size: 0.8rem;
  color: rgba(227, 227, 236, 0.6);
  margin-top: 0.5rem;
}

/* Submit Button */
.submit-btn {
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  letter-spacing: 0.5px;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  transition: left 0.3s ease;
  z-index: -1;
}

.submit-btn:hover::before {
  left: 0;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(156, 152, 218, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.btn-icon {
  font-size: 1.2rem;
}

/* Info Section */
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card,
.faq-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(156, 152, 218, 0.1);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.info-card::before,
.faq-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.info-card h3,
.faq-card h3 {
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Contact Methods */
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(156, 152, 218, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(156, 152, 218, 0.1);
  transform: translateX(5px);
}

.method-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.method-info strong {
  display: block;
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.method-info p {
  color: rgba(227, 227, 236, 0.8);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

/* FAQ Items */
.faq-item {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border-left: 3px solid var(--primary);
}

.faq-item strong {
  display: block;
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: rgba(227, 227, 236, 0.8);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

/* Animations */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 968px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info-section {
    order: -1;
  }
}

@media (max-width: 768px) {
  .contact-container {
    padding: 1rem;
  }

  .contact-hero {
    padding: 2rem 0;
  }

  .contact-title {
    font-size: 2.5rem;
  }

  .contact-subtitle {
    font-size: 1.1rem;
  }

  .contact-form-section {
    padding: 2rem;
  }

  .form-header h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .contact-form-section {
    padding: 1.5rem;
  }

  .contact-title {
    font-size: 2rem;
  }

  .form-input {
    padding: 1rem;
  }

  .submit-btn {
    padding: 1.25rem;
  }

  .info-card,
  .faq-card {
    padding: 1.5rem;
  }
}

/* Password Page Styles */
.password-container {
  max-width: 500px;
  margin: 0 auto;
  padding: 120px 2rem 2rem;
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: slideInUp 0.8s ease-out;
}

/* Lock Animation */
.lock-animation {
  position: relative;
  margin-bottom: 3rem;
  animation: lockFloat 3s ease-in-out infinite;
}

.lock-icon {
  position: relative;
  z-index: 2;
}

.lock-body {
  width: 60px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 8px;
  position: relative;
  box-shadow: 0 10px 30px rgba(156, 152, 218, 0.4);
}

.lock-shackle {
  width: 35px;
  height: 25px;
  border: 4px solid var(--primary);
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
}

.lock-keyhole {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lock-keyhole::after {
  content: '';
  width: 3px;
  height: 8px;
  background: white;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
}

.security-particles {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  pointer-events: none;
}

@keyframes lockFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Main Card */
.password-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(156, 152, 218, 0.1);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.password-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.password-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.password-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.password-subtitle {
  color: rgba(227, 227, 236, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

/* Error Alert */
.error-alert {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 16px;
  margin-bottom: 2rem;
  animation: errorShake 0.5s ease-in-out;
}

.error-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.error-content strong {
  display: block;
  color: #ff6b6b;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.error-content p {
  color: #ff8a8a;
  margin: 0;
  font-size: 0.9rem;
}

@keyframes errorShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* Form Styles */
.password-form {
  margin-bottom: 2.5rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1rem;
}


.password-input-wrapper {
  position: relative;
  display: flex;
  background: rgba(11, 11, 21, 0.8);
  border: 2px solid rgba(156, 152, 218, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.password-input-wrapper:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(156, 152, 218, 0.1);
  transform: translateY(-1px);
}

.password-input {
  flex: 1;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.1rem;
  font-family: inherit;
  outline: none;
  letter-spacing: 0.5px;
}

.password-input::placeholder {
  color: rgba(227, 227, 236, 0.4);
}

.toggle-visibility {
  padding: 1rem;
  background: transparent;
  border: none;
  color: rgba(227, 227, 236, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 1px solid rgba(156, 152, 218, 0.2);
}

.toggle-visibility:hover {
  background: rgba(156, 152, 218, 0.1);
  color: var(--primary);
}

.eye-icon {
  font-size: 1.2rem;
}

/* Access Button */
.access-btn {
  width: 100%;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  letter-spacing: 0.5px;
  font-family: inherit;
}

.access-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  transition: left 0.3s ease;
  z-index: -1;
}

.access-btn:hover::before {
  left: 0;
}

.access-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(156, 152, 218, 0.4);
}

.access-btn:active {
  transform: translateY(0);
}

.btn-icon, .btn-text {
  transition: opacity 0.3s ease;
}

.btn-loading {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Security Info */
.security-info {
  padding-top: 2rem;
  border-top: 1px solid rgba(156, 152, 218, 0.2);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: rgba(156, 152, 218, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(156, 152, 218, 0.1);
  transform: translateX(5px);
}

.info-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-text {
  color: rgba(227, 227, 236, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Help Section */
.help-section {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(156, 152, 218, 0.1);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.help-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.help-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.help-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.help-text h4 {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.help-text p {
  color: rgba(227, 227, 236, 0.8);
  line-height: 1.6;
  margin: 0;
  font-size: 0.9rem;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .password-container {
    padding: 100px 1rem 2rem;
  }

  .password-card {
    padding: 2rem;
  }

  .password-title {
    font-size: 1.8rem;
  }

  .lock-body {
    width: 50px;
    height: 35px;
  }

  .lock-shackle {
    width: 30px;
    height: 20px;
    top: -15px;
  }
}

@media (max-width: 480px) {
  .password-card {
    padding: 1.5rem;
  }

  .password-title {
    font-size: 1.6rem;
  }

  .password-input {
    padding: 1rem;
    font-size: 1rem;
  }

  .access-btn {
    padding: 1.25rem;
  }

  .help-content {
    flex-direction: column;
    text-align: center;
  }

  .error-alert {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

/* Redirect Wait Page Styles */
.redirect-wait-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 2rem 2rem;
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: slideInUp 0.8s ease-out;
}

/* Loading Animation */
.loading-section {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.loading-icon {
  position: relative;
  margin-bottom: 2rem;
  display: inline-block;
}

.redirect-spinner {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(156, 152, 218, 0.2);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
  position: relative;
}

.redirect-spinner::after {
  content: '🚀';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* Main Card */
.redirect-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(156, 152, 218, 0.1);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
  max-width: 600px;
  width: 100%;
}

.redirect-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.redirect-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.redirect-subtitle {
  color: #FFC300;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(255, 195, 0, 0.3);
}

/* Countdown Display */
.countdown-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 195, 0, 0.1);
  border: 1px solid rgba(255, 195, 0, 0.3);
  border-radius: 16px;
}

.countdown-number {
  font-size: 3rem;
  font-weight: 900;
  color: #FFC300;
  text-shadow: 0 0 30px rgba(255, 195, 0, 0.5);
  animation: countdownPulse 1s ease-in-out infinite;
  min-width: 60px;
  text-align: center;
}

@keyframes countdownPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.countdown-text {
  color: rgba(227, 227, 236, 0.9);
  font-size: 1.1rem;
  font-weight: 600;
}

/* Progress Bar */
.progress-container {
  width: 100%;
  height: 8px;
  background: rgba(156, 152, 218, 0.2);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(135deg, var(--primary), #FFC300);
  border-radius: 4px;
  animation: progressFill 5s linear forwards;
  position: relative;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: progressShine 1s ease-in-out infinite;
}

@keyframes progressFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes progressShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Manual Link */
.manual-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  position: relative;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(156, 152, 218, 0.1);
  border: 1px solid rgba(156, 152, 218, 0.3);
  border-radius: 12px;
}

.manual-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.manual-link:hover {
  background: rgba(156, 152, 218, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(156, 152, 218, 0.2);
}

.manual-link:hover::after {
  transform: translateX(4px);
}

/* Features Section */
.features-section {
  width: 100%;
  max-width: 1200px;
}

.features-header {
  text-align: center;
  margin-bottom: 3rem;
}

.features-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-subtitle {
  color: rgba(227, 227, 236, 0.8);
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(156, 152, 218, 0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.8s ease-out;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(156, 152, 218, 0.3);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(156, 152, 218, 0.3);
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.feature-description {
  color: rgba(227, 227, 236, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Stagger animation for feature cards */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .redirect-wait-container {
    padding: 100px 1rem 2rem;
  }

  .redirect-card {
    padding: 2rem;
  }

  .redirect-title {
    font-size: 2rem;
  }

  .countdown-number {
    font-size: 2.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .features-title {
    font-size: 2rem;
  }

  .redirect-spinner {
    width: 60px;
    height: 60px;
  }

  .redirect-spinner::after {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .redirect-card {
    padding: 1.5rem;
  }

  .redirect-title {
    font-size: 1.8rem;
  }

  .countdown-display {
    flex-direction: column;
    gap: 0.5rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* Report Form Page Styles */
.report-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 2rem 2rem;
  min-height: calc(100vh - 200px);
  animation: slideInUp 0.8s ease-out;
}

/* Hero Section */
.report-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.report-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: reportPulse 3s ease-in-out infinite;
}

.report-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text), #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.report-subtitle {
  color: rgba(227, 227, 236, 0.8);
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

@keyframes reportPulse {
  0%, 100% { 
    transform: scale(1); 
    filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.3));
  }
  50% { 
    transform: scale(1.05); 
    filter: drop-shadow(0 0 30px rgba(255, 107, 107, 0.5));
  }
}

/* Flash Messages */
.flash-messages {
  margin-bottom: 2rem;
}

.flash-message {
  padding: 1.5rem;
  border-radius: 16px;
  margin-bottom: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: slideInDown 0.5s ease-out;
}

.flash-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.flash-error {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  color: #ff6b6b;
}

.flash-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Main Form Card */
.report-form-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(156, 152, 218, 0.1);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.report-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--text), #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-header p {
  color: rgba(227, 227, 236, 0.8);
  font-size: 1rem;
  line-height: 1.6;
}

/* Form Styles */
.report-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  position: relative;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.label-icon {
  font-size: 1.2rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: rgba(11, 11, 21, 0.8);
  border: 2px solid rgba(156, 152, 218, 0.2);
  border-radius: 16px;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(156, 152, 218, 0.1);
  transform: translateY(-1px);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(227, 227, 236, 0.4);
}

.form-textarea {
  min-height: 150px;
  line-height: 1.6;
  resize: vertical;
}

/* Character Counter */
.character-counter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
  font-size: 0.85rem;
}

.counter-text {
  color: rgba(227, 227, 236, 0.6);
}

.counter-number {
  color: var(--primary);
  font-weight: 600;
}

/* Help Text */
.form-help {
  margin-top: 0.75rem;
  padding: 1rem;
  background: rgba(156, 152, 218, 0.05);
  border: 1px solid rgba(156, 152, 218, 0.1);
  border-radius: 12px;
  font-size: 0.9rem;
  color: rgba(227, 227, 236, 0.8);
  line-height: 1.5;
}

.help-icon {
  color: var(--primary);
  margin-right: 0.5rem;
}

/* Submit Button */
.submit-btn {
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #ff6b6b, #d63384);
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  letter-spacing: 0.5px;
  font-family: inherit;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d63384, #dc2626);
  transition: left 0.3s ease;
  z-index: -1;
}

.submit-btn:hover::before {
  left: 0;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.btn-icon {
  font-size: 1.2rem;
}

/* Guidelines Section */
.guidelines-section {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(156, 152, 218, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.guidelines-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.guidelines-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.guidelines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.guideline-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(156, 152, 218, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.guideline-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.guideline-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Back Link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(156, 152, 218, 0.2);
  border-radius: 12px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.back-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(156, 152, 218, 0.1);
  transition: left 0.3s ease;
  z-index: -1;
}

.back-link:hover::before {
  left: 0;
}

.back-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(156, 152, 218, 0.2);
  border-color: rgba(156, 152, 218, 0.3);
}

.back-icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.back-link:hover .back-icon {
  transform: translateX(-3px);
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .report-container {
    padding: 100px 1rem 2rem;
  }

  .report-title {
    font-size: 2.5rem;
  }

  .report-subtitle {
    font-size: 1rem;
  }

  .report-form-card {
    padding: 2rem;
  }

  .guidelines-grid {
    grid-template-columns: 1fr;
  }

  .form-header h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .report-form-card,
  .guidelines-section {
    padding: 1.5rem;
  }

  .report-title {
    font-size: 2rem;
  }

  .form-input,
  .form-textarea {
    padding: 1rem;
  }
  
  .report-icon {
    font-size: 3rem;
  }
}

/* Unshorten Page Styles */
.unshorten-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 2rem 2rem;
  min-height: calc(100vh - 200px);
  animation: slideInUp 0.8s ease-out;
}

/* Hero Section */
.unshorten-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.unshorten-icon {
  position: relative;
  margin-bottom: 2rem;
  display: inline-block;
}

.magnify-animation {
  font-size: 4rem;
  animation: magnifyPulse 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 25px rgba(156, 152, 218, 0.4));
}

.search-particles {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  pointer-events: none;
}

@keyframes magnifyPulse {
  0%, 100% { 
    transform: scale(1) rotate(0deg); 
    filter: drop-shadow(0 10px 25px rgba(156, 152, 218, 0.4));
  }
  50% { 
    transform: scale(1.05) rotate(5deg); 
    filter: drop-shadow(0 15px 35px rgba(156, 152, 218, 0.6));
  }
}

.unshorten-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.unshorten-subtitle {
  color: rgba(227, 227, 236, 0.8);
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Main Form Card */
.unshorten-form-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(156, 152, 218, 0.1);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.unshorten-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* Form Styles */
.unshorten-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  position: relative;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.label-icon {
  font-size: 1.2rem;
}

.url-input-wrapper {
  position: relative;
  display: flex;
  background: rgba(11, 11, 21, 0.8);
  border: 2px solid rgba(156, 152, 218, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.url-input-wrapper:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(156, 152, 218, 0.1);
  transform: translateY(-1px);
}

.url-input {
  flex: 1;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.1rem;
  font-family: inherit;
  outline: none;
}

.url-input::placeholder {
  color: rgba(227, 227, 236, 0.4);
}

.input-icon {
  padding: 1.25rem;
  color: rgba(227, 227, 236, 0.6);
  border-right: 1px solid rgba(156, 152, 218, 0.2);
  display: flex;
  align-items: center;
  background: rgba(156, 152, 218, 0.05);
}

.input-icon i {
  font-size: 1.2rem;
}

/* Submit Button */
.unshorten-btn {
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  letter-spacing: 0.5px;
  font-family: inherit;
}

.unshorten-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  transition: left 0.3s ease;
  z-index: -1;
}

.unshorten-btn:hover::before {
  left: 0;
}

.unshorten-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(156, 152, 218, 0.4);
}

.unshorten-btn:active {
  transform: translateY(0);
}

.btn-icon {
  font-size: 1.2rem;
}

/* Results Section */
.results-section {
  margin-top: 2rem;
}

.result-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(156, 152, 218, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  animation: resultSlideIn 0.6s ease-out;
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.result-success {
  border-color: rgba(34, 197, 94, 0.3);
}

.result-success::before {
  background: linear-gradient(90deg, transparent, #22c55e, transparent);
}

.result-error {
  border-color: rgba(255, 107, 107, 0.3);
}

.result-error::before {
  background: linear-gradient(90deg, transparent, #ff6b6b, transparent);
}

.result-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.result-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.result-success .result-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
}

.result-error .result-icon {
  background: linear-gradient(135deg, #ff6b6b, #dc2626);
  color: white;
}

.result-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.result-success .result-title {
  color: #22c55e;
}

.result-error .result-title {
  color: #ff6b6b;
}

.result-content {
  margin-left: 66px;
}

.original-url {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(156, 152, 218, 0.05);
  border: 1px solid rgba(156, 152, 218, 0.1);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.url-preview {
  flex: 1;
  min-width: 0;
}

.url-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(227, 227, 236, 0.8);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.url-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  word-break: break-all;
  transition: all 0.3s ease;
  display: block;
  padding: 0.5rem 0;
  border-radius: 8px;
}

.url-link:hover {
  color: var(--accent);
  background: rgba(156, 152, 218, 0.1);
  padding-left: 0.75rem;
  text-shadow: 0 0 10px rgba(156, 152, 218, 0.3);
}

.copy-btn {
  padding: 0.75rem;
  background: rgba(156, 152, 218, 0.1);
  border: 1px solid rgba(156, 152, 218, 0.2);
  border-radius: 8px;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.copy-btn:hover {
  background: rgba(156, 152, 218, 0.2);
  transform: translateY(-1px);
}

.copy-btn i {
  font-size: 1.1rem;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2rem;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.home-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.home-btn:hover::before {
  left: 0;
}

.home-btn:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(156, 152, 218, 0.3);
}

.home-btn:hover .btn-icon {
  transform: translateX(-3px);
}

/* Info Section */
.info-section {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(156, 152, 218, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.info-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
}

.info-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  background: linear-gradient(135deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(156, 152, 218, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.info-item-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-item-text {
  color: rgba(227, 227, 236, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

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

@keyframes resultSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .unshorten-container {
    padding: 100px 1rem 2rem;
  }

  .unshorten-title {
    font-size: 2.5rem;
  }

  .unshorten-subtitle {
    font-size: 1rem;
  }

  .unshorten-form-card,
  .info-section {
    padding: 2rem;
  }

  .original-url {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .result-content {
    margin-left: 0;
    margin-top: 1rem;
  }

  .result-header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .home-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .unshorten-form-card,
  .info-section {
    padding: 1.5rem;
  }

  .unshorten-title {
    font-size: 2rem;
  }

  .url-input {
    padding: 1rem;
    font-size: 1rem;
  }

  .unshorten-btn {
    padding: 1.25rem;
  }

  .magnify-animation {
    font-size: 3rem;
  }
}

.blog-table {
  margin: 1.5rem 0;
  overflow-x: auto;  /* mobile scroll */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  backdrop-filter: blur(12px);
}

.blog-table table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.05); /* faint glass */
  border-radius: 12px;
  overflow: hidden;
}

.blog-table th,
.blog-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 0.95rem;
}

.blog-table th {
  background: rgba(255, 255, 255, 0.1);
  font-weight: 600;
  color: var(--primary);
}

.blog-table tr:last-child td {
  border-bottom: none;
}

.blog-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease-in-out;
}

/* Dropdown Button */
.dropbtn {
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}