/* ==========================================
   QUANTUMGLASS FRAMEWORK - CSS
   ========================================== */

:root {
  --gold-primary: #D4AF37;
  --gold-secondary: #FFD700;
  --gold-accent: #F0E68C;
  --dark-bg: #0a0a0a;
  --glass-bg: rgba(255, 215, 0, 0.1);
  --glass-border: rgba(212, 175, 55, 0.3);
  --text-gold: #FFD700;
  --text-light: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--dark-bg);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Quantum Glass Effect */
.quantum-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  box-shadow: 
    0 8px 32px rgba(212, 175, 55, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Navigation - Hidden Slide Panel */
.nav-slide-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  height: 100vh;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(255, 215, 0, 0.9));
  backdrop-filter: blur(15px);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem;
  box-shadow: -5px 0 30px rgba(0,0,0,0.3);
}

.nav-slide-panel.active {
  right: 0;
}

.nav-trigger {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: var(--gold-primary);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-trigger:hover {
  transform: scale(1.1);
  background: var(--gold-secondary);
}

/* Home Banner with Dim Effect */
.home-banner {
  position: relative;
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
              url('https://i.postimg.cc/W43DhYD6/photo-2025-11-29-16-45-38.jpg') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-content h1 {
  font-size: 3.5rem;
  color: var(--text-gold);
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.banner-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 600px;
}

/* Scrollable Button Frame */
.button-frame {
  max-height: 400px;
  overflow-y: auto;
  padding: 1.5rem;
  margin: 2rem 0;
}

.button-frame::-webkit-scrollbar {
  width: 6px;
}

.button-frame::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: 3px;
}

/* Linux-style Buttons */
.linux-btn {
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  border: 2px solid var(--gold-primary);
  color: var(--text-gold);
  padding: 15px 30px;
  margin: 10px 0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-decoration: none;
  display: block;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.linux-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.2), transparent);
  transition: left 0.5s;
}

.linux-btn:hover::before {
  left: 100%;
}

.linux-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
  background: linear-gradient(145deg, #2a2a2a, #3a3a3a);
}

/* Content Sections */
.content-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-link {
  color: var(--gold-secondary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.brand-link:hover {
  color: var(--gold-accent);
  text-decoration: underline;
}

/* Animations */
@keyframes quantumGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.5); }
}

.quantum-glow {
  animation: quantumGlow 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-slide-panel {
    width: 100%;
    right: -100%;
  }
  
  .banner-content h1 {
    font-size: 2.5rem;
  }
  
  .content-section {
    padding: 2rem 1rem;
  }
}

/* Performance Optimizations */
.will-change {
  will-change: transform, opacity;
}

/* Print Styles */
@media print {
  .nav-trigger, .nav-slide-panel {
    display: none;
  }
}