MediaWiki:Common.css: различия между версиями

Страница интерфейса MediaWiki
(Отмена версии 14598, сделанной Perl (обсуждение))
Метка: отмена
Нет описания правки
Строка 878: Строка 878:
}
}


.sunrise-hero {
 
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0f3460 100%);
:root {
    border-radius: 10px;
  --space-primary: #ff6b35;
    padding: 40px 20px;
  --space-secondary: #77c1d9;
     text-align: center;
  --space-accent: #9dd7ea;
    margin: 30px 0 25px 0;  
  --space-dark: #0a0a0a;
    color: #ffffff;
  --space-darker: #1a1a2e;
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
  --space-purple: #16213e;
    border: 1px solid #2d3748;
  --space-blue: #0f3460;
    clear: both;  
  --space-orange: #f7931e;
  --space-glow: rgba(255, 107, 53, 0.6);
  --space-text: #e8e8e8;
  --space-text-bright: #ffffff;
}
 
.sunrise-alert {
  background: linear-gradient(135deg, var(--space-orange) 0%, var(--space-primary) 100%);
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
 
.sunrise-alert::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}
 
@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}
 
.alert-content {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}
 
.alert-icon {
  font-size: 2em;
  animation: pulse 2s infinite;
}
 
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
 
.alert-text {
  color: var(--space-text-bright);
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
 
.sunrise-hero-new {
  position: relative;
  background: linear-gradient(135deg, var(--space-dark) 0%, var(--space-darker) 30%, var(--space-purple) 70%, var(--space-blue) 100%);
  border-radius: 20px;
  padding: 60px 40px;
  margin: 30px 0;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}
 
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
 
.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 20px 30px, #eee, transparent),
     radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 90px 40px, #fff, transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 160px 30px, #ddd, transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: sparkle 20s linear infinite;
}
 
@keyframes sparkle {
  from { transform: translateX(0); }
  to { transform: translateX(-200px); }
}
 
.nebula {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(119, 193, 217, 0.1) 0%, transparent 70%);
  animation: nebula-glow 8s ease-in-out infinite alternate;
}
 
@keyframes nebula-glow {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}
 
.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
}
 
.hero-logo {
  margin-bottom: 30px;
}
 
.logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 4em;
  font-weight: 700;
  background: linear-gradient(45deg, var(--space-primary), var(--space-orange), var(--space-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  text-shadow: 0 0 30px var(--space-glow);
  animation: glow-pulse 3s ease-in-out infinite alternate;
}
 
@keyframes glow-pulse {
  0% { filter: drop-shadow(0 0 20px var(--space-glow)); }
  100% { filter: drop-shadow(0 0 40px var(--space-glow)); }
}
 
.logo-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 1.5em;
  color: var(--space-accent);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: block;
  margin-top: 10px;
}
 
.hero-description {
  font-size: 1.4em;
  color: var(--space-text);
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 300;
  line-height: 1.6;
}
 
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
 
.stat-item {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
 
.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(119, 193, 217, 0.3);
  background: rgba(255, 255, 255, 0.15);
}
 
.stat-number {
  display: block;
  font-size: 2.5em;
  font-weight: 700;
  color: var(--space-primary);
  line-height: 1;
}
 
.stat-label {
  display: block;
  font-size: 0.9em;
  color: var(--space-text);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}
 
.sunrise-container-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin: 40px 0;
}
 
/* Новые секции */
.sunrise-section-new {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(45, 55, 72, 0.9) 100%);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(119, 193, 217, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
 
.sunrise-section-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(119, 193, 217, 0.1), transparent);
  transition: left 0.5s ease;
}
 
.sunrise-section-new:hover::before {
  left: 100%;
}
 
.sunrise-section-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border-color: var(--space-secondary);
}
 
.section-header {
  margin-bottom: 25px;
  text-align: center;
}
 
.section-header h2 {
  color: var(--space-text-bright);
  font-size: 1.8em;
  margin-bottom: 10px;
  font-weight: 600;
}
 
.section-header p {
  color: var(--space-accent);
  opacity: 0.8;
  font-size: 0.95em;
}
 
.sunrise-features {
  margin: 60px 0;
  padding: 40px 0;
  background: linear-gradient(135deg, rgba(15, 52, 96, 0.1) 0%, rgba(22, 33, 62, 0.1) 100%);
  border-radius: 20px;
  border: 1px solid rgba(119, 193, 217, 0.1);
}
 
