:root {
  --primary: #00ff88;
  --primary-dark: #00cc6a;
  --secondary: #00d4ff;
  --accent: #ff0080;
  --cyber-blue: #00ffff;
  --cyber-purple: #8b5cf6;
  --cyber-pink: #ff0080;
  --cyber-green: #00ff88;
  --dark: #0a0a0a;
  --darker: #050505;
  --text: #e2e8f0;
  --text-light: #94a3b8;
  --gradient: linear-gradient(135deg, #00ff88 0%, #00d4ff 50%, #ff0080 100%);
  --gradient-cyber: linear-gradient(135deg, #00ffff 0%, #8b5cf6 50%, #ff0080 100%);
  --shadow: 0 4px 6px -1px rgba(0, 255, 136, 0.2);
  --shadow-cyber: 0 0 20px rgba(0, 255, 255, 0.5);
  --glow: 0 0 30px rgba(0, 255, 255, 0.8);
}

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

body {
  font-family: 'Rajdhani', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--darker);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 0, 128, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Floating Navigation */
.floating-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  border: 2px solid var(--cyber-blue);
  border-radius: 50px;
  padding: 1rem 2rem;
  z-index: 1000;
  box-shadow: var(--shadow-cyber);
  transition: all 0.3s ease;
}

.floating-nav:hover {
  box-shadow: var(--glow);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  color: var(--cyber-blue);
}

.logo-orb {
  width: 40px;
  height: 40px;
  background: var(--gradient-cyber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
  position: relative;
}

.logo-orb::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-cyber);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 2s infinite reverse;
}

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

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

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.nav-link:hover {
  color: var(--dark);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--cyber-blue);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Matrix Hero Section */
.matrix-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.matrix-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.matrix-cell {
  position: absolute;
  width: 2px;
  height: 20px;
  background: var(--cyber-green);
  animation: matrix-fall 3s linear infinite;
  opacity: 0.7;
}

@keyframes matrix-fall {
  0% {
    transform: translateY(-100vh);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}

.hero-core {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.core-content {
  color: var(--text);
}

.title-matrix {
  margin-bottom: 3rem;
}

.glitch-text {
  font-family: 'Orbitron', monospace;
  font-size: 4rem;
  font-weight: 900;
  color: var(--cyber-blue);
  text-shadow: 
    2px 2px var(--cyber-pink),
    -2px -2px var(--cyber-green);
  animation: glitch 3s infinite;
  position: relative;
}

@keyframes glitch {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
}

.subtitle-cyber {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.cyber-line {
  flex: 1;
  height: 2px;
  background: var(--gradient-cyber);
  animation: cyber-pulse 2s infinite;
}

@keyframes cyber-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.subtitle-cyber p {
  font-size: 1.5rem;
  color: var(--cyber-pink);
  font-weight: 600;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid var(--cyber-blue);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-cyber);
  background: rgba(0, 255, 255, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--cyber-green);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
}

.cyber-btn {
  padding: 1rem 2rem;
  border: 2px solid;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: transparent;
  color: var(--text);
}

.cyber-btn.primary {
  border-color: var(--cyber-blue);
  color: var(--cyber-blue);
}

.cyber-btn.secondary {
  border-color: var(--cyber-pink);
  color: var(--cyber-pink);
}

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

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

.cyber-btn:hover {
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-cyber);
}

.hero-visual {
  position: relative;
  height: 500px;
}

.neural-network {
  position: relative;
  width: 100%;
  height: 100%;
}

.node {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--cyber-blue);
  border-radius: 50%;
  animation: node-pulse 2s infinite;
}

.node:nth-child(1) { top: 20%; left: 20%; }
.node:nth-child(2) { top: 40%; left: 60%; }
.node:nth-child(3) { top: 60%; left: 30%; }
.node:nth-child(4) { top: 80%; left: 70%; }
.node:nth-child(5) { top: 30%; left: 80%; }
.node:nth-child(6) { top: 70%; left: 10%; }

.node.active {
  background: var(--cyber-green);
  box-shadow: 0 0 20px var(--cyber-green);
}

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

.connection {
  position: absolute;
  height: 2px;
  background: var(--cyber-blue);
  animation: connection-flow 3s infinite;
}

.connection:nth-child(7) {
  top: 25%;
  left: 25%;
  width: 40%;
  transform: rotate(45deg);
}

.connection:nth-child(8) {
  top: 45%;
  left: 35%;
  width: 30%;
  transform: rotate(-30deg);
}

.connection:nth-child(9) {
  top: 65%;
  left: 15%;
  width: 60%;
  transform: rotate(60deg);
}

