/* Override brown color to green for Minecraft theme */
:root {
  --brown: #2E7D32;
}

/* Background for entire landing page in header style - lightened */
body {
  background: linear-gradient(135deg, rgba(20, 30, 20, 0.6) 0%, rgba(30, 40, 30, 0.5) 100%);
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/static/images/item_maincraft.jpg) center/cover no-repeat;
  opacity: 0.5;
  z-index: -1;
  filter: blur(1px);
}

/* Enhanced header for Minecraft landing - lightened */
header.bg {
  background: linear-gradient(135deg, rgba(20, 30, 20, 0.65) 0%, rgba(30, 40, 30, 0.55) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(76, 175, 80, 0.2);
}

.header-top {
  padding: 20px 0 !important;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
}

header.bg .logo-side {
  justify-self: start !important;
}

header.bg .header-phone-side {
  justify-self: center !important;
  text-align: center !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
}

#logoheader {
  transition: transform 0.3s ease;
}

#logoheader:hover {
  transform: scale(1.05);
}

#logoheader img {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}


/* Styles for sections in header style */
section {
  position: relative;
  z-index: 1;
}

#fetures-section,
#prices,
#panel-features,
.pricing-area {
  background: linear-gradient(135deg, rgba(20, 30, 20, 0.5) 0%, rgba(30, 40, 30, 0.4) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 40px 0;
  margin: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.15);
}

.service-card {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(76, 175, 80, 0.2);
}

/* Move hero-section up after services-section */
.hero-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

/* Add padding for content so it doesn't overlap with header */
.hero-container {
  padding-top: 100px;
}


.pricing_card {
  background: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(76, 175, 80, 0.25);
  border-radius: 16px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  height: auto !important;
  min-height: 520px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.pricing_card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(76, 175, 80, 0.55) !important;
  box-shadow: 0 16px 40px rgba(76, 175, 80, 0.25), 0 8px 24px rgba(0, 0, 0, 0.3) !important;
}

#prices .pricing-swiper-wrap {
  position: relative;
}

#prices .swiperprice {
  padding: 10px 4px 0 !important;
  overflow: hidden !important;
}

#prices .pricing-scrollbar {
  position: relative;
  left: auto;
  bottom: auto;
  width: min(900px, 92%);
  height: 12px;
  margin: 32px auto 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(76, 175, 80, 0.25);
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

#prices .pricing-scrollbar-drag {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #2E7D32 0%, #4CAF50 50%, #81C784 100%);
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(76, 175, 80, 0.45);
  cursor: grab;
  transition: transform 0.35s ease, box-shadow 0.25s ease, filter 0.25s ease;
  will-change: transform;
}

#prices .pricing-scrollbar-drag.is-dragging {
  transition: none;
  cursor: grabbing;
}

#prices .pricing-scrollbar-drag:hover {
  filter: brightness(1.08);
  box-shadow: 0 0 20px rgba(76, 175, 80, 0.65);
}

#prices .pricing-scrollbar-drag.is-dragging,
#prices .pricing-scrollbar-drag:active {
  filter: brightness(1.12);
  box-shadow: 0 0 24px rgba(129, 199, 132, 0.75);
}

#prices .cpu_box {
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%) !important;
  color: #fff !important;
  padding: 28px 0 !important;
  font-size: 28px !important;
  font-weight: 800 !important;
}

#prices .cpu_box p {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  margin: 0 !important;
}

#prices .cpu_box svg {
  width: 32px !important;
  height: 32px !important;
}

#prices .ram_box {
  background: linear-gradient(135deg, rgba(200, 230, 201, 0.95) 0%, rgba(165, 214, 167, 0.9) 100%) !important;
  color: #1B5E20 !important;
  padding: 24px 0 !important;
  font-size: 26px !important;
  font-weight: 700 !important;
}

#prices .ram_box p {
  color: #2E7D32 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  margin-top: 6px !important;
}

#prices .storage_list {
  padding: 20px 0 !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

#prices .storage_list p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  margin-bottom: 10px !important;
}

#prices .storage_list div {
  width: 80% !important;
  margin: 0 auto !important;
  background: rgba(76, 175, 80, 0.15) !important;
  border: 1px solid rgba(76, 175, 80, 0.3) !important;
  padding: 20px 0 !important;
  border-radius: 8px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: rgba(255, 255, 255, 0.95) !important;
}

#prices .pricing-content {
  flex: 1 !important;
}

