/* ==========================================
   AERONTOGEL FRAMEWORK - GOLD THEME
   Optimized for Performance & SEO
   ========================================== */

:root {
    --gold-primary: #D4AF37;
    --gold-secondary: #FFD700;
    --gold-dark: #B8860B;
    --gold-light: #FFF8DC;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-light: #f8f9fa;
    --text-muted: #6c757d;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 20%);
}

/* Linux-style Navigation */
.linux-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-left: 1px solid var(--gold-primary);
    transition: var(--transition);
    z-index: 1000;
    padding: 2rem;
    overflow-y: auto;
}

.linux-nav.active {
    right: 0;
}

.nav-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--gold-primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.nav-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--bg-darker);
    position: relative;
    transition: var(--transition);
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--bg-darker);
    transition: var(--transition);
}

.nav-toggle span::before {
    transform: translateY(-6px);
}

.nav-toggle span::after {
    transform: translateY(6px);
}

.nav-toggle.active span {
    background: transparent;
}

.nav-toggle.active span::before {
    transform: rotate(45deg);
}

.nav-toggle.active span::after {
    transform: rotate(-45deg);
}

.nav-menu {
    list-style: none;
    margin-top: 3rem;
}

.nav-menu li {
    margin-bottom: 1rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.75rem 1rem;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid transparent;
    font-weight: 500;
}

.nav-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    transform: translateX(-5px);
}

/* Hero Section with Banner */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(10, 10, 10, 0.7),
        rgba(10, 10, 10, 0.9)
    ), url('https://i.postimg.cc/D098tsq5/photo-2025-11-29-16-45-52.jpg') center/cover;
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-logo {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

/* Interactive Button Frame */
.button-frame {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--gold-primary);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 500px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.button-frame::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(212, 175, 55, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

.frame-content {
    position: relative;
    z-index: 2;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.frame-content::-webkit-scrollbar {
    width: 6px;
}

.frame-content::-webkit-scrollbar-track {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 3px;
}

.frame-content::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 3px;
}

/* Gold Buttons */
.gold-btn {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border: none;
    padding: 1rem 2rem;
    color: var(--bg-darker);
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
    margin: 0.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
    min-width: 180px;
}

.gold-btn::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: var(--transition);
}

.gold-btn:hover::before {
    left: 100%;
}

.gold-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Content Sections */
.content-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Linux-style Terminal Effect */
.terminal {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--gold-primary);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    font-family: 'Courier New', monospace;
    position: relative;
}

.terminal::before {
    content: 'aeron@fortunewheel:~$';
    position: absolute;
    top: -10px;
    left: 15px;
    background: var(--bg-darker);
    padding: 0 10px;
    color: var(--gold-primary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .linux-nav {
        width: 100%;
        right: -100%;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .button-frame {
        margin: 1rem;
        padding: 1rem;
    }
    
    .gold-btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .linux-nav, .nav-toggle, .button-frame {
        display: none;
    }
}

/* High DPI Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-banner {
        background-image: url('https://i.postimg.cc/D098tsq5/photo-2025-11-29-16-45-52.jpg');
    }
}