@keyframes connection-flow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Neural Services Section */
.neural-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--darker) 0%, #1a1a1a 100%);
  position: relative;
}

.section-header-cyber {
  text-align: center;
  margin-bottom: 6rem;
}

.cyber-title {
  font-family: 'Orbitron', monospace;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--cyber-blue);
  margin-bottom: 1rem;
  text-shadow: 0 0 20px var(--cyber-blue);
}

.cyber-subtitle {
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.neural-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.neural-card {
  background: rgba(0, 255, 255, 0.05);
  border: 2px solid var(--cyber-blue);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.neural-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.neural-card:hover::before {
  left: 100%;
}

.neural-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: var(--shadow-cyber);
  border-color: var(--cyber-green);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-cyber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--dark);
}

.card-badge {
  background: var(--cyber-pink);
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.neural-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.neural-card p {
  margin-bottom: 2rem;
  color: var(--text-light);
  line-height: 1.6;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.feature-tag {
  background: rgba(0, 255, 255, 0.1);
  color: var(--cyber-blue);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.neural-card:hover .feature-tag {
  background: rgba(0, 255, 255, 0.2);
  transform: translateX(5px);
}

.neural-btn {
  background: var(--gradient-cyber);
  color: var(--dark);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.neural-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-cyber);
}

/* Quantum Testimonials */
.quantum-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, var(--darker) 100%);
  position: relative;
}

.quantum-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.quantum-card {
  background: rgba(139, 92, 246, 0.05);
  border: 2px solid var(--cyber-purple);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.quantum-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
  border-color: var(--cyber-pink);
}

.quantum-avatar {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
}

.avatar-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid var(--cyber-purple);
  border-radius: 50%;
  animation: rotate 10s linear infinite;
}

.avatar-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--gradient-cyber);
  border-radius: 50%;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.quantum-rating {
  font-size: 1.5rem;
  color: #fbbf24;
  margin-bottom: 1.5rem;
}

.quantum-content p {
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: var(--text);
  font-size: 1.1rem;
}

.quantum-author strong {
  display: block;
  font-size: 1.2rem;
  color: var(--cyber-blue);
  margin-bottom: 0.5rem;
}

.quantum-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.quantum-stats {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.quantum-stats span {
  color: var(--cyber-green);
  font-weight: 600;
}

/* Cyber Tools Section */
.cyber-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--darker) 0%, #1a1a1a 100%);
}

.cyber-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cyber-tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.tool-card {
  background: rgba(255, 0, 128, 0.05);
  border: 2px solid var(--cyber-pink);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
}

.tool-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 0 30px rgba(255, 0, 128, 0.5);
  border-color: var(--cyber-blue);
}

.tool-visual {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.tool-hologram {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 255, 255, 0.3), rgba(255, 0, 128, 0.3));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.tool-card:hover .tool-hologram {
  opacity: 1;
}

.tool-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.tool-card:hover .tool-visual img {
  transform: scale(1.2) rotate(5deg);
}

.tool-info {
  padding: 2rem;
}

.tool-info h3 {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--cyber-pink);
}

.tool-info p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.tool-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.tool-features li {
  padding: 0.5rem 0;
  color: var(--text);
  position: relative;
  padding-left: 1.5rem;
  transition: all 0.3s ease;
}

.tool-features li:hover {
  color: var(--cyber-blue);
  transform: translateX(10px);
}

.tool-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--cyber-pink);
  transition: all 0.3s ease;
}

.tool-features li:hover::before {
  transform: scale(1.2) rotate(15deg);
}

.tool-pricing {
  text-align: center;
  padding: 1rem;
  background: linear-gradient(45deg, rgba(255, 0, 128, 0.1), rgba(0, 255, 255, 0.1));
  border-radius: 10px;
  border: 1px solid rgba(255, 0, 128, 0.2);
}

.price-cyber {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cyber-green);
}

/* Hive Experience Section */
.hive-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, var(--darker) 100%);
}

.hive-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hive-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hive-text h2 {
  font-family: 'Orbitron', monospace;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--cyber-blue);
}

.hive-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
  line-height: 1.8;
}

.hive-achievements {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.achievement {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.achievement:hover {
  background: rgba(0, 255, 255, 0.1);
  transform: translateX(10px);
}

.achievement i {
  font-size: 1.2rem;
  color: var(--cyber-pink);
  transition: all 0.3s ease;
}

.achievement:hover i {
  transform: scale(1.2) rotate(360deg);
  color: var(--cyber-blue);
}

.achievement span {
  font-weight: 500;
  color: var(--text);
}

.hive-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.hive-stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 0, 128, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 0, 128, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hive-stat:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0 30px rgba(255, 0, 128, 0.3);
  background: rgba(255, 0, 128, 0.1);
}

.hive-stat .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--cyber-pink);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.hive-stat:hover .stat-number {
  transform: scale(1.2);
  color: var(--cyber-blue);
}

