/* ODIS NETWORK - Premium Dark Glassmorphism Theme */

:root {
    --bg-color: #0b0d14;
    --card-bg: rgba(22, 25, 37, 0.6);
    --card-border: rgba(255, 255, 255, 0.05);
    
    /* Zümrüt Yeşili & Elmas Mavisi karışımı ana renkler */
    --primary: #00f2fe;
    --primary-glow: rgba(0, 242, 254, 0.3);
    --secondary: #4facfe;
    
    --text-main: #f0f0f5;
    --text-muted: #9aa0a6;
    
    --success: #20c997;
    --warning: #ffc107;
    --danger: #ff4d4f;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--text-main);
}

ul {
    list-style: none;
}

/* Background Effects */
.bg-gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    background: radial-gradient(ellipse at top, rgba(0, 242, 254, 0.15), transparent 70%);
    z-index: -2;
}

.glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
    animation: floatOrb 10s infinite alternate ease-in-out;
}

.orb-1 {
    top: 20%;
    left: 10%;
    background: var(--primary);
}

.orb-2 {
    bottom: 20%;
    right: 10%;
    background: var(--secondary);
    animation-delay: -5s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.2); }
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-logo img {
    width: 100px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 20px var(--primary)); }
    100% { transform: scale(0.9); opacity: 0.7; }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    background: rgba(11, 13, 20, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--card-border);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-brand img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.nav-links a:hover, .nav-links a.active {
    background: rgba(255,255,255,0.05);
    color: var(--primary);
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-family: var(--font-body);
}

.btn-discord {
    background: #5865F2;
    color: white;
}
.btn-discord-large {
    background: #5865F2;
    color: white;
    width: 100%;
    justify-content: center;
    margin-top: 15px;
}
.btn-discord:hover, .btn-discord-large:hover {
    background: #4752c4;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
    color: white;
}

.btn-login {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-login:hover {
    background: rgba(255,255,255,0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
}
.btn-primary:hover {
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-2px);
    color: #fff;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Header & Banner */
.hero-section {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(11, 13, 20, 0.4), var(--bg-color));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeUp 1s ease 0.5s both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.ip-copy-wrapper {
    display: inline-flex;
    align-items: stretch;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.ip-copy-wrapper:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3), 0 0 15px var(--primary-glow);
}

.ip-box {
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.ip-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
}

.ip-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
}

.copy-icon {
    background: var(--primary);
    color: #000;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.ip-copy-wrapper:active .copy-icon {
    transform: scale(0.9);
}

.player-count {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.status-dot {
    width: 10px; height: 10px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--success);
    animation: pulse 2s infinite;
}

.mini-hero {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px; /* navbar yüksekliği */
    margin-bottom: 0;
}

.page-title {
    position: relative;
    z-index: 10;
    font-family: var(--font-heading);
    font-size: 3rem;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* Layouts & Common */
.main-container {
    max-width: 1200px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 20;
    padding: 0 20px;
    padding-top: 40px;
}

/* Ana sayfa için hero'dan sonra negatif overlap */
.main-container.hero-overlap {
    margin-top: -50px;
    padding-top: 0;
}

.box-layout {
    margin-top: 40px;
}

.flex-split {
    display: flex;
    gap: 30px;
}

.home-container {
    display: flex;
    gap: 30px;
}

.main-content-left {
    flex: 2;
}

.sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Cards & Widgets */
.news-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.news-card, .widget, .forum-board, .rule-category, .ticket-card, .product-card, .faq-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.1);
}

