.warning-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: radial-gradient(circle at center top, #1a0505 0%, #000 100%);
}

.warning-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 5;
}

.warning-header {
  text-align: center;
  margin-bottom: 70px;
}

.warning-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin-bottom: 30px;
  background: rgba(255, 59, 59, 0.05);
  border-radius: 50%;
  border: 1px solid rgba(255, 59, 59, 0.2);
  box-shadow: 0 0 30px rgba(255, 59, 59, 0.1);
}

.warning-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid #ff3b3b;
  opacity: 0;
  animation: radarPing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.warning-symbol {
  font-size: 40px;
  font-weight: 800;
  color: #ff3b3b;
  font-family: 'JetBrains Mono', monospace;
  text-shadow: 0 0 20px #ff3b3b;
  animation: blinkWarn 3s infinite;
}

.warning-header h3 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}

.warning-body {
  background: rgba(20, 5, 5, 0.6);
  border: 1px solid rgba(255, 59, 59, 0.2);
  border-radius: 24px;
  padding: 50px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(255, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.warning-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff3b3b, transparent);
  animation: scanLine 3s linear infinite;
  opacity: 0.5;
}

.warning-intro {
  text-align: center;
  color: #ffcccc;
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.warning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.warning-item {
  position: relative;
  padding: 20px 20px 20px 50px;
  background: rgba(40, 0, 0, 0.3);
  border-left: 2px solid #ff3b3b;
  border-radius: 0 12px 12px 0;
  color: #ff8080;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.warning-item::before {
  content: '';
  position: absolute;
  left: 18px;
  width: 6px;
  height: 6px;
  background: #ff3b3b;
  transform: rotate(45deg);
  box-shadow: 0 0 10px #ff3b3b;
  animation: glowRed 2s infinite alternate;
}

.warning-item:hover {
  background: rgba(255, 59, 59, 0.1);
  padding-left: 55px;
  color: #fff;
  box-shadow: inset 0 0 20px rgba(255, 59, 59, 0.05);
}

.warning-footer {
  text-align: center;
  color: #ff3b3b;
  font-weight: 700;
  font-size: 15px;
  margin-top: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 59, 59, 0.1);
}

.contact-area {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.contact-frame {
  position: relative;
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px;
  border-radius: 24px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.contact-frame:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
  z-index: 10;
}

.frame-glass {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  pointer-events: none;
  z-index: 2;
  border-radius: 20px;
}

.frame-content {
  background: #0e0e10;
  border-radius: 18px;
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.contact-frame h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.img-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid #1a1a1a;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.contact-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
  filter: grayscale(0.5);
}

.contact-frame:hover .contact-img {
  transform: scale(1.1);
  filter: grayscale(0);
}

.img-scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 204, 255, 0.4) 50%, transparent 60%);
  transform: translateY(-100%);
  animation: scanImage 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  z-index: 5;
  pointer-events: none;
  opacity: 0.5;
}

.contact-frame:hover .img-scanline {
  opacity: 1;
}

.contact-number {
  font-family: 'JetBrains Mono', monospace;
  color: #888;
  font-size: 15px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 6px;
}

.frame-btn {
  padding: 14px 32px;
  background: #fff;
  color: #000;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s;
  text-transform: uppercase;
}

.frame-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

@keyframes radarPing {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2); opacity: 0; }
}

@keyframes blinkWarn {
  0%, 100% { opacity: 1; text-shadow: 0 0 20px #ff3b3b; }
  50% { opacity: 0.5; text-shadow: none; }
}

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

@keyframes glowRed {
  0% { box-shadow: 0 0 5px #ff3b3b; opacity: 0.7; }
  100% { box-shadow: 0 0 15px #ff3b3b; opacity: 1; }
}

@keyframes scanImage {
  0% { transform: translateY(-150%); }
  50% { transform: translateY(150%); }
  51% { transform: translateY(-150%); }
  100% { transform: translateY(-150%); }
}

@media (max-width: 768px) {
  .contact-area { grid-template-columns: 1fr; gap: 24px; }
  .warning-grid { grid-template-columns: 1fr; }
  .warning-body { padding: 30px 20px; }
  .warning-header h3 { font-size: 28px; }
}