.hive-stat .stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.hive-visual {
  position: relative;
  height: 400px;
}

.hive-network {
  position: relative;
  width: 100%;
  height: 100%;
}

.hive-node {
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--cyber-purple);
  border-radius: 50%;
  animation: hive-pulse 3s infinite;
}

.hive-node:nth-child(1) { top: 10%; left: 20%; }
.hive-node:nth-child(2) { top: 30%; left: 70%; }
.hive-node:nth-child(3) { top: 50%; left: 40%; }
.hive-node:nth-child(4) { top: 70%; left: 80%; }
.hive-node:nth-child(5) { top: 90%; left: 30%; }

@keyframes hive-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
}

.hive-connection {
  position: absolute;
  height: 2px;
  background: var(--cyber-purple);
  animation: hive-flow 4s infinite;
}

.hive-connection:nth-child(6) {
  top: 20%;
  left: 25%;
  width: 45%;
  transform: rotate(45deg);
}

.hive-connection:nth-child(7) {
  top: 40%;
  left: 45%;
  width: 35%;
  transform: rotate(-30deg);
}

.hive-connection:nth-child(8) {
  top: 60%;
  left: 35%;
  width: 50%;
  transform: rotate(60deg);
}

@keyframes hive-flow {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.8; }
}

/* Contact Matrix */
.contact-matrix {
  padding: 8rem 0;
  background: var(--gradient-cyber);
  position: relative;
}

.matrix-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-core {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-family: 'Orbitron', monospace;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--dark);
}

.contact-info p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: var(--dark);
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(15px) scale(1.02);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--cyber-pink);
  width: 50px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-item:hover i {
  transform: scale(1.3) rotate(360deg);
  color: var(--cyber-blue);
}

.contact-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.contact-item p {
  margin: 0;
  color: var(--dark);
  opacity: 0.8;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

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

.cyber-form input,
.cyber-form select,
.cyber-form textarea {
  width: 100%;
  padding: 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  color: var(--dark);
  font-family: 'Rajdhani', sans-serif;
}

.cyber-form input::placeholder,
.cyber-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.7);
}

.cyber-form input:focus,
.cyber-form select:focus,
.cyber-form textarea:focus {
  border-color: var(--cyber-pink);
  box-shadow: 0 0 0 3px rgba(255, 0, 128, 0.1);
  outline: none;
  transform: scale(1.02);
}

.cyber-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Cyber Footer */
.cyber-footer {
  background: linear-gradient(135deg, var(--darker) 0%, #1a1a1a 100%);
  color: var(--text);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-core {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
  font-family: 'Orbitron', monospace;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--cyber-pink);
  position: relative;
}

.footer-section h3::after,
.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-cyber);
  transition: width 0.3s ease;
}

.footer-section:hover h3::after,
.footer-section:hover h4::after {
  width: 100%;
}

.footer-section p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.footer-section li:hover {
  transform: translateX(10px);
}

.footer-section a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
  position: relative;
}

.footer-section a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-cyber);
  transition: width 0.3s ease;
}

.footer-section a:hover::before {
  width: 100%;
}

.footer-section a:hover {
  opacity: 1;
  color: var(--cyber-blue);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--gradient-cyber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.2);
  box-shadow: var(--shadow-cyber);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-form input {
  padding: 1rem;
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(0, 255, 255, 0.1);
  color: var(--text);
  width: 100%;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 450px;
  background: rgba(10, 10, 10, 0.95);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-cyber);
  z-index: 1000;
  border: 2px solid var(--cyber-blue);
  backdrop-filter: blur(10px);
}

.cookie-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--cyber-blue);
}

.cookie-content p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
}