.news-img {
    position: relative;
    height: 200px;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-date {
    position: absolute;
    bottom: 15px; left: 15px;
    background: rgba(0,0,0,0.8);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    backdrop-filter: blur(5px);
}

.news-content {
    padding: 25px;
}

.news-category {
    color: var(--primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
}

.btn-read-more {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
}

/* Widgets */
.widget { padding: 20px; }
.widget h3 {
    margin-bottom: 15px;
    font-family: var(--font-heading);
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.status-item {
    display: flex;
    justify-content: space-between;
    background: rgba(0,0,0,0.3);
    padding: 10px;
    border-radius: 8px;
}

.value.online { color: var(--success); }

/* Footer */
footer {
    background: #06070a;
    border-top: 1px solid var(--card-border);
    padding: 60px 20px 20px;
    margin-top: 100px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo {
    width: 50px;
    height: 50px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px; height: 40px;
    background: var(--card-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
}

.footer-col h3 {
    margin-bottom: 20px;
    font-family: var(--font-heading);
    color: #fff;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); }
.footer-col ul li a:hover { color: var(--primary); padding-left: 5px; }

.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    background: var(--card-bg);
    padding: 10px 15px;
    border-radius: 8px;
}
.info-box .icon { font-size: 1.5rem; color: var(--primary); }
.info-box .details span { display: block; font-size: 0.8rem; color: var(--text-muted); }

.footer-bottom {
    max-width: 1200px;
margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--card-border);
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Sayfalara Özel Eklemeler (Mağaza, Forum vb) */
.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.rule-category { padding: 25px; margin-bottom: 20px; display: flex; gap: 20px; }
.rule-icon { font-size: 2.5rem; color: var(--primary); }
.rule-details ul { margin-top: 15px; padding-left: 20px; list-style: disc; }

.support-left { flex: 2; }
.support-right { flex: 1; }
.ticket-card { padding: 20px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }
.ticket-status { padding: 5px 10px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; }
.badge-success { background: rgba(32, 201, 151, 0.2); color: var(--success); }
.badge-warning { background: rgba(255, 193, 7, 0.2); color: var(--warning); }
.form-control { width: 100%; padding: 12px; background: rgba(0,0,0,0.3); border: 1px solid var(--card-border); color: #fff; border-radius: 8px; margin-top: 5px; margin-bottom: 15px; }

.forum-category-wrap { margin-bottom: 40px; }
.category-title { margin-bottom: 15px; font-family: var(--font-heading); color: var(--primary); border-bottom: 1px solid var(--card-border); padding-bottom: 10px; }
.forum-board { padding: 20px; display: flex; align-items: center; gap: 20px; margin-bottom: 10px; }
.board-icon { font-size: 2rem; color: var(--text-muted); width: 50px; text-align: center; }
.board-info { flex: 1; }
.board-info h4 { font-size: 1.2rem; margin-bottom: 5px; }
.board-stats { display: flex; flex-direction: column; font-size: 0.85rem; color: var(--text-muted); text-align: right; }

.store-promo { background: linear-gradient(135deg, var(--danger), #ff8a00); border-radius: 16px; padding: 30px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.promo-badge { font-family: var(--font-heading); font-size: 3rem; font-weight: 900; }
.store-sidebar { flex: 1; }
.store-main { flex: 3; }
.store-categories li a { display: block; padding: 12px 15px; border-radius: 8px; margin-bottom: 5px; background: rgba(0,0,0,0.2); }
.store-categories li a:hover, .store-categories li a.active { background: var(--primary); color: #000; font-weight: bold; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.product-card { text-align: center; padding: 20px; position: relative; }
.product-img img { width: 100%; border-radius: 12px; margin-bottom: 15px; }
.product-price { margin: 15px 0; }
.old-price { text-decoration: line-through; color: var(--text-muted); margin-right: 10px; }
.current-price { font-size: 1.5rem; font-weight: bold; color: var(--success); }
.btn-add-cart { background: var(--success); color: #fff; width: 100%; justify-content: center; }
.popular-badge { position: absolute; top: -10px; right: -10px; background: var(--danger); padding: 5px 15px; border-radius: 20px; font-weight: bold; font-size: 0.8rem; box-shadow: 0 5px 15px rgba(255,0,0,0.3); z-index: 10; }
.product-tooltip { display: none; position: absolute; top: 100%; left: 0; background: #111; padding: 15px; border-radius: 8px; border: 1px solid var(--primary); z-index: 100; width: 100%; text-align: left; }
.product-card:hover .product-tooltip { display: block; }
.product-tooltip ul { list-style: inside; font-size: 0.85rem; color: #ccc; }

/* Responsive */
@media (max-width: 992px) {
    .home-container, .flex-split, .footer-container { flex-direction: column; }
    .store-layout { flex-direction: column; }
}

@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: #0b0d14; flex-direction: column; padding: 20px; }
    .nav-links.active { display: flex; }
    .mobile-toggle { display: block; }
    .hero-title { font-size: 2.5rem; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { justify-content: center; }
    .social-links { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