#prices .pricing_price {
  padding: 20px 0 10px !important;
}

#prices .pricing_price .month {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #81C784 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

#prices .pricing_price .hour {
  background: rgba(76, 175, 80, 0.2) !important;
  border: 1px solid rgba(76, 175, 80, 0.35) !important;
  padding: 7px 16px !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-top: 8px !important;
  display: inline-block !important;
}

#prices .pricing_bottom {
  margin: auto !important;
  padding: 20px 0 24px !important;
}

#prices .pricing_bottom .btn-main2 {
  min-width: 180px !important;
  border: 1px solid rgba(76, 175, 80, 0.6) !important;
  background: rgba(76, 175, 80, 0.2) !important;
  color: #fff !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
}

#prices .pricing_bottom .btn-main2:hover {
  background: rgba(76, 175, 80, 0.45) !important;
  border-color: #4CAF50 !important;
  transform: translateY(-2px) !important;
}

/* Styling for game servers block */
#prices .sec_title,
#panel-features .sec_title {
  color: rgba(255, 255, 255, 0.98) !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  position: relative !important;
  display: inline-block !important;
  font-size: 42px !important;
  font-weight: 900 !important;
  letter-spacing: -0.5px !important;
  margin-bottom: 16px !important;
  background: linear-gradient(135deg, #ffffff 0%, #e8f5e9 50%, #4CAF50 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  position: relative !important;
  padding-bottom: 20px !important;
}

#prices .sec_title::after,
#panel-features .sec_title::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 80px !important;
  height: 4px !important;
  background: linear-gradient(90deg, transparent, #4CAF50, transparent) !important;
  border-radius: 2px !important;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.5) !important;
}

.game-servers-subtitle {
  text-align: center !important;
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  margin: 24px auto 50px auto !important;
  max-width: 700px !important;
  line-height: 1.7 !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4) !important;
  padding: 0 20px !important;
  position: relative !important;
}

.game-servers-subtitle::before,
.game-servers-subtitle::after {
  content: '✨' !important;
  display: inline-block !important;
  margin: 0 12px !important;
  font-size: 18px !important;
  opacity: 0.8 !important;
  animation: sparkle 2s ease-in-out infinite !important;
}

@keyframes sparkle {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.game-servers-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 24px !important;
  margin-top: 30px !important;
}

.game-server-card {
  background: linear-gradient(135deg, rgba(20, 30, 20, 0.4) 0%, rgba(30, 40, 30, 0.35) 100%) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(76, 175, 80, 0.4) !important;
  border-radius: 16px !important;
  padding: 24px !important;
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

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

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

.game-server-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  background: linear-gradient(135deg, rgba(30, 40, 30, 0.5) 0%, rgba(40, 50, 40, 0.45) 100%) !important;
  border-color: rgba(76, 175, 80, 0.7) !important;
  box-shadow: 0 12px 40px rgba(76, 175, 80, 0.5), 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.game-server-image {
  width: 100% !important;
  max-width: 200px !important;
  height: 120px !important;
  object-fit: cover !important;
  border-radius: 12px !important;
  margin-bottom: 20px !important;
  border: 2px solid rgba(76, 175, 80, 0.3) !important;
  transition: all 0.4s ease !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.game-server-card:hover .game-server-image {
  border-color: rgba(76, 175, 80, 0.6) !important;
  transform: scale(1.05) !important;
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4) !important;
}

.game-server-title {
  color: rgba(255, 255, 255, 0.98) !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  transition: color 0.3s ease !important;
  position: relative !important;
  z-index: 1 !important;
}

.game-server-card:hover .game-server-title {
  color: #4CAF50 !important;
  text-shadow: 0 2px 12px rgba(76, 175, 80, 0.6) !important;
}

.game-server-description {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  margin-bottom: 24px !important;
  flex-grow: 1 !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) !important;
  position: relative !important;
  z-index: 1 !important;
}

.game-server-card:hover .game-server-description {
  color: rgba(255, 255, 255, 0.95) !important;
}

.game-server-card .btn-main {
  margin-top: auto !important;
  position: relative !important;
  z-index: 1 !important;
}

.game-server-card .feature-icon {
  transition: all 0.4s ease !important;
}

.game-server-card .feature-icon svg {
  transition: transform 0.4s ease !important;
}