.cookie-link {
  color: var(--cyber-blue);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .floating-nav {
    top: 10px;
    left: 10px;
    right: 10px;
    transform: none;
    border-radius: 25px;
  }
  
  .nav-container {
    justify-content: space-between;
    gap: 1rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1rem;
    margin-top: 1rem;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .hero-core {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .glitch-text {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .neural-grid,
  .quantum-grid,
  .cyber-tools {
    grid-template-columns: 1fr;
  }
  
  .hive-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hive-text h2 {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .hive-text p {
    font-size: 1rem;
    text-align: center;
  }
  
  .hive-achievements {
    margin: 1.5rem 0;
  }
  
  .achievement {
    padding: 0.8rem;
  }
  
  .achievement span {
    font-size: 0.9rem;
  }
  
  .hive-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .hive-stat {
    padding: 1rem;
  }
  
  .hive-stat .stat-number {
    font-size: 2rem;
  }
  
  .hive-stat .stat-label {
    font-size: 0.8rem;
  }
  
  .hive-visual {
    height: 300px;
    order: -1;
  }
  
  .hive-network {
    transform: scale(0.8);
  }
  
  .contact-core {
    grid-template-columns: 1fr;
  }
  
  .hive-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .cookie-banner {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .glitch-text {
    font-size: 2rem;
  }
  
  .cyber-title {
    font-size: 2.5rem;
  }
  
  .neural-card,
  .quantum-card,
  .tool-card {
    padding: 2rem 1.5rem;
  }
  
  /* Hive Section Mobile Optimizations */
  .hive-section {
    padding: 4rem 0;
  }
  
  .hive-container {
    padding: 0 1rem;
  }
  
  .hive-content {
    gap: 1.5rem;
  }
  
  .hive-text h2 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hive-text p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .hive-achievements {
    margin: 1rem 0;
    gap: 0.8rem;
  }
  
  .achievement {
    padding: 0.6rem;
    gap: 0.8rem;
  }
  
  .achievement i {
    font-size: 1rem;
  }
  
  .achievement span {
    font-size: 0.8rem;
  }
  
  .hive-stats {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-top: 1.5rem;
  }
  
  .hive-stat {
    padding: 0.8rem;
  }
  
  .hive-stat .stat-number {
    font-size: 1.8rem;
  }
  
  .hive-stat .stat-label {
    font-size: 0.7rem;
  }
  
  .hive-visual {
    height: 250px;
  }
  
  .hive-network {
    transform: scale(0.7);
  }
  
  .hive-node {
    width: 12px;
    height: 12px;
  }
}

/* Tablet Specific Styles */
@media (min-width: 481px) and (max-width: 768px) {
  .hive-section {
    padding: 6rem 0;
  }
  
  .hive-container {
    padding: 0 1.5rem;
  }
  
  .hive-content {
    gap: 3rem;
  }
  
  .hive-text h2 {
    font-size: 3rem;
  }
  
  .hive-text p {
    font-size: 1.1rem;
  }
  
  .hive-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .hive-visual {
    height: 350px;
  }
  
  .hive-network {
    transform: scale(0.9);
  }
}

/* Large Tablet and Small Desktop */
@media (min-width: 769px) and (max-width: 1024px) {
  .hive-section {
    padding: 7rem 0;
  }
  
  .hive-container {
    padding: 0 2rem;
  }
  
  .hive-content {
    gap: 3.5rem;
  }
  
  .hive-text h2 {
    font-size: 3.2rem;
  }
  
  .hive-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
  }
  
  .hive-visual {
    height: 380px;
  }
}

/* Auxiliary Pages Styles */
.auxiliary-page {
  min-height: 100vh;
  background: var(--darker);
  position: relative;
}

.auxiliary-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 0, 128, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Auxiliary Header */
.auxiliary-header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--cyber-blue);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-cyber);
}

.auxiliary-header .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.auxiliary-header .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.auxiliary-header .logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--cyber-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

.auxiliary-header .logo:hover {
  color: var(--cyber-green);
  transform: scale(1.05);
}

.auxiliary-header .logo i {
  font-size: 1.8rem;
  animation: pulse 2s infinite;
}

/* Auxiliary Content */
.auxiliary-content {
  padding: 6rem 0;
  min-height: calc(100vh - 200px);
  position: relative;
  background: linear-gradient(135deg, var(--darker) 0%, #1a1a1a 100%);
}

.auxiliary-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 0, 128, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.auxiliary-content .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Content Page Specific Styles */
.content-page {
  padding: 4rem 0;
  min-height: calc(100vh - 200px);
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-header {
  text-align: center;
  margin-bottom: 5rem;
  padding: 4rem 3rem;
  background: rgba(0, 255, 255, 0.05);
  border: 2px solid var(--cyber-blue);
  border-radius: 25px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-cyber);
  position: relative;
  overflow: hidden;
}

.content-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  transition: left 0.8s ease;
}

.content-header:hover::before {
  left: 100%;
}

.content-header h1 {
  font-family: 'Orbitron', monospace;
  font-size: 4rem;
  font-weight: 700;
  color: var(--cyber-blue);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 30px var(--cyber-blue);
  animation: glitch 3s infinite;
}

.content-header p {
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.content-body {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 4rem 3rem;
  backdrop-filter: blur(20px);
  line-height: 1.8;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.content-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.01) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}

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

.content-body h2 {
  font-family: 'Orbitron', monospace;
  font-size: 2.5rem;
  color: var(--cyber-pink);
  margin: 3rem 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid rgba(255, 0, 128, 0.3);
  position: relative;
}

.content-body h2::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--cyber-pink);
  transition: width 0.5s ease;
}

