@font-face {
  font-family: 'Terminus';
  src: url('./fonts/Terminus\ \(TTF\)\ 500.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Terminus';
  src: url('./fonts/Terminus\ \(TTF\)\ Bold\ 700.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Terminus';
  src: url('./fonts/Terminus\ \(TTF\)\ Italic\ 500.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Terminus';
  src: url('./fonts/Terminus\ \(TTF\)\ Bold\ Italic\ 700.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
}

body {
  margin: 0;
  padding: 0;
  background: #111;
  color: #ddd;
  font-family: 'Terminus', monospace;
  height: 100vh;
  overflow: hidden;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.5s ease;
}

.loading-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.loading-title {
  font-size: 3rem;
  color: #00ff00;
  margin: 0;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
  animation: pulse 2s infinite;
}

.loading-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin: 0;
  opacity: 0.8;
}

.loading-play-btn {
  background: transparent;
  border: 2px solid #00ff00;
  color: #00ff00;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  font-family: 'Terminus', monospace;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
}

.loading-play-btn:hover {
  background: #00ff00;
  color: #000;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
  transform: scale(1.05);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.main-content {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.matrix-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background: #000;
}

.layout-container {
  display: grid;
  grid-template-columns: 1fr 400px 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  height: calc(100vh - 3rem);
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  transition: opacity 0.3s ease;
}

.side-panel {
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid #333;
  border-radius: 8px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.panel-title {
  color: #00ff00;
  font-size: 1.3rem;
  margin: 0 0 1rem 0;
  text-align: center;
  border-bottom: 1px solid #333;
  padding-bottom: 0.5rem;
}

.fact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fact-list li {
  margin: 0.7rem 0;
  color: #ddd;
  font-size: 0.9rem;
  padding: 0.5rem;
  background: rgba(30, 30, 30, 0.5);
  border-radius: 4px;
  border-left: 3px solid #00ff00;
}

.about-content p {
  color: #aaa;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
}

.about-content a {
  color: #00ff00;
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-content a:hover {
  color: #44ff44;
}

.center-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(10, 10, 10, 0.95);
  border: 2px solid #444;
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid #00ff00;
  transition: all 0.3s ease;
}

.avatar:hover {
  transform: scale(1.05);
  border-color: #44ff44;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.name {
  color: #00ff00;
  font-size: 2.5rem;
  margin: 0 0 0.5rem 0;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.location {
  margin: 1rem 0;
}

.country {
  color: #aaa;
  font-size: 1.1rem;
}

.discord-info {
  margin: 1rem 0 2rem 0;
}

.discord-info p {
  color: #888;
  margin: 0;
  font-size: 0.95rem;
}

.privacy-section {
  display: flex;
  justify-content: center;
}

.privacy-btn {
  background: linear-gradient(135deg, #001100, #002200, #001100);
  border: 2px solid #00ff00;
  color: #00ff00;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-family: 'Terminus', monospace;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 255, 0, 0.15);
  letter-spacing: 1.2px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  min-width: 220px;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

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

.privacy-btn:hover {
  background: linear-gradient(135deg, #002200, #004400, #002200);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 255, 0, 0.2);
  transform: translateY(-2px) scale(1.02);
  border-color: #44ff44;
}

.privacy-btn:hover::before {
  left: 100%;
}

.privacy-section-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  padding: 2rem;
  box-sizing: border-box;
}

.back-button-container {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 20;
}

.back-btn {
  background: transparent;
  border: 2px solid #00ff00;
  color: #00ff00;
  padding: 0.7rem 1.5rem;
  font-family: 'Terminus', monospace;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.back-btn:hover {
  background: #00ff00;
  color: #000;
  transform: translateX(-3px);
}

.privacy-container {
  max-width: 1200px;
  margin: 4rem auto 0;
  padding: 0 2rem;
}

.header-section {
  text-align: center;
  margin-bottom: 3rem;
}

.main-title {
  font-size: 3rem;
  color: #00ff00;
  margin: 0 0 1rem 0;
  text-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
  letter-spacing: 2px;
}

.motto {
  font-size: 1.2rem;
  color: #666;
  font-style: italic;
  margin: 0;
}

.privacy-grid {
  display: grid;
  gap: 2rem;
  justify-content: center;
}

.privacy-card {
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  max-width: 800px;
}

.card-title {
  color: #00ff00;
  font-size: 1.8rem;
  margin: 0 0 1.5rem 0;
  text-align: center;
  border-bottom: 2px solid #333;
  padding-bottom: 1rem;
}

.privacy-content {
  color: #ddd;
  line-height: 1.7;
}

.intro-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.action-section h3 {
  color: #00ff00;
  font-size: 1.3rem;
  margin: 0 0 1rem 0;
}

.action-section p {
  margin-bottom: 1.5rem;
}

.guide-link {
  display: block;
  background: rgba(20, 20, 20, 0.8);
  border: 2px solid #00ff00;
  border-radius: 8px;
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.guide-link:hover {
  background: rgba(0, 255, 0, 0.1);
  border-color: #44ff44;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 0, 0.2);
}

.guide-content .guide-text strong {
  color: #00ff00;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.guide-content .guide-text span {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 1200px) {
  .layout-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }
  
  .center-panel {
    order: 1;
  }
  
  .left-panel {
    order: 2;
  }
  
  .right-panel {
    order: 3;
  }
}

@media (max-width: 768px) {
  body {
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
  }
  
  .main-content {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }
  
  .layout-container {
    height: auto;
    min-height: calc(100vh - 2rem);
    padding: 0.5rem;
    gap: 0.8rem;
  }
  
  .name {
    font-size: 2rem;
  }
  
  .avatar {
    width: 120px;
    height: 120px;
  }
  
  .privacy-section-content {
    padding: 1rem;
  }
  
  .privacy-container {
    margin-top: 3rem;
    padding: 0 1rem;
  }
  
  .main-title {
    font-size: 2rem;
  }
  
  .back-button-container {
    top: 1rem;
    left: 1rem;
  }
}