.game-server-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg) !important;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.3) 0%, rgba(76, 175, 80, 0.2) 100%) !important;
  border-color: rgba(76, 175, 80, 0.5) !important;
  box-shadow: 0 4px 16px rgba(76, 175, 80, 0.4) !important;
}

.game-server-card:hover .feature-icon svg {
  transform: scale(1.1) !important;
}

@media (max-width: 768px) {
  #prices .sec_title,
  #panel-features .sec_title {
    font-size: 32px !important;
    padding-bottom: 16px !important;
  }
  
  #prices .sec_title::after,
  #panel-features .sec_title::after {
    width: 60px !important;
    height: 3px !important;
  }
  
  .game-servers-subtitle {
    font-size: 18px !important;
    margin: 20px auto 40px auto !important;
    padding: 0 15px !important;
  }
  
  .game-servers-subtitle::before,
  .game-servers-subtitle::after {
    margin: 0 8px !important;
    font-size: 16px !important;
  }
  
  .game-servers-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  
  .game-server-card {
    padding: 20px !important;
  }
  
  .game-server-image {
    max-width: 180px !important;
    height: 100px !important;
  }
  
  .game-server-title {
    font-size: 20px !important;
  }
  
  .game-server-description {
    font-size: 15px !important;
  }
}

/* Footer - styles from landing.html adapted for lighter style */
footer {
  background: linear-gradient(135deg, rgba(20, 30, 20, 0.65) 0%, rgba(30, 40, 30, 0.55) 100%) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  color: rgba(255, 255, 255, 0.95) !important;
  padding: 60px 0 30px !important;
  border-top: 1px solid rgba(76, 175, 80, 0.2) !important;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2) !important;
}

.footer-top {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 30px !important;
  margin-bottom: 40px !important;
}

.footer-logo-side {
  max-width: 280px !important;
}

#logofooter img {
  width: 120px !important;
  transition: transform 0.3s ease !important;
  object-fit: contain !important;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3)) !important;
}

#logofooter:hover img {
  transform: scale(1.05) !important;
}

.footer-phone {
  display: flex !important;
  flex-direction: column !important;
  gap: 5px !important;
}