.content-body h2:hover::before {
  width: 100%;
}

.content-body h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  color: var(--cyber-green);
  margin: 2.5rem 0 1rem;
  position: relative;
  padding-left: 1rem;
}

.content-body h3::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--cyber-green);
  animation: pulse 2s infinite;
}

.content-body p {
  color: var(--text);
  margin-bottom: 2rem;
  font-size: 1.2rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.content-body ul, .content-body ol {
  margin: 2rem 0;
  padding-left: 2.5rem;
  position: relative;
  z-index: 1;
}

.content-body li {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  line-height: 1.7;
  position: relative;
  padding-left: 1rem;
}

.content-body ul li::before {
  content: '▶';
  position: absolute;
  left: -1.5rem;
  color: var(--cyber-blue);
  font-size: 0.8rem;
  animation: pulse 2s infinite;
}

.content-body ol {
  counter-reset: item;
}

.content-body ol li {
  counter-increment: item;
  position: relative;
}

.content-body ol li::before {
  content: counter(item);
  position: absolute;
  left: -2rem;
  color: var(--cyber-pink);
  font-weight: 700;
  font-family: 'Orbitron', monospace;
  background: rgba(255, 0, 128, 0.1);
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.content-body strong {
  color: var(--cyber-blue);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.content-body em {
  color: var(--cyber-green);
  font-style: italic;
}

.content-body a {
  color: var(--cyber-pink);
  text-decoration: none;
  border-bottom: 2px solid var(--cyber-pink);
  transition: all 0.3s ease;
  position: relative;
}

.content-body a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyber-blue);
  transition: width 0.3s ease;
}

.content-body a:hover::before {
  width: 100%;
}

.content-body a:hover {
  color: var(--cyber-blue);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.content-body blockquote {
  background: rgba(0, 255, 255, 0.05);
  border-left: 4px solid var(--cyber-blue);
  padding: 2rem 2.5rem;
  margin: 3rem 0;
  border-radius: 0 15px 15px 0;
  position: relative;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-light);
}

.content-body blockquote::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 3rem;
  color: var(--cyber-blue);
  opacity: 0.3;
}

.content-body code {
  background: rgba(255, 0, 128, 0.1);
  color: var(--cyber-pink);
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  font-family: 'Orbitron', monospace;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 0, 128, 0.2);
  position: relative;
}

.content-body pre {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--cyber-blue);
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem 0;
  overflow-x: auto;
  position: relative;
}

.content-body pre code {
  background: none;
  border: none;
  padding: 0;
  color: var(--cyber-green);
  font-size: 1rem;
}

.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-body th {
  background: rgba(0, 255, 255, 0.1);
  color: var(--cyber-blue);
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  font-family: 'Orbitron', monospace;
}

.content-body td {
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.content-body tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Success Card Enhanced Styles */
.success-card {
  background: rgba(0, 255, 255, 0.05);
  border: 2px solid var(--cyber-blue);
  border-radius: 30px;
  padding: 5rem 4rem;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-cyber);
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

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

.success-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  transition: left 0.8s ease;
}

.success-card:hover::before {
  left: 100%;
}

.success-icon {
  margin-bottom: 3rem;
  position: relative;
}

.success-icon i {
  font-size: 6rem;
  color: var(--cyber-green);
  animation: pulse 2s infinite;
  position: relative;
  z-index: 1;
}

.success-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s infinite reverse;
}

.success-card h1 {
  font-family: 'Orbitron', monospace;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--cyber-blue);
  margin-bottom: 2rem;
  text-shadow: 0 0 30px var(--cyber-blue);
  animation: glitch 3s infinite;
}

.success-card p {
  font-size: 1.3rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.success-info {
  background: rgba(255, 0, 128, 0.05);
  border: 1px solid rgba(255, 0, 128, 0.2);
  border-radius: 20px;
  padding: 3rem;
  margin: 3rem 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.success-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 0, 128, 0.05) 50%, transparent 70%);
  animation: shimmer 4s infinite;
}

