/* AERONTOGEL - Modern Gaming Platform CSS */
:root {
    --gold-primary: #D4AF37;
    --gold-secondary: #F5D76E;
    --gold-dark: #B7950B;
    --linux-bg: #0c0c0c;
    --terminal-green: #00FF00;
    --terminal-cyan: #00FFFF;
    --dark-bg: #1a1a1a;
    --darker-bg: #0d0d0d;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --accent-blue: #007BFF;
    --success-green: #28a745;
    --warning-orange: #ffc107;
    --danger-red: #dc3545;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Ubuntu', sans-serif;
    background: var(--linux-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 20%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hidden Navigation */
.hidden-nav-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    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;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.hidden-nav-toggle:hover {
    transform: scale(1.1);
    background: var(--gold-secondary);
}

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--dark-bg);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--dark-bg);
    left: 0;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.hidden-nav {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100vh;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 20px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 2px solid var(--gold-primary);
    overflow-y: auto;
}

.hidden-nav.active {
    right: 0;
}

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gold-primary);
}

.nav-header h3 {
    color: var(--gold-primary);
    font-family: 'Roboto Mono', monospace;
}

.close-nav {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-nav:hover {
    color: var(--gold-primary);
}

.hidden-nav ul {
    list-style: none;
}

.hidden-nav li {
    margin-bottom: 15px;
}

.hidden-nav a {
    color: var(--text-primary);
    text-decoration: none;
    display: block;
    padding: 12px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-family: 'Roboto Mono', monospace;
}

.hidden-nav a:hover {
    background: rgba(212, 175, 55, 0.1);
    border-left-color: var(--gold-primary);
    transform: translateX(5px);
}

/* Main Header */
.main-header {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.logo-container h1 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    letter-spacing: 1px;
}

.subtitle {
    font-family: 'Roboto Mono', monospace;
    color: var(--terminal-cyan);
    font-size: 0.9rem;
    margin-top: 5px;
}

.main-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)),
                url('https://i.gyazo.com/6fc65038f5f7b4365c675ef211dac123.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.9) 70%);
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    max-width: 800px;
}

.banner-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--gold-primary), var(--terminal-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-family: 'Roboto Mono', monospace;
}

/* Content */
.content {
    padding: 60px 0;
}

.intro h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--gold-primary);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--gold-secondary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Buttons Panel */
.buttons-panel {
    margin: 60px 0;
    perspective: 1000px;
}

.panel-frame {
    background: rgba(13, 13, 13, 0.9);
    border: 2px solid var(--gold-primary);
    border-radius: 15px;
    padding: 30px;
    max-height: 500px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-primary) transparent;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotateX(5deg); }
    50% { transform: translateY(-20px) rotateX(5deg); }
}

.panel-frame::-webkit-scrollbar {
    width: 8px;
}

.panel-frame::-webkit-scrollbar-track {
    background: transparent;
}

.panel-frame::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 4px;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gold-primary);
}

.panel-header h3 {
    color: var(--gold-primary);
    font-family: 'Roboto Mono', monospace;
    font-size: 1.5rem;
}

.scroll-indicator {
    color: var(--terminal-cyan);
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.action-btn::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;
}

.action-btn:hover::before {
    left: 100%;
}

.action-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-icon {
    font-size: 1.5rem;
}

.primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--dark-bg);
}

.success {
    background: linear-gradient(135deg, var(--success-green), #1e7e34);
    color: white;
}

.warning {
    background: linear-gradient(135deg, var(--warning-orange), #e0a800);
    color: var(--dark-bg);
}

.info {
    background: linear-gradient(135deg, var(--accent-blue), #0056b3);
    color: white;
}

.secondary {
    background: linear-gradient(135deg, #6c757d, #545b62);
    color: white;
}

.livechat {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: white;
}

/* Content Sections */
.content-section {
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.content-section h2 {
    color: var(--gold-primary);
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.content-section h3 {
    color: var(--gold-secondary);
    margin: 25px 0 15px;
    font-size: 1.8rem;
}

.content-section h4 {
    color: var(--terminal-cyan);
    margin: 20px 0 10px;
    font-size: 1.4rem;
}

.content-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.backlink {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px dotted var(--gold-primary);
    transition: all 0.3s ease;
}

.backlink:hover {
    color: var(--gold-secondary);
    border-bottom-style: solid;
}

.tech-stack {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid var(--terminal-green);
}

.tech-stack ul {
    list-style: none;
    padding-left: 20px;
}

.tech-stack li {
    margin: 10px 0;
    position: relative;
    padding-left: 25px;
}

.tech-stack li::before {
    content: '▶';
    color: var(--terminal-green);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.quote {
    border-left: 4px solid var(--gold-primary);
    padding-left: 30px;
    margin: 40px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Mission Grid */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.mission-item {
    background: rgba(212, 175, 55, 0.1);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Feature List */
.feature-list {
    list-style: none;
    padding-left: 20px;
    margin: 25px 0;
}

.feature-list li {
    margin: 15px 0;
    padding-left: 30px;
    position: relative;
}

.feature-list li::before {
    content: '★';
    color: var(--gold-primary);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Tech Evolution */
.tech-evolution {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.tech-phase {
    background: rgba(0, 123, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

/* Roadmap */
.roadmap {
    list-style: none;
    padding-left: 20px;
    margin: 25px 0;
}

.roadmap li {
    margin: 15px 0;
    padding-left: 30px;
    position: relative;
}

.roadmap li::before {
    content: '→';
    color: var(--terminal-green);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Footer */
.main-footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 60px 0 30px;
    margin-top: 60px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h4 {
    color: var(--gold-primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold-primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-header {
        flex-direction: column;
        gap: 30px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .banner-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .buttons-container {
        gap: 15px;
    }
    
    .action-btn {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .content-section {
        padding: 25px;
    }
    
    .panel-frame {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .logo-container h1 {
        font-size: 2rem;
    }
    
    .banner-content h2 {
        font-size: 2rem;
    }
    
    .intro h2 {
        font-size: 1.8rem;
    }
    
    .hidden-nav {
        width: 100%;
        right: -100%;
    }
}

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}