.footer-phone .phone {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.footer-phone .mail {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 15px !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.footer-phone .mail:hover {
  color: #4CAF50 !important;
}

.footer-btn .btn-main2 {
  border: 1px solid rgba(76, 175, 80, 0.5) !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  background: rgba(76, 175, 80, 0.1) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.footer-btn .btn-main2:hover {
  background: rgba(76, 175, 80, 0.3) !important;
  border-color: #4CAF50 !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
}

.footer-divider {
  height: 1px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  margin-bottom: 40px !important;
}

.footer-bottom {
  display: flex !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 30px !important;
  align-items: flex-start !important;
  margin-bottom: 20px !important;
}

.downloadboxs {
  display: grid !important;
  grid-template-columns: auto auto auto auto !important;
  gap: 20px !important;
  width: 100% !important;
}

.downloadboxs .rekvizit-box a {
  text-align: center !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.downloadboxs .rekvizit-box a:hover {
  color: #4CAF50 !important;
}

.footer-menu .menu-title,
.footer-hours .menu-title {
  font-weight: 700 !important;
  font-size: 20px !important;
  color: rgba(255, 255, 255, 0.95) !important;
  margin-bottom: 10px !important;
}

.menu-grid {
  display: grid !important;
  grid-template-columns: repeat(4, auto) !important;
  gap: 8px 40px !important;
}

.menu-grid a {
  font-size: 16px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  transition: color 0.3s ease !important;
  text-decoration: none !important;
}

.menu-grid a:hover {
  color: #4CAF50 !important;
}

.footer-hours .hours-line {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 15px !important;
}

.footer-hours .hours-line svg {
  fill: rgba(255, 255, 255, 0.8) !important;
}

.rekvizit-box {
  background: linear-gradient(135deg, rgba(20, 30, 20, 0.35) 0%, rgba(30, 40, 30, 0.3) 100%) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border-radius: 18px !important;
  border: 1px solid rgba(76, 175, 80, 0.4) !important;
  padding: 45px 50px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.rekvizit-box h3 {
  font-size: 28px !important;
  font-weight: 800 !important;
  margin-bottom: 26px !important;
  color: rgba(255, 255, 255, 0.95) !important;
}

.rekv-2col {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 20px 45px !important;
}

.rekv-col {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.rekv-col li {
  display: flex !important;
  justify-content: space-between !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.rekv-col li:last-of-type {
  border-bottom: none !important;
}

.rekv-col span {
  font-size: 17px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-right: 15px !important;
}

.rekv-col p {
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  text-align: right !important;
}

.boxs .container {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}

.footer-end {
  text-align: center !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding-top: 20px !important;
  margin-top: 30px !important;
  font-size: 14px !important;
}

.footer-end p {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 15px !important;
  margin: 0 !important;
}

.no-phone {
  -webkit-touch-callout: none !important;
  -webkit-user-select: text !important;
}

@media(max-width:1200px) {
  .downloadboxs .rekvizit-box {
    padding: 30px !important;
  }
}

@media(max-width:992px) {
  #logofooter img {
    width: 95px !important;
  }
}

@media(max-width:768px) {
  .downloadboxs {
    grid-template-columns: 1fr !important;
  }
  
  .rekv-2col {
    grid-template-columns: 1fr !important;
  }
  
  .downloadboxs .rekvizit-box {
    padding: 20px !important;
    min-height: 76px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  .rekvizit-box {
    padding: 20px !important;
    width: 100% !important;
  }
  
  .menu-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .footer-top {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}

/* Service card styling */
.services-section {
  padding: 60px 0 !important;
  position: relative;
}

.services-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(76, 175, 80, 0.3) !important;
  border-radius: 16px !important;
  padding: 40px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
}

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

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

.service-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(76, 175, 80, 0.6) !important;
  box-shadow: 0 12px 48px rgba(76, 175, 80, 0.3), 0 4px 16px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.service-card .card-left {
  width: 70% !important;
}

.service-card .card-left h2 {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 32px !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
  line-height: 1.3 !important;
}

.service-card .card-left p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 18px !important;
  line-height: 1.6 !important;
  margin-bottom: 28px !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4) !important;
}

.service-card .card-left .btn-main {
  margin-top: 8px !important;
}

.service-card .card-right {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.service-card .card-right .price {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 18px !important;
  text-align: center !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
}

.service-card .card-right .price-value {
  color: #4CAF50 !important;
  font-size: 36px !important;
  font-weight: 900 !important;
  display: block !important;
  margin: 8px 0 !important;
  text-shadow: 0 2px 12px rgba(76, 175, 80, 0.5) !important;
}

.service-card .card-right .price-sub {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 14px !important;
  margin-top: 4px !important;
}

@media (max-width: 992px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
}

@media (max-width: 768px) {
  .service-card {
    padding: 24px !important;
  }
  
  .service-card .card-left {
    width: 100% !important;
    margin-bottom: 24px !important;
  }
  
  .service-card .card-left h2 {
    font-size: 24px !important;
  }
  
  .service-card .card-left p {
    font-size: 16px !important;
  }
  
  .service-card .card-right {
    width: 100% !important;
  }
  
  .process-steps {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  
  .process-step h3 {
    font-size: 18px !important;
  }
  
  .process-step p {
    font-size: 15px !important;
  }
}

/* Process step link styling */
.process-step h3 a {
  color: inherit !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: color 0.3s ease !important;
}

.process-step h3 a:hover {
  color: #4CAF50 !important;
  text-shadow: 0 2px 12px rgba(76, 175, 80, 0.6) !important;
}

/* Features section styling */
#fetures-section {
  padding: 60px 0 !important;
  position: relative;
}

#fetures-section .rows {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 24px !important;
  margin-top: 40px !important;
}

#fetures-section .fetures-place {
  background: linear-gradient(135deg, rgba(20, 30, 20, 0.35) 0%, rgba(30, 40, 30, 0.3) 100%) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(76, 175, 80, 0.35) !important;
  border-radius: 16px !important;
  padding: 32px 24px !important;
  text-align: center !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

#fetures-section .fetures-place::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.2), transparent) !important;
  transition: left 0.6s ease !important;
}

#fetures-section .fetures-place:hover::before {
  left: 100% !important;
}

#fetures-section .fetures-place::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, transparent 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.4s ease !important;
}

#fetures-section .fetures-place:hover::after {
  opacity: 1 !important;
}

#fetures-section .fetures-place:hover {
  transform: translateY(-8px) scale(1.02) !important;
  background: linear-gradient(135deg, rgba(30, 40, 30, 0.45) 0%, rgba(40, 50, 40, 0.4) 100%) !important;
  border-color: rgba(76, 175, 80, 0.7) !important;
  box-shadow: 0 12px 40px rgba(76, 175, 80, 0.5), 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

#fetures-section .fetures-place .icon {
  font-size: 52px !important;
  margin-bottom: 20px !important;
  display: inline-block !important;
  transition: all 0.4s ease !important;
  filter: drop-shadow(0 4px 12px rgba(76, 175, 80, 0.4)) !important;
  position: relative !important;
  z-index: 1 !important;
}