.success-info h2 {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  color: var(--cyber-pink);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.success-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.success-info li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem;
  background: rgba(0, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(0, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.success-info li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.success-info li:hover::before {
  left: 100%;
}

.success-info li:hover {
  background: rgba(0, 255, 255, 0.1);
  transform: translateX(15px) scale(1.02);
  box-shadow: 0 5px 20px rgba(0, 255, 255, 0.2);
}

.success-info li i {
  color: var(--cyber-pink);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.success-info li:hover i {
  transform: scale(1.3) rotate(360deg);
  color: var(--cyber-blue);
}

.success-info li span {
  color: var(--text);
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.success-actions {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.success-actions .cyber-btn {
  padding: 1.2rem 2.5rem;
  border: 2px solid;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 200px;
  justify-content: center;
}

.success-actions .cyber-btn.primary {
  border-color: var(--cyber-blue);
  color: var(--cyber-blue);
}

.success-actions .cyber-btn.secondary {
  border-color: var(--cyber-pink);
  color: var(--cyber-pink);
}

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

.success-actions .cyber-btn:hover::before {
  left: 0;
}

.success-actions .cyber-btn:hover {
  color: var(--dark);
  transform: translateY(-5px);
  box-shadow: var(--shadow-cyber);
}

.success-contact {
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  padding: 3rem;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.success-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(139, 92, 246, 0.05) 50%, transparent 70%);
  animation: shimmer 5s infinite;
}

.success-contact h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  color: var(--cyber-purple);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.success-contact p {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.success-contact p:hover {
  transform: translateX(10px);
  color: var(--cyber-blue);
}

.success-contact p i {
  color: var(--cyber-pink);
  width: 25px;
  text-align: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.success-contact p:hover i {
  transform: scale(1.2) rotate(360deg);
  color: var(--cyber-blue);
}

/* Auxiliary Footer */
.auxiliary-footer {
  background: linear-gradient(135deg, var(--darker) 0%, #1a1a1a 100%);
  color: var(--text);
  padding: 3rem 0 2rem;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}

.auxiliary-footer .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.auxiliary-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.auxiliary-footer-section h3,
.auxiliary-footer-section h4 {
  font-family: 'Orbitron', monospace;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--cyber-pink);
  position: relative;
}

.auxiliary-footer-section h3::after,
.auxiliary-footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-cyber);
  transition: width 0.3s ease;
}

.auxiliary-footer-section:hover h3::after,
.auxiliary-footer-section:hover h4::after {
  width: 100%;
}

.auxiliary-footer-section p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.auxiliary-footer-section ul {
  list-style: none;
}

.auxiliary-footer-section li {
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.auxiliary-footer-section li:hover {
  transform: translateX(10px);
}

.auxiliary-footer-section a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
  position: relative;
}

.auxiliary-footer-section a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-cyber);
  transition: width 0.3s ease;
}

.auxiliary-footer-section a:hover::before {
  width: 100%;
}

.auxiliary-footer-section a:hover {
  opacity: 1;
  color: var(--cyber-blue);
}

.auxiliary-footer-section .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.auxiliary-footer-section .social-links a {
  width: 40px;
  height: 40px;
  background: var(--gradient-cyber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.auxiliary-footer-section .social-links a:hover {
  transform: translateY(-5px) scale(1.2);
  box-shadow: var(--shadow-cyber);
}

.auxiliary-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auxiliary-newsletter-form input {
  padding: 1rem;
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(0, 255, 255, 0.1);
  color: var(--text);
  width: 100%;
  font-family: 'Rajdhani', sans-serif;
}

.auxiliary-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.auxiliary-newsletter-form .btn {
  background: var(--gradient-cyber);
  color: var(--dark);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
}

.auxiliary-newsletter-form .btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-cyber);
}

.auxiliary-footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
  .auxiliary-content {
    padding: 2rem 0;
  }
  
  .success-card {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  .success-card h1 {
    font-size: 2.5rem;
  }
  
  .success-card p {
    font-size: 1rem;
  }
  
  .success-info {
    padding: 1.5rem;
  }
  
  .success-info h2 {
    font-size: 1.5rem;
  }
  
  .success-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .success-actions .cyber-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .content-header {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .content-header h1 {
    font-size: 2.5rem;
  }
  
  .content-header p {
    font-size: 1rem;
  }
  
  .content-body {
    padding: 2rem 1.5rem;
  }
  
  .content-body h2 {
    font-size: 1.8rem;
  }
  
  .content-body h3 {
    font-size: 1.3rem;
  }
  
  .content-body p,
  .content-body li {
    font-size: 1rem;
  }
  
  .auxiliary-footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .success-card {
    padding: 1.5rem 1rem;
  }
  
  .success-card h1 {
    font-size: 2rem;
  }
  
  .success-icon i {
    font-size: 4rem;
  }
  
  .success-info {
    padding: 1rem;
  }
  
  .success-info ul {
    gap: 0.8rem;
  }
  
  .success-info li {
    padding: 0.6rem;
    font-size: 0.9rem;
  }
  
  .content-header {
    padding: 1.5rem 1rem;
  }
  
  .content-header h1 {
    font-size: 2rem;
  }
  
  .content-body {
    padding: 1.5rem 1rem;
  }
  
  .content-body h2 {
    font-size: 1.5rem;
  }
  
  .content-body h3 {
    font-size: 1.2rem;
  }
  
  .content-body p,
  .content-body li {
    font-size: 0.9rem;
  }
}

/* Main Content Styles for Auxiliary Pages */
main {
  min-height: calc(100vh - 200px);
  padding: 4rem 0;
  position: relative;
  background: linear-gradient(135deg, var(--darker) 0%, #1a1a1a 100%);
}

main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 0, 128, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

main .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Page Header Styles */
.page-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem;
  background: rgba(0, 255, 255, 0.05);
  border: 2px solid var(--cyber-blue);
  border-radius: 25px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-cyber);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  transition: left 0.8s ease;
}

.page-header:hover::before {
  left: 100%;
}

.page-header h1 {
  font-family: 'Orbitron', monospace;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--cyber-blue);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 30px var(--cyber-blue);
  animation: glitch 3s infinite;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Page Content Styles */
.page-content {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 3rem;
  backdrop-filter: blur(20px);
  line-height: 1.8;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.page-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.01) 50%, transparent 70%);
  animation: shimmer 4s infinite;
}

.page-content h2 {
  font-family: 'Orbitron', monospace;
  font-size: 2.2rem;
  color: var(--cyber-pink);
  margin: 2.5rem 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid rgba(255, 0, 128, 0.3);
  position: relative;
}

.page-content h2::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--cyber-pink);
  transition: width 0.5s ease;
}

