body {
  background-color: #f4f4f6; 
  margin: 0;
  padding: 0;
  font-family: "Georgia";
  display: flex;
  flex-direction: column;
  min-height: 100dvh; 
}

.top {
  background-color: #111111;
  padding: 25px 40px;
  display: flex;         
  align-items: center;   
  justify-content: center;
}

.nav-group {
  display: flex;
  gap: 30px; 
}

.nav-link {
  color: #aaaaaa;            
  text-decoration: none; 
  font-size: 14px;           
  letter-spacing: 1px;       
  font-weight: bold;
  transition: color 0.2s ease;
  white-space: nowrap; 
}

.nav-link:hover {
  color: #ffffff;            
}

.stripe-line {
  flex-grow: 1;          
  max-width: 80px; 
  height: 2px;               
  background-color: #444444; 
  margin: 0 25px; 
}

.top-logo-link {
  text-decoration: none;
}

.topTextContainer {
  text-align: center;
}

.welcomeText {
  font-weight: 700;
  margin: 0;                 
  color: #ffffff;
}

h1.welcomeText {
  font-size: 34px;
  letter-spacing: 3px;
  margin-bottom: 4px;        
}

h2.welcomeText {
  font-size: 16px;
  color: #888888;            
  font-weight: 400;          
}

.main {
  background-color: #16171a; 
  flex-grow: 1; 
  padding: 60px 40px; 
  box-sizing: border-box;
  display: flex;
  justify-content: center; 
  align-items: center; 
  position: relative;  
  overflow: hidden;    
}

.manifesto-container {
  max-width: 600px; 
  text-align: center;
  position: relative;
  z-index: 2; 
}

.manifesto-title {
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.manifesto-text {
  color: #b3b4b6; 
  font-size: 18px;
  line-height: 1.7; 
  margin: 0;
}

.side-img {
  position: absolute;
  border: 2px solid #222222;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5); 
  transition: transform 0.3s ease; 
}

.side-img:hover {
  transform: scale(1.05) rotate(0deg) !important; 
  z-index: 5;
}

.img-left-1 { left: 5%; top: 15%; width: 180px; transform: rotate(-12deg); }
.img-left-2 { left: 8%; bottom: 15%; width: 160px; transform: rotate(8deg); }
.img-right-1 { right: 6%; top: 20%; width: 200px; transform: rotate(15deg); }
.img-right-2 { right: 4%; bottom: 10%; width: 170px; transform: rotate(-6deg); }


@media (min-width: 1024px) {
  .manifesto-container {
    max-width: 850px;
  }

  .manifesto-title {
    font-size: 52px;
    margin-bottom: 35px;
  }

  .manifesto-text {
    font-size: 36px;
    line-height: 1.6;
  }
}

.wiki-container {
  max-width: 750px;
  margin: 0 auto;
  text-align: left;
}

.wiki-main-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 35px;
  border-bottom: 1px solid #333333;
  padding-bottom: 15px;
}

.wiki-section {
  margin-bottom: 30px;
}

.wiki-subtitle {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 12px;
}

.wiki-paragraph {
  color: #b3b4b6;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 1024px) {
  .wiki-main-title { font-size: 40px; }
  .wiki-subtitle { font-size: 24px; }
  .wiki-paragraph { font-size: 18px; }
}
