/*
Theme Name: Nextus Hub
Theme URI: https://work.nextus.online/
Author: Nextus Team
Description: Premium video theme with Adstera Smart Link
Version: 7.0.0
License: GPL v2
Text Domain: nextus-hub
*/

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e74c3c;
    --primary-dark: #c0392b;
    --accent: #f39c12;
    --dark: #1a1a2e;
    --darker: #16213e;
    --light: #f5f5f5;
    --white: #ffffff;
    --gray: #7f8c8d;
    --shadow: 0 4px 20px rgba(0,0,0,0.3);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.4);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-full: 100px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    color: var(--light);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.site-header {
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 12px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.site-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.site-logo span {
    color: var(--white);
}

.main-content {
    padding-top: 70px;
    min-height: 100vh;
}

/* Footer */
.site-footer {
    background: var(--darker);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom {
    text-align: center;
    color: var(--gray);
    font-size: 0.85rem;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 3px;
}

/* Force desktop */
@media (max-width: 768px) {
    html, body, .container {
        min-width: 1200px;
        overflow-x: auto;
    }
}