.page-content h2:hover::before {
  width: 100%;
}

.page-content h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.6rem;
  color: var(--cyber-green);
  margin: 2rem 0 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.page-content h3::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--cyber-green);
  animation: pulse 2s infinite;
}

.page-content h4 {
  font-family: 'Orbitron', monospace;
  font-size: 1.3rem;
  color: var(--cyber-blue);
  margin: 1.5rem 0 1rem;
  position: relative;
  padding-left: 1rem;
}

.page-content h4::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--cyber-blue);
  font-size: 0.8rem;
  animation: pulse 2s infinite;
}

.page-content p {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.page-content ul, .page-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
  position: relative;
  z-index: 1;
}

.page-content li {
  color: var(--text);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  line-height: 1.7;
  position: relative;
  padding-left: 1rem;
}

.page-content ul li::before {
  content: '▶';
  position: absolute;
  left: -1.5rem;
  color: var(--cyber-blue);
  font-size: 0.8rem;
  animation: pulse 2s infinite;
}

.page-content ol {
  counter-reset: item;
}

.page-content ol li {
  counter-increment: item;
  position: relative;
}

.page-content ol li::before {
  content: counter(item);
  position: absolute;
  left: -2rem;
  color: var(--cyber-pink);
  font-weight: 700;
  font-family: 'Orbitron', monospace;
  background: rgba(255, 0, 128, 0.1);
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.page-content strong {
  color: var(--cyber-blue);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.page-content em {
  color: var(--cyber-green);
  font-style: italic;
}

.page-content a {
  color: var(--cyber-pink);
  text-decoration: none;
  border-bottom: 2px solid var(--cyber-pink);
  transition: all 0.3s ease;
  position: relative;
}

.page-content a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyber-blue);
  transition: width 0.3s ease;
}

.page-content a:hover::before {
  width: 100%;
}

.page-content a:hover {
  color: var(--cyber-blue);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.page-content blockquote {
  background: rgba(0, 255, 255, 0.05);
  border-left: 4px solid var(--cyber-blue);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 0 15px 15px 0;
  position: relative;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-light);
}

.page-content blockquote::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 2.5rem;
  color: var(--cyber-blue);
  opacity: 0.3;
}

.page-content code {
  background: rgba(255, 0, 128, 0.1);
  color: var(--cyber-pink);
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  font-family: 'Orbitron', monospace;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 0, 128, 0.2);
  position: relative;
}

.page-content pre {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--cyber-blue);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  overflow-x: auto;
  position: relative;
}