#fetures-section .fetures-place:hover .icon {
  transform: scale(1.2) rotate(10deg) !important;
  filter: drop-shadow(0 6px 20px rgba(76, 175, 80, 0.6)) !important;
}

#fetures-section .fetures-place h5 {
  color: rgba(255, 255, 255, 0.98) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  z-index: 1 !important;
}

#fetures-section .fetures-place:hover h5 {
  color: #4CAF50 !important;
  text-shadow: 0 2px 12px rgba(76, 175, 80, 0.6) !important;
}

#fetures-section .fetures-place p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) !important;
  position: relative !important;
  z-index: 1 !important;
}

#fetures-section .fetures-place:hover p {
  color: rgba(255, 255, 255, 0.95) !important;
}

#fetures-section .ripplehover {
  position: relative !important;
  overflow: hidden !important;
}

#fetures-section .ripplehover:active::after {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 300px !important;
  height: 300px !important;
  border-radius: 50% !important;
  background: rgba(76, 175, 80, 0.2) !important;
  transform: translate(-50%, -50%) !important;
  animation: ripple 0.6s ease-out !important;
}

@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

@media (max-width: 768px) {
  #fetures-section .rows {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  
  #fetures-section .fetures-place {
    padding: 24px 20px !important;
  }
  
  #fetures-section .fetures-place .icon {
    font-size: 40px !important;
  }
  
  #fetures-section .fetures-place h5 {
    font-size: 20px !important;
  }
  
  #fetures-section .fetures-place p {
    font-size: 15px !important;
  }
}

/* Enhanced hero-text for Minecraft */
.hero-text {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #81C784 !important;
  margin-bottom: 20px !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8),
               0 4px 20px rgba(0, 0, 0, 0.6),
               0 0 15px rgba(76, 175, 80, 0.5) !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  position: relative !important;
  display: inline-block !important;
}

.hero-title {
  font-size: 56px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  margin-bottom: 28px !important;
  color: #FFFFFF !important;
  font-family: 'Press Start 2P', 'Roboto', monospace !important;
  text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.8),
               6px 6px 0px rgba(0, 0, 0, 0.6),
               8px 8px 0px rgba(0, 0, 0, 0.4),
               0 0 20px rgba(76, 175, 80, 0.5),
               0 0 40px rgba(76, 175, 80, 0.3) !important;
  position: relative !important;
  display: inline-block !important;
  letter-spacing: 2px !important;
  white-space: nowrap !important;
  text-transform: uppercase !important;
  image-rendering: pixelated !important;
  image-rendering: -moz-crisp-edges !important;
  image-rendering: crisp-edges !important;
  transform: scale(1) !important;
  filter: drop-shadow(0 0 10px rgba(76, 175, 80, 0.4)) !important;
}

.hero-title::before {
  content: 'VDS для Minecraft JE';
  position: absolute;
  top: 3px;
  left: 3px;
  color: rgba(76, 175, 80, 0.5);
  z-index: -1;
  font-family: 'Press Start 2P', 'Roboto', monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
  filter: blur(1px);
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #4CAF50, transparent);
  border-radius: 2px;
  box-shadow: 0 2px 15px rgba(76, 175, 80, 0.6);
  animation: underline-glow 2s ease-in-out infinite;
}

@keyframes underline-glow {
  0%, 100% {
    box-shadow: 0 2px 15px rgba(76, 175, 80, 0.6);
    opacity: 1;
  }
  50% {
    box-shadow: 0 2px 25px rgba(76, 175, 80, 0.9);
    opacity: 0.9;
  }
}

.hero-desc {
  font-size: 22px !important;
  line-height: 1.8 !important;
  margin-bottom: 36px !important;
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6),
               0 4px 20px rgba(0, 0, 0, 0.4),
               0 0 15px rgba(255, 255, 255, 0.1) !important;
  font-weight: 400 !important;
  max-width: 700px !important;
  position: relative !important;
  padding: 20px 0 !important;
}

