/*
Theme Name: Ozgeris 10
Theme URI: https://hobbi.st/ozgeris-10
Author: Ozgeris Team
Description: A high-performance WordPress theme based on the Ozgeris Coach Dashboard design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ozgeris10
*/

:root {
    --bg-color: #05070f;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --accent-cyan: #00f0ff;
    --accent-purple: #8a2be2;
    --warning-color: #ff3366;
    --success-color: #00e676;
    --text-main: #ffffff;
    --text-muted: #8b9bb4;
    --tg-color: #2AABEE;
}

/* Global Resets */
header#masthead, footer#colophon, .site-header, .site-footer, .entry-header { display: none !important; }
.site-content, .site-inner, .entry-content, .ast-container, .container, #page, .site, #wrapper, .elementor, .elementor-page { padding: 0 !important; margin: 0 !important; max-width: 100% !important; width: 100% !important; border: none !important; overflow-x: clip !important; overflow-y: visible !important; box-sizing: border-box !important; }

html, body {
    overflow-x: clip !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    background-color: var(--bg-color) !important;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
}

.ozgeris-theme-wrapper {
    background-color: var(--bg-color);
    min-height: 100vh;
    position: relative;
}

/* Background Glows */
.ozg-bg-glow-1 { position: fixed; top: -10%; left: -10%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, rgba(0,0,0,0) 70%); filter: blur(60px); z-index: 0; pointer-events: none; }
.ozg-bg-glow-2 { position: fixed; bottom: -10%; right: -10%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, rgba(0,0,0,0) 70%); filter: blur(60px); z-index: 0; pointer-events: none; }

/* Component Styles */
.ozg-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 24px;
}

.ozg-btn {
    background: linear-gradient(135deg, #00f0ff, #0080ff);
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,240,255,0.3);
    text-decoration: none;
}

.ozg-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,240,255,0.4);
}

.ozg-btn-sec {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 24px;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    text-decoration: none;
}

.ozg-btn-sec:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent-cyan);
}

/* Header Elements */
.ozg-rank-badge { background: #fbbf24; color: #000 !important; padding: 6px 16px; border-radius: 20px; font-weight: 800; font-size: 0.9rem; text-decoration: none !important; box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3); height: fit-content; transition: 0.2s; }
.ozg-action-btn { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); padding: 8px 16px; border-radius: 12px; color: #fff !important; font-size: 0.85rem; font-weight: 500; text-decoration: none !important; width: 140px; transition: 0.2s; }
.ozg-action-btn:hover { background: rgba(255,255,255,0.1); border-color: var(--accent-cyan); color: var(--accent-cyan) !important; }

/* Sidebar Navigation */
.ozg-sidebar { display: flex; flex-direction: column; gap: 32px; position: sticky; top: 100px; height: max-content; z-index: 10; }
.footer-button { display: flex; align-items: center; gap: 12px; padding: 14px 20px; color: var(--text-muted); text-decoration: none; border-radius: 14px; font-weight: 500; transition: all 0.3s; border: 1px solid transparent; background: transparent; cursor: pointer; text-align: left; width: 100%; font-size: 1rem; }
.footer-button:hover { color: #fff; background: rgba(255,255,255,0.02); border-color: rgba(255,255,255,0.05); }
.footer-button.active { color: #fff; background: rgba(0, 240, 255, 0.05); border-color: rgba(0, 240, 255, 0.2); box-shadow: 0 0 20px rgba(0, 240, 255, 0.1); }
.footer-button i { width: 18px; }

@media (max-width: 900px) {
    .ozg-sidebar { display: none; }
}

/* Layout */
.ozg-layout {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1440px;
    margin: 0 auto;
    padding: 90px 20px 120px 20px;
    position: relative;
    z-index: 1;
}

@media (min-width: 901px) {
    .ozg-layout {
        grid-template-columns: 280px 1fr;
        gap: 30px;
    }
}

/* Trophy-style Modal System */
.ozg-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #05070f;
    z-index: 30000;
    display: none;
    padding: 0;
}

.ozg-modal-overlay.show {
    display: flex;
}

.ozg-modal-iframe-container {
    max-width: 100%;
    width: 100%;
    height: 100%;
    border-radius: 0;
    padding: 0;
    background: #05070f;
    display: flex;
    flex-direction: column;
    position: relative;
}

.ozg-modal-close-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 30010;
    background: rgba(255,255,255,0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
}

.ozg-modal-close-btn:hover {
    background: rgba(255,255,255,0.2);
}

.ozg-modal-iframe {
    flex: 1;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.ozg-main {
    min-width: 0;
    width: 100%;
}
