/* ==========================================
   AERONTOGEL - PELOPSATELIT PLATFORM GAMING
   GOLD THEME | LINUX-INSPIRED | PHP 8.3
   ========================================== */

:root {
    --gold-primary: #D4AF37;
    --gold-secondary: #FFD700;
    --gold-dark: #B8860B;
    --linux-dark: #0C0C0C;
    --linux-gray: #1A1A1A;
    --linux-light: #2D2D2D;
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
    --accent-blue: #357EC7;
    --accent-green: #00FF00;
    --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.7);
    --shadow-light: 0 4px 15px rgba(212, 175, 55, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', 'Ubuntu', 'Roboto', sans-serif;
    background: linear-gradient(135deg, var(--linux-dark) 0%, var(--linux-gray) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Linux Terminal Effect */
.terminal-effect {
    background: linear-gradient(45deg, 
        rgba(12, 12, 12, 0.97) 0%, 
        rgba(26, 26, 26, 0.95) 50%, 
        rgba(12, 12, 12, 0.97) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
}

.terminal-effect::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(212, 175, 55, 0.1) 50%, 
        transparent 70%);
    animation: terminalGlow 20s linear infinite;
    z-index: 1;
}

@keyframes terminalGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 1000;
    padding: 1rem 2rem;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.site-title {
    font-size: 1.8rem;
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Hidden Menu Button */
.menu-toggle {
    position: fixed;
    top: 20px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: var(--linux-gray);
    border: 2px solid var(--gold-primary);
    border-radius: 50% 0 0 50%;
    cursor: pointer;
    z-index: 1100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle:hover {
    right: 0;
    background: var(--linux-light);
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--gold-primary);
    margin: 4px 0;
    transition: 0.3s;
}

/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: rgba(12, 12, 12, 0.98);
    border-left: 2px solid var(--gold-primary);
    padding: 100px 20px 20px;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1001;
    overflow-y: auto;
}

.nav-menu.active {
    right: 0;
}

.nav-menu ul {
    list-style: none;
}

.nav-menu li {
    margin: 15px 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.nav-menu.active li {
    opacity: 1;
    transform: translateX(0);
}

.nav-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-weight: 500;
}

.nav-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    border-left: 3px solid var(--gold-primary);
    transform: translateX(5px);
}

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 120px auto 40px;
    padding: 0 2rem;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 70vh;
    min-height: 500px;
    margin-bottom: 3rem;
    border-radius: 15px;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: brightness(0.7) sepia(0.3) hue-rotate(5deg);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(12, 12, 12, 0.9) 0%, 
        rgba(26, 26, 26, 0.7) 50%, 
        rgba(12, 12, 12, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Button Slider Container */
.button-slider-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 300px;
    margin: 2rem auto;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
}

.button-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 90%;
    overflow: hidden;
    background: rgba(12, 12, 12, 0.8);
    border-radius: 10px;
    padding: 20px;
}

.button-slider {
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.5s ease;
}

.slider-button {
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--linux-gray), var(--linux-light));
    border: 2px solid var(--gold-primary);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 250px;
}

.slider-button:hover {
    background: linear-gradient(135deg, var(--linux-light), var(--gold-dark));
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.slider-button i {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.slider-controls {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.control-btn {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold-primary);
    border-radius: 50%;
    color: var(--gold-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: var(--gold-primary);
    color: var(--linux-dark);
}

/* Content Sections */
.content-section {
    margin: 3rem 0;
    padding: 2.5rem;
    border-radius: 15px;
}

.content-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--gold-primary);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 0.5rem;
}

.content-section p {
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Footer */
.site-footer {
    background: rgba(12, 12, 12, 0.95);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .site-title {
        font-size: 1.4rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .button-slider-container {
        height: 250px;
    }
    
    .nav-menu {
        width: 250px;
    }
    
    .main-content {
        padding: 0 1rem;
        margin-top: 100px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .button-slider-container {
        height: 220px;
    }
    
    .slider-button {
        padding: 15px 20px;
        font-size: 1rem;
    }
}

/* Linux Terminal Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--linux-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--gold-dark), var(--gold-primary));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-secondary));
}

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
}

/* Print Styles */
@media print {
    .nav-menu, .menu-toggle, .button-slider-container {
        display: none;
    }
}