.contacts-container {
  width: 85.5%;
  max-width: 1296px;
  margin: 36px auto;
  padding: 27px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.2);
  box-sizing: border-box;
}
.contacts-container h1 {
  color: #00a8ff;
  font-size: 25px;
  margin-bottom: 23px;
  text-align: center;
  text-shadow: 1px 1px rgba(0,0,0,0.3);
}
.contacts-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-section {
  padding: 0;
  background: transparent;
  border: none;
}
.contact-section h2 {
  color: #00a8ff;
  font-size: 16px;
  margin-bottom: 11px;
  text-shadow: 1px 1px rgba(0,0,0,0.3);
  padding-left: 5px;
  border-left: 3px solid #00a8ff;
}
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
  padding: 11px 18px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 11px;
  transition: all 0.3s ease;
  text-shadow: 1px 1px rgba(0,0,0,0.3);
  min-width: 180px;
  cursor: pointer;
  font-family: inherit;
}
button.contact-btn {
  border: 1px solid rgba(255,255,255,0.2);
}
.contact-btn:hover {
  background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
  border-color: rgba(255,255,255,0.3);
}
.contact-btn:active {
}
.contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  object-fit: contain;
  color: #00a8ff;
}
.contact-btn span {
  flex: 1;
}
.contact-info-text {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  padding: 14px 18px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 11px;
  text-shadow: 1px 1px rgba(0,0,0,0.3);
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}
.project-rating-section {
  margin-top: 12px;
}
.project-rating-section h2 {
  color: #00a8ff;
  font-size: 16px;
  margin-bottom: 8px;
  text-shadow: 1px 1px rgba(0,0,0,0.3);
  padding-left: 5px;
  border-left: 3px solid #00a8ff;
}
.project-rating-stars {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 8px;
}
.project-rating-star {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.project-rating-star img {
  width: 28px;
  height: 28px;
  transition: transform 0.2s ease;
}
.project-rating-star:hover img {
  transform: scale(1.1);
}
.project-rating-my,
.project-rating-total {
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-shadow: 1px 1px rgba(0,0,0,0.3);
}
.project-rating-total {
  margin-top: 6px;
  color: #00a8ff;
}
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
  }
  .contacts-container {
    width: 100%;
    max-width: 100%;
    padding: 15px;
    margin: 0;
    box-sizing: border-box;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0;
  }
  .contacts-container h1 {
    font-size: 20px;
    margin-bottom: 15px;
    text-shadow: none !important;
    color: #3390ec;
  }
  .contact-section {
    padding: 0;
  }
  .contact-section h2 {
    font-size: 16px;
    margin-bottom: 12px;
    text-shadow: none !important;
    color: #3390ec;
    border-left: 2px solid rgba(51, 144, 236, 0.3) !important;
  }
  .contact-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .contact-btn {
    width: 100%;
    min-width: unset;
    padding: 12px 16px;
    font-size: 14px;
    box-sizing: border-box;
    background: rgba(30, 39, 50, 0.6) !important;
    border: 1px solid rgba(51, 144, 236, 0.3) !important;
    box-shadow: none !important;
    text-shadow: none !important;
    color: #ffffff;
    transform: none !important;
  }
  .contact-btn:hover {
    background: rgba(30, 39, 50, 0.8) !important;
    border-color: rgba(51, 144, 236, 0.5) !important;
    transform: none !important;
    box-shadow: none !important;
  }
  .contact-btn:active {
    transform: none !important;
    box-shadow: none !important;
  }
  .contact-icon {
    width: 18px;
    height: 18px;
    color: #3390ec;
  }
  .contact-info-text {
    font-size: 13px;
    padding: 12px 16px;
    background: rgba(30, 39, 50, 0.6) !important;
    border: 1px solid rgba(51, 144, 236, 0.3) !important;
    text-shadow: none !important;
    color: #e4e4e4;
  }
  .project-rating-section {
    margin-top: 12px;
  }
  .project-rating-section h2 {
    color: #3390ec;
    text-shadow: none !important;
    font-size: 13px;
    border-left: 2px solid rgba(51, 144, 236, 0.3) !important;
  }
  .project-rating-star img {
    width: 22px;
    height: 22px;
  }
  .project-rating-my,
  .project-rating-total {
    text-shadow: none !important;
    font-size: 13px;
  }
  .project-rating-total {
    color: #3390ec;
  }
  .geoip-notice {
    width: 100%;
    max-width: 100%;
    margin: 15px auto 0;
    font-size: 13px;
    text-shadow: none !important;
    color: #3390ec;
    padding: 6px 0;
  }
  .geoip-container {
    width: 100%;
    max-width: 100%;
    margin: 15px auto;
  }
  .geoip-info {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    background: rgba(30, 39, 50, 0.6) !important;
    border: 1px solid rgba(51, 144, 236, 0.2) !important;
    border-radius: 8px;
  }
  .geoip-item {
    min-width: unset;
    width: 100%;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
  }
  .geoip-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .geoip-label {
    font-size: 13px;
    color: #3390ec;
    text-shadow: none !important;
  }
  .geoip-value {
    font-size: 13px;
    color: #e4e4e4;
    text-shadow: none !important;
    text-align: right;
  }
}
.geoip-notice {
  width: 85.5%;
  max-width: 1296px;
  margin: 18px auto 0;
  text-align: center;
  color: #00a8ff;
  font-size: 14px;
  font-weight: bold;
  text-shadow: 1px 1px rgba(0,0,0,0.3);
  padding: 8px 0;
}
.geoip-container {
  width: 85.5%;
  max-width: 1296px;
  margin: 9px auto 18px;
  text-align: center;
}
.geoip-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 15px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 11px;
  border: 1px solid rgba(255,255,255,0.2);
}
.geoip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 120px;
}
.geoip-label {
  color: #00a8ff;
  font-size: 14px;
  font-weight: bold;
  text-shadow: 1px 1px rgba(0,0,0,0.3);
}
.geoip-value {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-shadow: 1px 1px rgba(0,0,0,0.3);
}
.geoip-value[data-state="yes"] {
  color: #3ddc97 !important;
}
.geoip-value[data-state="no"] {
  color: #ff6b6b !important;
}
.feedback-btn {
  background: linear-gradient(135deg, #00a8ff 0%, #0077b6 100%) !important;
  border-color: rgba(255,255,255,0.4) !important;
  box-shadow: 0 4px 15px rgba(0, 168, 255, 0.3);
  padding: 12px 30px;
  font-size: 14px;
  letter-spacing: 0.5px;
  min-width: unset;
}
.feedback-btn:hover {
  background: linear-gradient(135deg, #0096e6 0%, #006699 100%) !important;
  transform: translateY(-5px) scale(1.5);
  box-shadow: 0 10px 30px rgba(0, 168, 255, 0.6);
}
.feedback-btn .contact-icon {
  color: #fff !important;
}