.features-header {
  text-align: center;
  margin-bottom: 50px;
}
 
.features-header h2 {
  font-size: 2.5em;
  color: var(--space-text-bright);
  margin-bottom: 15px;
  font-weight: 600;
}
 
.features-header p {
  color: var(--space-accent);
  font-size: 1.1em;
  opacity: 0.8;
}
 
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 20px;
}
 
.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
 
.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgba(119, 193, 217, 0.1), transparent);
  animation: rotate 6s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}
 
.feature-card:hover::before {
  opacity: 1;
}
 
@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
 
.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(119, 193, 217, 0.2);
  border-color: var(--space-secondary);
}
 
.feature-icon {
  font-size: 3em;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
  position: relative;
  z-index: 1;
}
 
.feature-card h3 {
  color: var(--space-text-bright);
  font-size: 1.4em;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
 
.feature-card p {
  color: var(--space-text);
  opacity: 0.9;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
 
.sunrise-blocks-new {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(45, 55, 72, 0.8) 100%);
  border-radius: 20px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(119, 193, 217, 0.2);
  position: relative;
  overflow: hidden;
}
 
.blocks-header {
  text-align: center;
  margin-bottom: 40px;
}
 
.blocks-header h2 {
  font-size: 2.2em;
  color: var(--space-text-bright);
  margin-bottom: 15px;
  font-weight: 600;
}
}


.sunrise-hero h1 {
.blocks-header p {
    font-size: 2.8em;
  color: var(--space-accent);
    margin: 0 0 15px 0;
  font-size: 1.05em;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
  opacity: 0.8;
    color: #ffffff;
}
}


.sunrise-hero p {
.space-particles {
    color: #b3d9ff;
  position: fixed;
    font-size: 1.2em;
  top: 0;
    margin: 0;
  left: 0;
    opacity: 0.9;
  width: 100%;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  height: 100%;
  pointer-events: none;
  z-index: -1;
}
}


.sunrise-container {
.particle {
    display: flex;
  position: absolute;
    flex-wrap: wrap;
  width: 2px;
    gap: 20px;
  height: 2px;
    margin-bottom: 25px;
  background: var(--space-secondary);
    clear: both;  
  border-radius: 50%;
  animation: float 8s infinite linear;
  opacity: 0.6;
}
}