.page-content pre code {
  background: none;
  border: none;
  padding: 0;
  color: var(--cyber-green);
  font-size: 1rem;
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-content th {
  background: rgba(0, 255, 255, 0.1);
  color: var(--cyber-blue);
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  font-family: 'Orbitron', monospace;
}

.page-content td {
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.page-content tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 500px;
  background: rgba(10, 10, 10, 0.95);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-cyber);
  z-index: 1000;
  border: 2px solid var(--cyber-blue);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.cookie-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.05) 50%, transparent 70%);
  animation: shimmer 6s infinite;
}

.cookie-content h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--cyber-blue);
  position: relative;
  z-index: 1;
}

.cookie-content p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cookie-link {
  color: var(--cyber-blue);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cookie-link:hover {
  color: var(--cyber-green);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Responsive Design for Main Content */
@media (max-width: 768px) {
  main {
    padding: 2rem 0;
  }
  
  main .container {
    padding: 0 1rem;
  }
  
  .page-header {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .page-header p {
    font-size: 1rem;
  }
  
  .page-content {
    padding: 2rem 1.5rem;
  }
  
  .page-content h2 {
    font-size: 1.8rem;
  }
  
  .page-content h3 {
    font-size: 1.4rem;
  }
  
  .page-content h4 {
    font-size: 1.2rem;
  }
  
  .page-content p,
  .page-content li {
    font-size: 1rem;
  }
  
  .cookie-banner {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 1.5rem 1rem;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .page-content {
    padding: 1.5rem 1rem;
  }
  
  .page-content h2 {
    font-size: 1.5rem;
  }
  
  .page-content h3 {
    font-size: 1.2rem;
  }
  
  .page-content h4 {
    font-size: 1.1rem;
  }
  
  .page-content p,
  .page-content li {
    font-size: 0.9rem;
  }
  
  .cookie-banner {
    padding: 1.5rem 1rem;
  }
  
  .cookie-content h3 {
    font-size: 1.3rem;
  }
  
  .cookie-content p {
    font-size: 0.9rem;
  }
}

/* Contact Info Styles */
.contact-info {
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(139, 92, 246, 0.05) 50%, transparent 70%);
  animation: shimmer 5s infinite;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.contact-info p:hover {
  transform: translateX(10px);
  color: var(--cyber-blue);
}

.contact-info p i {
  color: var(--cyber-pink);
  width: 20px;
  text-align: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.contact-info p:hover i {
  transform: scale(1.2) rotate(360deg);
  color: var(--cyber-blue);
}

/* Last Updated Style */
.last-updated {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-style: italic;
}

/* Success Card Styles */
.success-card {
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 20px;
  padding: 3rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.success-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(139, 92, 246, 0.05) 50%, transparent 70%);
  animation: shimmer 5s infinite;
}

.success-icon {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.success-icon i {
  font-size: 4rem;
  color: var(--cyber-green);
  animation: pulse 2s infinite;
}

.success-info {
  margin: 2rem 0;
  position: relative;
  z-index: 1;
}

.success-info h2 {
  color: var(--cyber-blue);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-primary);
}

.success-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.success-info li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(139, 92, 246, 0.1);
  transition: all 0.3s ease;
}

.success-info li:hover {
  transform: translateX(10px);
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--cyber-pink);
}

.success-info li i {
  color: var(--cyber-pink);
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.success-info li span {
  color: var(--text);
  font-size: 1.1rem;
}

.success-actions {
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cyber-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: 2px solid;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cyber-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.cyber-btn:hover::before {
  left: 100%;
}

.cyber-btn.primary {
  background: var(--cyber-green);
  border-color: var(--cyber-green);
  color: var(--darker);
}

.cyber-btn.primary:hover {
  background: transparent;
  color: var(--cyber-green);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
}

.cyber-btn.secondary {
  background: transparent;
  border-color: var(--cyber-pink);
  color: var(--cyber-pink);
}

.cyber-btn.secondary:hover {
  background: var(--cyber-pink);
  color: var(--darker);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(236, 72, 153, 0.3);
}

.cyber-btn i {
  font-size: 1.2rem;
}

/* Responsive Design for Success Elements */
@media (max-width: 768px) {
  .success-card {
    padding: 2rem 1.5rem;
    margin: 1rem 0;
  }
  
  .success-icon i {
    font-size: 3rem;
  }
  
  .success-info h2 {
    font-size: 1.3rem;
  }
  
  .success-info li {
    padding: 0.8rem;
    font-size: 1rem;
  }
  
  .success-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cyber-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .success-card {
    padding: 1.5rem 1rem;
  }
  
  .success-icon i {
    font-size: 2.5rem;
  }
  
  .success-info h2 {
    font-size: 1.2rem;
  }
  
  .success-info li {
    padding: 0.6rem;
    font-size: 0.9rem;
  }
  
  .cyber-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
}
  