/* 头部样式 */
.transformers-header {
  background: linear-gradient(to right, #000000, #002366, #000000);
  padding: 20px 0;
  border-bottom: 3px solid #cc0000;
  position: relative;
  overflow: hidden;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.transformers-title {
  font-family: 'Arial Black', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin: 0;
  text-shadow: 0 0 10px rgba(204, 0, 0, 0.7);
}

.transformers-title .red {
  color: #cc0000;
}

.transformers-title .blue {
  color: #002366;
}

.subtitle {
  color: #f0c808;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.autobot-logo {
  animation: pulse 2s infinite;
}

/* 风格页脚样式 */
.transformers-footer {
  background: linear-gradient(to right, #000000, #cc0000, #000000);
  padding: 20px 0;
  border-top: 3px solid #002366;
  position: relative;
  overflow: hidden;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.footer-text {
  color: #f0c808;
  font-family: 'Orbitron', sans-serif;
  text-align: right;
  font-size: 0.9rem;
}

.footer-text p {
  margin: 5px 0;
}

.decepticon-logo {
  animation: pulse 2s infinite;
}

/* 科技线条效果 */
.tech-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.tech-lines .line {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent, #f0c808, transparent);
  margin: 10px 0;
  opacity: 0.3;
}

/* 动画效果 */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* 响应式调整 */
@media (max-width: 768px) {
  .transformers-title {
    font-size: 1.8rem;
  }
  
  .header-content, .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .autobot-logo, .decepticon-logo {
    margin: 15px 0;
  }
  
  .footer-text {
    text-align: center;
    margin-top: 15px;
  }
}