.sunrise-section {
.particle:nth-child(1) {
    flex: 1;
  left: 10%;
    min-width: 300px;
  animation-delay: 0s;
    background: linear-gradient(145deg, #1a202c 0%, #2d3748 100%);
  animation-duration: 8s;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    border: 1px solid #4a5568;
    color: #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;  
}
}


.sunrise-section:hover {
.particle:nth-child(2) {
    transform: translateY(-3px);
  left: 20%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation-delay: 2s;
  animation-duration: 10s;
}
}


.sunrise-blocks {
.particle:nth-child(3) {
    background: linear-gradient(145deg, #1a202c 0%, #2d3748 100%);
  left: 60%;
    border-radius: 12px;
  animation-delay: 4s;
    padding: 25px;
  animation-duration: 6s;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    border: 1px solid #4a5568;
    color: #e2e8f0;
    margin-top: 25px;
    clear: both;  
}
}


.sunrise-section a:not([class*="mw-"]),
.particle:nth-child(4) {
.sunrise-blocks a:not([class*="mw-"]) {
  left: 80%;
    color: #63b3ed;
  animation-delay: 6s;
    text-decoration: none;
  animation-duration: 12s;
    transition: color 0.3s ease;
}
}


.sunrise-section a:not([class*="mw-"]):hover,
.particle:nth-child(5) {
.sunrise-blocks a:not([class*="mw-"]):hover {
  left: 90%;
    color: #90cdf4;
  animation-delay: 8s;
    text-decoration: underline;
  animation-duration: 9s;
}
}


.sunrise-section > h1:not([class*="mw-"]),
@keyframes float {
.sunrise-section > h2:not([class*="mw-"]),
  0% {
.sunrise-section > h3:not([class*="mw-"]),
    transform: translateY(100vh) rotate(0deg);
.sunrise-blocks > h1:not([class*="mw-"]),
    opacity: 0;
.sunrise-blocks > h2:not([class*="mw-"]),
  }
.sunrise-blocks > h3:not([class*="mw-"]) {
  10% {
     color: #f7fafc;
     opacity: 0.6;
     border-bottom: 2px solid #4a5568;
  }
     padding-bottom: 8px;
  90% {
     margin-bottom: 15px;
     opacity: 0.6;
  }
  100% {
     transform: translateY(-100px) rotate(360deg);
     opacity: 0;
  }
}
}


@media (max-width: 768px) {
@media (max-width: 768px) {
    .sunrise-container {
  .sunrise-container-new {
        flex-direction: column;
    grid-template-columns: 1fr;
     }
     gap: 20px;
      
  }
     .sunrise-hero {
 
        margin: 20px 0 20px 0;  
  .features-grid {
        padding: 30px 15px;
     grid-template-columns: 1fr;
    }
     gap: 20px;
   
  }
    .sunrise-hero h1 {
 
        font-size: 2.2em;
  .hero-stats {
    }
    grid-template-columns: 1fr;
      
    gap: 20px;
     .sunrise-section,
  }
     .sunrise-blocks {
 
        padding: 20px;
  .logo-text {
    }
    font-size: 2.5em;
  }
 
  .sunrise-hero-new {
     padding: 40px 20px;
     min-height: 300px;
  }
 
  .hero-description {
     font-size: 1.1em;
  }
 
  .features-header h2 {
    font-size: 2em;
  }
}
}


@media (max-width: 480px) {
@media (max-width: 480px) {
     .sunrise-hero h1 {
  .sunrise-section-new,
        font-size: 1.8em;
  .sunrise-blocks-new {
    }
    padding: 20px;
   
    border-radius: 15px;
    .sunrise-hero {
  }
        padding: 25px 10px;
 
        margin: 15px 0 15px 0;
  .feature-card {
    }
     padding: 30px 20px;
  }
 
  .logo-text {
    font-size: 2em;
  }
 
  .sunrise-hero-new {
    padding: 30px 15px;
  }
}
 
* {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
 
.sunrise-section-new a,
.sunrise-blocks-new a {
  color: var(--space-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 2px 4px;
  border-radius: 4px;
}
}


#firstHeading + .sunrise-hero,
.sunrise-section-new a:hover,
.mw-body-content > .sunrise-hero:first-child {
.sunrise-blocks-new a:hover {
    margin-top: 20px;
  color: var(--space-accent);
  background: rgba(119, 193, 217, 0.1);
  transform: translateX(3px);
}
}


.sunrise-hero::before,
.sunrise-section-new h1,
.sunrise-container::before,
.sunrise-section-new h2,
.sunrise-blocks::before {
.sunrise-section-new h3,
    content: "";
.sunrise-blocks-new h1,
    display: table;
.sunrise-blocks-new h2,
    clear: both;
.sunrise-blocks-new h3 {
  color: var(--space-text-bright);
  border-bottom: 2px solid rgba(119, 193, 217, 0.3);
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
}
}


.sunrise-section *:not([class*="sunrise-"]),
.sunrise-section-new h1::after,
.sunrise-blocks *:not([class*="sunrise-"]) {
.sunrise-section-new h2::after,
    position: static !important;
.sunrise-section-new h3::after,
.sunrise-blocks-new h1::after,
.sunrise-blocks-new h2::after,
.sunrise-blocks-new h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--space-primary), var(--space-secondary));
  border-radius: 2px;
}
}

Версия от 19:59, 1 августа 2025

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/oswald/v40/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUJiZTaR.eot);
  src: url(https://fonts.gstatic.com/s/oswald/v40/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUJiZTaR.eot?#iefix) format('embedded-opentype'),
       url(https://fonts.gstatic.com/s/oswald/v40/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUJiZTaR.woff2) format('woff2'),
       url(https://fonts.gstatic.com/s/oswald/v40/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUJiZTaR.woff) format('woff'),
       url(https://fonts.gstatic.com/s/oswald/v40/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUJiZTaR.ttf) format('truetype');
}

body {
    background: linear-gradient(135deg, #1a1a1f 0%, #252530 100%);
    color: #e8e8e8;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.3px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mw-body {
    background: rgba(35, 35, 42, 0.95);
    border: 1px solid #404050;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(15px);
    padding: 2.5em 3.5em;
    margin: 1.5em;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
}

.mw-body-content {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: #e8e8e8;
    text-align: justify;
    text-justify: inter-word;
}

.mw-body-content p {
    margin: 1.2em 0;
    line-height: 1.8;
    color: #e8e8e8;
}

code {
    background: linear-gradient(135deg, #2d2d35 0%, #35353d 100%);
    border: 1px solid #404045;
    color: #b8e6ff;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 90%;
    font-family: 'JetBrains Mono', 'Consolas', 'Monaco', monospace;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 500;
    letter-spacing: 0.5px;
}

blockquote {
    overflow: hidden;
    margin: 2em 0;
    padding: 1.5em 2em;
    border-left: 5px solid #77c1d9;
    background: linear-gradient(90deg, rgba(119, 193, 217, 0.2) 0%, rgba(119, 193, 217, 0.05) 100%);
    border-radius: 0 10px 10px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-style: italic;
    position: relative;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    line-height: 1.6;
}

blockquote::before {
    content: '"';
    font-size: 4em;
    color: rgba(119, 193, 217, 0.3);
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: 'Playfair Display', serif;
}

img {
    image-rendering: optimizeSpeed;
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

a,
a:visited {
    color: #77c1d9;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 500;
}

a:not(.image):not(.thumbimage):not(.mw-file-description)::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #77c1d9, #9dd7ea);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

a:not(.image):not(.thumbimage):not(.mw-file-description):hover::after {
    width: 100%;
}

.thumb a::after,
.gallery a::after,
a[href*="File:"]::after,
a[href*="Файл:"]::after,
a[title*="File:"]::after,
a[title*="Файл:"]::after {
    display: none !important;
}

a:hover,
a:visited:hover {
    color: #9dd7ea;
    text-shadow: 0 0 12px rgba(119, 193, 217, 0.6);
}

a.image,
.thumbimage,
.mw-file-description {
    text-decoration: none;
    border: none;
    display: inline-block;
    transition: all 0.3s ease;
}

a.image:hover,
.thumbimage:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

a.extiw:visited,
a.external:visited,
.mw-parser-output a.extiw:visited,
.mw-parser-output a.external:visited,
body.skin--responsive #p-cactions li a.external:visited {
    color: #5599cc;
}

.wikitable {
    background: linear-gradient(135deg, #2a2a32 0%, #35353d 100%);
    border: 1px solid #404050;
    color: white;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2em 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.wikitable > tr > th,
.wikitable > tr > td,
.wikitable > * > tr > th,
.wikitable > * > tr > td {
    border: 1px solid #404050;
    padding: 1em 1.2em;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.wikitable > * > tr > th {
    background: linear-gradient(135deg, #1f1f25 0%, #27272e 100%);
    color: #b8e6ff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    position: relative;
    font-family: 'Inter', sans-serif;
}

.wikitable > * > tr > th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #77c1d9, transparent);
}

.wikitable > * > tr:hover > td {
    background: rgba(119, 193, 217, 0.15);
    transform: scale(1.01);
}

.wikitableKZ {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    background: linear-gradient(135deg, #2a2a32 0%, #35353d 100%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    font-family: 'Inter', sans-serif;
}

.navbox {
    border: 1px solid #404050;
    width: 100%;
    clear: both;
    font-size: 90%;
    text-align: center;
    padding: 0;
    margin: 2em auto 0;
    background: linear-gradient(135deg, #2a2a32 0%, #35353d 100%);
    color: white;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    font-family: 'Inter', sans-serif;
}

.infobox {
    border: 1px solid #404050;
    border-spacing: 0;
    background: linear-gradient(135deg, #2a2a32 0%, #35353d 100%);
    color: white;
    margin: 1em 0 1em 2em;
    padding: 0;
    float: right;
    clear: right;
    font-size: 90%;
    line-height: 1.6em;
    width: 26em;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.infobox tr {
    transition: all 0.3s ease;
}

.infobox tr:hover {
    background: rgba(119, 193, 217, 0.1);
    transform: translateX(5px);
}

#simpleSearch {
    background: linear-gradient(135deg, #27272e 0%, #2f2f36 100%);
    border: 2px solid #404050;
    border-radius: 30px;
    transition: all 0.4s ease;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

#simpleSearch::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #77c1d9, #9dd7ea, #77c1d9);
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

#simpleSearch:focus-within::before {
    opacity: 1;
}

#simpleSearch:focus-within {
    border-color: transparent;
    box-shadow: 0 0 0 3px rgba(119, 193, 217, 0.3);
}

#searchInput {
    color: white;
    background: transparent;
    border: none;
    padding: 15px 25px;
    font-size: 15px;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

#searchInput::placeholder {
    color: #999;
    opacity: 0.8;
    font-style: italic;
    font-family: 'Inter', sans-serif;
}

.vector-menu-tabs {
    background: transparent;
}

.vector-menu-tabs li {
    background: linear-gradient(135deg, #212126 0%, #27272e 100%);
    border-radius: 12px 12px 0 0;
    margin-right: 3px;
    transition: all 0.4s ease;
    border: 1px solid #404050;
    border-bottom: none;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.vector-menu-tabs li::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #77c1d9, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vector-menu-tabs li:hover::before {
    opacity: 1;
}

.vector-menu-tabs li:hover {
    background: linear-gradient(135deg, #27272e 0%, #2f2f36 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.vector-menu-tabs .selected {
    background: linear-gradient(135deg, #35353d 0%, #404050 100%);
    border-color: #77c1d9;
    box-shadow: 0 -4px 12px rgba(119, 193, 217, 0.4);
}

.vector-menu-tabs .selected::before {
    opacity: 1;
}

.vector-menu-tabs .selected a,
.vector-menu-tabs .selected a:visited {
    color: #b8e6ff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    font-family: 'Inter', sans-serif;
}

.vector-menu-tabs li a,
.vector-menu-tabs li a:visited {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

#mw-site-navigation .sidebar-chunk,
#mw-related-navigation .sidebar-chunk,
body.skin--responsive .portlet,
body.skin--responsive .pBody,
#mw-panel,
.mw-panel,
#sidebar,
.sidebar,
.vector-menu-portal,
.vector-legacy-sidebar,
#p-navigation,
#p-tb,
#p-lang {
    background: linear-gradient(135deg, #212126 0%, #27272e 100%);
    color: #e8e8e8;
    border: 1px solid #404050;
    border-radius: 12px;
    margin-bottom: 1.5em;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.vector-menu-portal h3,
#mw-panel .portal h3,
.sidebar h3 {
    background: linear-gradient(135deg, #35353d 0%, #404050 100%);
    color: #b8e6ff;
    padding: 0.8em 1.2em;
    margin: 0;
    border-radius: 12px 12px 0 0;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9em;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.vector-menu-portal h3::after,
#mw-panel .portal h3::after,
.sidebar h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #77c1d9, transparent);
}

.vector-menu-portal .vector-menu-content ul li a,
#mw-panel .portal .body ul li a {
    color: #77c1d9;
    padding: 0.8em 1.2em;
    display: block;
    transition: all 0.4s ease;
    border-radius: 6px;
    margin: 3px 6px;
    position: relative;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.vector-menu-portal .vector-menu-content ul li a::before,
#mw-panel .portal .body ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(135deg, #77c1d9, #9dd7ea);
    transition: width 0.3s ease;
    border-radius: 6px 0 0 6px;
}

.vector-menu-portal .vector-menu-content ul li a:hover::before,
#mw-panel .portal .body ul li a:hover::before {
    width: 4px;
}

.vector-menu-portal .vector-menu-content ul li a:hover,
#mw-panel .portal .body ul li a:hover {
    background: rgba(119, 193, 217, 0.15);
    color: #9dd7ea;
    transform: translateX(8px);
    text-shadow: 0 0 8px rgba(119, 193, 217, 0.5);
}

.mw-editform #wpTextbox1,
textarea {
    background: linear-gradient(135deg, #2a2a32 0%, #35353d 100%);
    border: 2px solid #404050;
    color: white;
    border-radius: 10px;
    font-family: 'JetBrains Mono', 'Consolas', 'Monaco', monospace;
    padding: 1.5em;
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.4s ease;
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    resize: vertical;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.mw-editform #wpTextbox1:focus,
textarea:focus {
    border-color: #77c1d9;
    outline: none;
    box-shadow: 0 0 0 4px rgba(119, 193, 217, 0.3);
    transform: scale(1.01);
}

.CodeMirror {
    background: linear-gradient(135deg, #2a2a32 0%, #35353d 100%);
    border: 2px solid #404050;
    border-radius: 10px;
    font-family: 'JetBrains Mono', 'Consolas', 'Monaco', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: white;
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.3);
}

.CodeMirror-lines {
    padding: 1em;
}

.CodeMirror-gutters {
    background: linear-gradient(135deg, #1f1f25 0%, #27272e 100%);
    border-right: 1px solid #404050;
    border-radius: 10px 0 0 10px;
    color: #77c1d9;
    font-family: 'JetBrains Mono', monospace;
    padding-right: 10px;
}

.CodeMirror-linenumber {
    color: #77c1d9;
    padding-right: 8px;
    font-weight: 500;
    text-align: right;
    min-width: 3em;
}

.CodeMirror-cursor {
    border-left: 2px solid #77c1d9;
}

.CodeMirror-selected {
    background: rgba(119, 193, 217, 0.2);
}

.CodeMirror-line {
    color: #e8e8e8;
}

.oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button {
    background: linear-gradient(135deg, #27272e 0%, #35353d 100%);
    border: 2px solid #404050;
    color: white;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    padding: 1em 2em;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button::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 ease;
}

.oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button:hover::before {
    left: 100%;
}

.oo-ui-buttonElement-framed.oo-ui-widget-enabled > .oo-ui-buttonElement-button:hover {
    background: linear-gradient(135deg, #35353d 0%, #404050 100%);
    border-color: #77c1d9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    text-shadow: 0 0 8px rgba(119, 193, 217, 0.5);
}

.tooltip {
    position: relative;
    display: inline;
    cursor: help;
}

.tooltiptext {
    position: absolute;
    display: block;
    z-index: 99999;
    width: 350px;
    left: -150px;
    top: 50px;
    padding: 1.5em;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    white-space: normal;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #77c1d9;
    background: linear-gradient(135deg, #1f1f25 0%, #27272e 100%);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    font-size: 13px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.tooltiptext::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #77c1d9;
}

.tooltiptext::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #27272e;
}

.tooltip:hover > .tooltiptext {
    visibility: visible;
    opacity: 1;
    transform: translateY(-10px);
}

::-webkit-scrollbar {
    width: 16px;
    height: 16px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(135deg, #1f1f25 0%, #27272e 100%);
    border-radius: 10px;
    border: 1px solid #404050;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #404050 0%, #505060 100%);
    border-radius: 10px;
    border: 2px solid #1f1f25;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #505060 0%, #606070 100%);
    box-shadow: 0 0 8px rgba(119, 193, 217, 0.5);
}

::-webkit-scrollbar-corner {
    background: #1f1f25;
}

h1, h2, h3, h4, h5, h6 {
    color: #b8e6ff;
    font-family: 'Playfair Display', 'Oswald', serif;
    font-weight: 600;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
    border-bottom: 3px solid #404050;
    padding-bottom: 0.5em;
    margin-top: 2em;
    position: relative;
    letter-spacing: 0.5px;
}

h1::after, h2::after, h3::after, h4::after, h5::after, h6::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #77c1d9, #9dd7ea);
    border-radius: 3px;
}

h1 {
    background: linear-gradient(90deg, #77c1d9, #9dd7ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.8em;
    font-weight: 700;
}

h2 {
    font-size: 2.2em;
    font-weight: 600;
}

h3 {
    font-size: 1.8em;
    font-weight: 600;
}

h4 {
    font-size: 1.5em;
    font-weight: 500;
}

h5 {
    font-size: 1.3em;
    font-weight: 500;
}

h6 {
    font-size: 1.1em;
    font-weight: 500;
}

pre {
    background: linear-gradient(135deg, #1f1f25 0%, #27272e 100%);
    border: 2px solid #404050;
    border-radius: 12px;
    padding: 1.5em;
    overflow-x: auto;
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.4);
    font-family: 'JetBrains Mono', 'Consolas', 'Monaco', monospace;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.mw-highlight {
    background: linear-gradient(135deg, #1f1f25 0%, #27272e 100%);
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    border: 1px solid #404050;
}

#p-logo a {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    display: block;
}

#p-logo a:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

#p-personal ul li a {
    color: #77c1d9;
    padding: 0.8em 1em;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 0 2px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

#p-personal ul li a:hover {
    background: rgba(119, 193, 217, 0.15);
    color: #9dd7ea;
    text-shadow: 0 0 8px rgba(119, 193, 217, 0.5);
}

.vector-menu-dropdown .vector-menu-content {
    background: linear-gradient(135deg, #27272e 0%, #35353d 100%);
    border: 2px solid #404050;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    padding: 0.5em;
    font-family: 'Inter', sans-serif;
}

#pt-createaccount,
#site-tools,
.flaggedrevs_draft_synced,
.flaggedrevs_stable_synced,
#t-upload {
    display: none;
}

.reference {
    background-color: transparent;
}

.references li:target,
sup.reference:target {
    background: rgba(119, 193, 217, 0.25);
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(119, 193, 217, 0.5);
}

.vector-legacy-sidebar {
    background: rgba(33, 33, 38, 0.85);
    border-radius: 0 12px 12px 0;
    box-shadow: 3px 0 15px rgba(0, 0, 0, 0.4);
}

#footer {
    background: linear-gradient(135deg, #1a1a1f 0%, #252530 100%);
    border-top: 3px solid #404050;
    border-radius: 12px 12px 0 0;
    margin-top: 3em;
    padding: 2em;
    color: #b8b8b8;
    box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.4);
    font-family: 'Inter', sans-serif;
}

.mw-search-result-heading a {
    color: #77c1d9;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.mw-search-result-data {
    color: #b8b8b8;
    font-style: italic;
    font-family: 'Inter', sans-serif;
}

.mw-changeslist-line {
    border-left: 3px solid #404050;
    padding-left: 1em;
    margin-bottom: 0.5em;
    font-family: 'Inter', sans-serif;
}

.mw-changeslist-line:hover {
    border-left-color: #77c1d9;
    background: rgba(119, 193, 217, 0.05);
}

li {
    line-height: 1.7;
    margin-bottom: 0.5em;
    font-family: 'Inter', sans-serif;
}

strong, b {
    font-weight: 600;
    color: #b8e6ff;
}

em, i {
    font-style: italic;
    color: #d0d0d0;
}

.firstHeading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3em;
    background: linear-gradient(90deg, #77c1d9, #9dd7ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5em;
}


:root {
  --space-primary: #ff6b35;
  --space-secondary: #77c1d9;
  --space-accent: #9dd7ea;
  --space-dark: #0a0a0a;
  --space-darker: #1a1a2e;
  --space-purple: #16213e;
  --space-blue: #0f3460;
  --space-orange: #f7931e;
  --space-glow: rgba(255, 107, 53, 0.6);
  --space-text: #e8e8e8;
  --space-text-bright: #ffffff;
}

.sunrise-alert {
  background: linear-gradient(135deg, var(--space-orange) 0%, var(--space-primary) 100%);
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.sunrise-alert::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.alert-content {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.alert-icon {
  font-size: 2em;
  animation: pulse 2s infinite;
}

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

.alert-text {
  color: var(--space-text-bright);
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sunrise-hero-new {
  position: relative;
  background: linear-gradient(135deg, var(--space-dark) 0%, var(--space-darker) 30%, var(--space-purple) 70%, var(--space-blue) 100%);
  border-radius: 20px;
  padding: 60px 40px;
  margin: 30px 0;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, #eee, transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 90px 40px, #fff, transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 160px 30px, #ddd, transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
  from { transform: translateX(0); }
  to { transform: translateX(-200px); }
}

.nebula {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(119, 193, 217, 0.1) 0%, transparent 70%);
  animation: nebula-glow 8s ease-in-out infinite alternate;
}

@keyframes nebula-glow {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-logo {
  margin-bottom: 30px;
}

.logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 4em;
  font-weight: 700;
  background: linear-gradient(45deg, var(--space-primary), var(--space-orange), var(--space-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  text-shadow: 0 0 30px var(--space-glow);
  animation: glow-pulse 3s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  0% { filter: drop-shadow(0 0 20px var(--space-glow)); }
  100% { filter: drop-shadow(0 0 40px var(--space-glow)); }
}

.logo-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 1.5em;
  color: var(--space-accent);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: block;
  margin-top: 10px;
}

.hero-description {
  font-size: 1.4em;
  color: var(--space-text);
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 300;
  line-height: 1.6;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(119, 193, 217, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  display: block;
  font-size: 2.5em;
  font-weight: 700;
  color: var(--space-primary);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.9em;
  color: var(--space-text);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.sunrise-container-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

/* Новые секции */
.sunrise-section-new {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(45, 55, 72, 0.9) 100%);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(119, 193, 217, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.sunrise-section-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(119, 193, 217, 0.1), transparent);
  transition: left 0.5s ease;
}

.sunrise-section-new:hover::before {
  left: 100%;
}

.sunrise-section-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border-color: var(--space-secondary);
}

.section-header {
  margin-bottom: 25px;
  text-align: center;
}

.section-header h2 {
  color: var(--space-text-bright);
  font-size: 1.8em;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-header p {
  color: var(--space-accent);
  opacity: 0.8;
  font-size: 0.95em;
}

.sunrise-features {
  margin: 60px 0;
  padding: 40px 0;
  background: linear-gradient(135deg, rgba(15, 52, 96, 0.1) 0%, rgba(22, 33, 62, 0.1) 100%);
  border-radius: 20px;
  border: 1px solid rgba(119, 193, 217, 0.1);
}

.features-header {
  text-align: center;
  margin-bottom: 50px;
}

.features-header h2 {
  font-size: 2.5em;
  color: var(--space-text-bright);
  margin-bottom: 15px;
  font-weight: 600;
}

.features-header p {
  color: var(--space-accent);
  font-size: 1.1em;
  opacity: 0.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgba(119, 193, 217, 0.1), transparent);
  animation: rotate 6s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(119, 193, 217, 0.2);
  border-color: var(--space-secondary);
}

.feature-icon {
  font-size: 3em;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  color: var(--space-text-bright);
  font-size: 1.4em;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--space-text);
  opacity: 0.9;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.sunrise-blocks-new {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(45, 55, 72, 0.8) 100%);
  border-radius: 20px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(119, 193, 217, 0.2);
  position: relative;
  overflow: hidden;
}

.blocks-header {
  text-align: center;
  margin-bottom: 40px;
}

.blocks-header h2 {
  font-size: 2.2em;
  color: var(--space-text-bright);
  margin-bottom: 15px;
  font-weight: 600;
}

.blocks-header p {
  color: var(--space-accent);
  font-size: 1.05em;
  opacity: 0.8;
}

.space-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--space-secondary);
  border-radius: 50%;
  animation: float 8s infinite linear;
  opacity: 0.6;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 8s;
}

.particle:nth-child(2) {
  left: 20%;
  animation-delay: 2s;
  animation-duration: 10s;
}

.particle:nth-child(3) {
  left: 60%;
  animation-delay: 4s;
  animation-duration: 6s;
}

.particle:nth-child(4) {
  left: 80%;
  animation-delay: 6s;
  animation-duration: 12s;
}

.particle:nth-child(5) {
  left: 90%;
  animation-delay: 8s;
  animation-duration: 9s;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .sunrise-container-new {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .logo-text {
    font-size: 2.5em;
  }
  
  .sunrise-hero-new {
    padding: 40px 20px;
    min-height: 300px;
  }
  
  .hero-description {
    font-size: 1.1em;
  }
  
  .features-header h2 {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .sunrise-section-new,
  .sunrise-blocks-new {
    padding: 20px;
    border-radius: 15px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .logo-text {
    font-size: 2em;
  }
  
  .sunrise-hero-new {
    padding: 30px 15px;
  }
}

* {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.sunrise-section-new a,
.sunrise-blocks-new a {
  color: var(--space-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 2px 4px;
  border-radius: 4px;
}

.sunrise-section-new a:hover,
.sunrise-blocks-new a:hover {
  color: var(--space-accent);
  background: rgba(119, 193, 217, 0.1);
  transform: translateX(3px);
}

.sunrise-section-new h1,
.sunrise-section-new h2,
.sunrise-section-new h3,
.sunrise-blocks-new h1,
.sunrise-blocks-new h2,
.sunrise-blocks-new h3 {
  color: var(--space-text-bright);
  border-bottom: 2px solid rgba(119, 193, 217, 0.3);
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
}

.sunrise-section-new h1::after,
.sunrise-section-new h2::after,
.sunrise-section-new h3::after,
.sunrise-blocks-new h1::after,
.sunrise-blocks-new h2::after,
.sunrise-blocks-new h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--space-primary), var(--space-secondary));
  border-radius: 2px;
}