.hero-desc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #4CAF50, transparent);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
}

.hero-desc::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #4CAF50);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
}

/* Enhanced buttons in hero */
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-buttons .btn-main {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  border: 2px solid #4CAF50;
  color: #fff;
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(76, 175, 80, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  text-transform: none;
  letter-spacing: 0.5px;
}

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

.hero-buttons .btn-main:hover::before {
  left: 100%;
}

.hero-buttons .btn-main:hover {
  background: linear-gradient(135deg, #45a049 0%, #4CAF50 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(76, 175, 80, 0.5), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-buttons .btn-main2 {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-transform: none;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-main2:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.hero-buttons .landing-user-chip {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.95) 0%, rgba(46, 125, 50, 0.95) 100%);
  border: 2px solid #81C784;
  color: #fff;
  padding: 16px 32px;
  min-height: 56px;
  gap: 16px;
  border-radius: 12px;
  font-size: 16px;
  box-shadow: 0 6px 24px rgba(76, 175, 80, 0.55), 0 2px 8px rgba(0, 0, 0, 0.3);
  max-width: none;
}

.hero-buttons .landing-user-chip:hover {
  background: linear-gradient(135deg, #66BB6A 0%, #43A047 100%);
  border-color: #A5D6A7;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(76, 175, 80, 0.65), 0 4px 12px rgba(0, 0, 0, 0.35);
}

.hero-buttons .landing-user-name {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.hero-buttons .landing-user-cta {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons .landing-user-icon {
  width: 24px;
  height: 24px;
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.hero-buttons .landing-user-chip:hover .landing-user-cta {
  color: #fff;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 24px !important;
    white-space: normal !important;
    letter-spacing: 1px !important;
    line-height: 1.4 !important;
  }
  
  .hero-title::before {
    top: 1px;
    left: 1px;
  }
  
  .hero-subtitle {
    font-size: 24px !important;
    letter-spacing: 1px !important;
  }
  
  .hero-desc {
    font-size: 18px !important;
    padding: 16px 0 !important;
  }
  
  .hero-desc::before,
  .hero-desc::after {
    width: 40px !important;
    height: 2px !important;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-buttons .btn-main,
  .hero-buttons .btn-main2 {
    width: 100%;
    padding: 14px 32px;
  }

  .hero-buttons .landing-user-chip {
    width: 100%;
    max-width: 100%;
    padding: 14px 24px;
  }

  .hero-buttons .landing-user-name {
    font-size: 15px;
  }

  .hero-buttons .landing-user-cta {
    font-size: 14px;
  }
}

/* Scroll reveal animations - Alternative version with more dynamic effects */
.scroll-reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  filter: blur(4px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-60px) rotateY(-15deg);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  perspective: 1000px;
}

.scroll-reveal-left.revealed {
  opacity: 1;
  transform: translateX(0) rotateY(0deg);
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(60px) rotateY(15deg);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  perspective: 1000px;
}

.scroll-reveal-right.revealed {
  opacity: 1;
  transform: translateX(0) rotateY(0deg);
}

.scroll-reveal-scale {
  opacity: 0;
  transform: scale(0.8) rotateZ(-5deg);
  filter: blur(3px);
  transition: opacity 1s cubic-bezier(0.34, 1.56, 0.64, 1), 
              transform 1s cubic-bezier(0.34, 1.56, 0.64, 1),
              filter 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scroll-reveal-scale.revealed {
  opacity: 1;
  transform: scale(1) rotateZ(0deg);
  filter: blur(0);
}

/* Stagger animation delay for child elements - with longer delays for more dramatic effect */
.scroll-reveal-stagger > *:nth-child(1) {
  transition-delay: 0.15s;
}

.scroll-reveal-stagger > *:nth-child(2) {
  transition-delay: 0.3s;
}

.scroll-reveal-stagger > *:nth-child(3) {
  transition-delay: 0.45s;
}

.scroll-reveal-stagger > *:nth-child(4) {
  transition-delay: 0.6s;
}

.scroll-reveal-stagger > *:nth-child(5) {
  transition-delay: 0.75s;
}

.scroll-reveal-stagger > *:nth-child(6) {
  transition-delay: 0.9s;
}

/* Disable animations on mobile for better performance */
@media (max-width: 768px) {
  .scroll-reveal,
  .scroll-reveal-left,
  .scroll-reveal-right,
  .scroll-reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

