/*
Minecraft Plugin Paketi Sitesi - Tema Override CSS
Bu dosya ana style.css'i override eder ve Minecraft temasını uygular
*/

/* ============================================================
   BANNER SLIDER - TruvaNetwork Style
   ============================================================ */

/* Main slider container */
.mv-slider {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    background: #0a0a1a;
}

/* Slider track (holds all slides) */
.mv-slider__track {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual slide */
.mv-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 0;
}

.mv-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Dark gradient overlay - heavier on the left for text readability */
.mv-slide__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 20, 0.55);
    z-index: 1;
}

/* Slide content - centered */
.mv-slide__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 480px;
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 15px;
}

/* Slide title */
.mv-slide__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 18px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    /* Animate in */
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s ease 0.2s, opacity 0.6s ease 0.2s;
}

.mv-slide.active .mv-slide__title {
    transform: translateY(0);
    opacity: 1;
}

/* Slide description */
.mv-slide__desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 auto 28px;
    max-width: 600px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
    /* Animate in */
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s ease 0.35s, opacity 0.6s ease 0.35s;
}

.mv-slide.active .mv-slide__desc {
    transform: translateY(0);
    opacity: 1;
}

/* CTA Button */
.mv-slide__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    background: #c0392b;
    border-radius: 8px;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(192, 57, 43, 0.4);
    /* Animate in */
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s ease 0.5s, opacity 0.6s ease 0.5s, background 0.3s ease, box-shadow 0.3s ease;
}

.mv-slide.active .mv-slide__btn {
    transform: translateY(0);
    opacity: 1;
}

.mv-slide__btn:hover {
    background: #e74c3c;
    box-shadow: 0 6px 22px rgba(231, 76, 60, 0.5);
    transform: translateY(-2px) !important;
    color: #fff;
}

/* Button color variants */
.mv-slide__btn--blue {
    background: #2980b9;
    box-shadow: 0 4px 15px rgba(41, 128, 185, 0.4);
}

.mv-slide__btn--blue:hover {
    background: #3498db;
    box-shadow: 0 6px 22px rgba(52, 152, 219, 0.5);
}

.mv-slide__btn--amber {
    background: #e67e22;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

.mv-slide__btn--amber:hover {
    background: #f39c12;
    box-shadow: 0 6px 22px rgba(243, 156, 18, 0.5);
}

.mv-slide__btn--green {
    background: #27ae60;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
}

.mv-slide__btn--green:hover {
    background: #2ecc71;
    box-shadow: 0 6px 22px rgba(46, 204, 113, 0.5);
}

/* Navigation Arrows */
.mv-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    padding: 0;
}

.mv-slider:hover .mv-slider__arrow {
    opacity: 1;
}

.mv-slider__arrow:hover {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.08);
}

.mv-slider__arrow--prev {
    left: 24px;
}

.mv-slider__arrow--next {
    right: 24px;
}

/* Dot navigation */
.mv-slider__dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.mv-slider__dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.mv-slider__dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .mv-slider {
        height: 420px;
    }

    .mv-slide__content {
        height: 420px;
        padding: 30px 0;
    }

    .mv-slide__title {
        font-size: 30px;
    }

    .mv-slide__desc {
        font-size: 14px;
        max-width: 460px;
    }

    .mv-slider__arrow {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .mv-slider__arrow--prev {
        left: 14px;
    }

    .mv-slider__arrow--next {
        right: 14px;
    }
}

@media (max-width: 768px) {
    .mv-slider {
        height: 380px;
    }

    .mv-slide__content {
        height: 380px;
        padding: 24px 0;
    }

    .mv-slide__overlay {
        background: rgba(5, 5, 20, 0.62);
    }

    .mv-slide__title {
        font-size: 24px;
    }

    .mv-slide__desc {
        font-size: 13px;
        max-width: 90%;
    }

    .mv-slide__btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .mv-slider__arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
        opacity: 1;
    }

    .mv-slider__arrow--prev {
        left: 10px;
    }

    .mv-slider__arrow--next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .mv-slider {
        height: 340px;
    }

    .mv-slide__content {
        height: 340px;
        padding: 20px 0;
    }

    .mv-slide__title {
        font-size: 20px;
    }

    .mv-slide__desc {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .mv-slide__btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .mv-slider__dots {
        bottom: 14px;
    }

    .mv-slider__dot {
        width: 10px;
        height: 10px;
    }
}

/* ============================================================
   END OF BANNER SLIDER STYLES
   ============================================================ */

/* ============================================================
   PAGE HEADER BANNER - Modern Override (bg--overlay sayfalar)
   ============================================================ */

.page-header.bg--overlay {
    position: relative;
    background: url('../img/home-slider-img/hero-bg.png') center/cover no-repeat;
    padding: 60px 0 50px;
    min-height: 180px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 0;
}

.page-header.bg--overlay::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 15, 0.46) !important;
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-header.bg--overlay>.container {
    position: relative;
    z-index: 2;
}

.page-header.bg--overlay h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.page-header.bg--overlay h1 i {
    margin-right: 10px;
    opacity: 0.8;
}

.page-header.bg--overlay .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 8px 20px;
    margin: 0;
    font-size: 13px;
}

.page-header.bg--overlay .breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.page-header.bg--overlay .breadcrumb a:hover {
    color: #fff;
}

.page-header.bg--overlay .breadcrumb span {
    color: rgba(255, 255, 255, 0.45);
}

/* Category hero inside bg--overlay */
.page-header.bg--overlay .category-hero h1 {
    font-size: 36px;
}

.page-header.bg--overlay .category-hero .lead {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    margin-top: 8px;
}

.page-header.bg--overlay .category-hero .badge {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
}

.page-header.bg--overlay .category-icon {
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    margin-bottom: 10px;
}

.page-header.bg--overlay .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 6px;
    transition: all 0.3s;
}

.page-header.bg--overlay .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

/* Responsive page-header */
@media (max-width: 768px) {
    .page-header.bg--overlay {
        padding: 40px 0 35px;
        min-height: 140px;
    }

    .page-header.bg--overlay h1 {
        font-size: 24px;
    }

    .page-header.bg--overlay .breadcrumb {
        font-size: 12px;
        padding: 6px 14px;
    }
}

@media (max-width: 480px) {
    .page-header.bg--overlay h1 {
        font-size: 20px;
    }
}

/* ============================================================
   END OF PAGE HEADER BANNER STYLES
   ============================================================ */

/* Logo Ortalama ve Stil Düzeltmeleri */
.navbar-brand {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
    padding: 10px 15px !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #000 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
}

.navbar-brand:hover {
    color: #FFD700 !important;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(76, 175, 80, 0.2)) !important;
    border-color: #FFD700 !important;
    transform: scale(1.05) !important;
}

/* Navbar yükseklik ayarı */
#secondaryMenu .navbar-header {
    display: flex !important;
    align-items: center !important;
    height: 70px !important;
}

/* Navbar genel ayarları */
#secondaryMenu {
    min-height: 70px !important;
}

/* Ana renk değişiklikleri */

a.btn-custom:focus,
a.btn-custom:hover {
    background-color: #8336dcb6 !important;
}

a.btn-custom-reverse {
    background-color: #8336dcb6 !important;
}

#backToTop a,
#promo {
    background-color: #8336dcb6 !important;
}

.pagination>li.active>a,
.pagination>li.active>a:hover,
.pagination>li.active>span,
.pagination>li.active>span:hover,
.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    background-color: #8336dcb6 !important;
    border-color: #8336dcb6 !important;
}

#fakeLoader {
    background-color: #8336dcb6 !important;
}

.section-title h2:before {
    background-color: #8336dcb6 !important;
}

.section-title span {
    color: #8336dcb6 !important;
}

/* Counter bölümü Minecraft teması */
.counter {
    background-color: #8336dcb6 !important;
}

/* Navbar aktif linkler */
.secondary-menu-links li.active>a,
.secondary-menu-links li a:hover {
    color: #8336dcb6 !important;
    border-bottom: 2px solid #8336dcb6 !important;
}

/* Plugin kategori butonları */
.submit-button-custom {
    background: linear-gradient(135deg, #8336dcb6 0%, #2E7D32 100%) !important;
    border: none !important;
    color: white !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
}

.submit-button-custom:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFA000 100%) !important;
    color: #1C1C1C !important;
    transform: translateY(-2px) !important;
}

/* Form kontrolleri */
.form-control:focus {
    border-color: #8336dcb6 !important;
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25) !important;
}

/* Plugin arama bölümü özel stil */
#domainSearch {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 3px solid #8336dcb6;
    border-bottom: 3px solid #8336dcb6;
}

#domainSearch .left-content h2 {
    color: #2E7D32;
    font-weight: 700;
}

#domainSearch .left-content p {
    color: #8336dcb6;
    font-weight: 500;
}

/* Plugin kategorileri hover efektleri */
.extension {
    border: 2px solid transparent !important;
    transition: all 0.3s ease !important;
}

.extension:hover {
    border-color: #FFD700 !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3) !important;
}

.extension .name {
    font-weight: 600 !important;
    color: white !important;
}

/* Testimonial slider */
.testimonial-slider .owl-page.active,
.pricing--slider .owl-page.active {
    background-color: #8336dcb6 !important;
}

/* Features tab navigation */
.features-tab--nav ul li.active a {
    background-color: #8336dcb6 !important;
    border-color: #8336dcb6 !important;
}

.features-tab--nav ul li a:hover {
    background-color: #FFD700 !important;
    color: #1C1C1C !important;
    border-color: #FFD700 !important;
}

/* Contact info özel stiller */
.contact-info--item a {
    background: linear-gradient(135deg, #8336dcb6 0%, #2E7D32 100%) !important;
    color: white !important;
    padding: 15px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    display: block !important;
}

.contact-info--item a:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFA000 100%) !important;
    color: #1C1C1C !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3) !important;
}

/* Footer sosyal medya linkleri */
.footer--social-widget ul li a {
    border: 2px solid #8336dcb6 !important;
    color: #8336dcb6 !important;
    transition: all 0.3s ease !important;
}

.footer--social-widget ul li a:hover {
    background-color: #8336dcb6 !important;
    color: white !important;
    transform: scale(1.1) !important;
}

/* Banner slider navigation */
.banner--slider-nav ul li.active,
.banner--slider-nav ul li:hover {
    border-top: 3px solid #8336dcb6 !important;
}

.banner--slider-nav ul li.active p,
.banner--slider-nav ul li:hover p {
    color: #000 !important;
    font-weight: 600 !important;
}

/* Özel Minecraft pixelated efekt (isteğe bağlı) */
.minecraft-pixel {
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

/* Scrollbar özelleştirme */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #8336dcb6 0%, #2E7D32 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFA000 100%);
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .pricing--content {
        margin-bottom: 20px;
    }

    .extension {
        margin-bottom: 10px;
    }

    .contact-info--item {
        margin-bottom: 15px;
    }

    .nav-menu {
        flex-direction: column;
        align-items: stretch;
    }

    .user-section {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }

    .user-info {
        width: 100%;
        justify-content: center;
        padding: 14px 0;
        border-radius: 16px;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .user-menu {
        left: 0;
        right: 0;
        min-width: 100vw;
        max-width: 100vw;
        top: 100%;
        position: absolute;
        border-radius: 16px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
        background: white;
        overflow: hidden;
    }
}

/* Animasyonlar */
@keyframes minecraft-glow {
    0% {
        box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }

    100% {
        box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
    }
}

.minecraft-glow:hover {
    animation: minecraft-glow 2s infinite;
}

/* Plugin paket kartları için özel hover efekti */
.pricing--item:hover .pricing--content {
    animation: minecraft-glow 2s infinite;
}

/* Banner text efektleri */
.banner-item-content h1 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.6);
}

.banner-item-content p {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.banner-item-content h1 span {
    position: relative;
    z-index: 1;
}

.banner-item-content h1 span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5px;
    right: -5px;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.3), rgba(255, 160, 0, 0.3));
    transform: skew(-5deg);
    z-index: -1;
    border-radius: 5px;
}

/* User dropdown menüsü için modern ve oval stil */
.user-section {
    position: relative;
}

.user-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 110%;
    /* nav'dan biraz ayrık olsun */
    min-width: 180px;
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
    border-radius: 16px;
    padding: 12px 0;
    z-index: 1000;
    border: 1px solid #eaeaea;
}

.user-menu.active {
    display: block;
}

.user-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.user-menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    text-align: center;
}

.user-menu li a:hover {
    background: #f5f5f5;
    color: #1976d2;
}

/* Panel/Dashboard Styles */

/* Page Header (Tüm Sayfalar) */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    min-height: 120px;
    margin-top: 0px;
    margin-bottom: 0px;
    color: white;
    border-bottom: none;
}

.page-header::before,
.page-header::after {
    display: none !important;
    content: none !important;
}

/* Panel Header */
.panel-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    min-height: 200px;
    margin-top: 0px;
}

.page-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.header-left h1 {
    margin: 0;
    color: white !important;
    font-size: 2.2rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header-left h1 i {
    color: rgba(255, 255, 255, 0.9);
    margin-right: 10px;
}

.header-left p {
    margin: 5px 0 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.header-right {
    text-align: right;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 8px;
}

/* Responsive design */
@media (max-width: 768px) {
    .page-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .header-right {
        text-align: left;
        width: 100%;
    }

    .header-left h1 {
        font-size: 1.8rem;
    }

    .header-left p {
        font-size: 1rem;
    }
}

/* Panel Navigation Bar */
.panel-navbar {
    background: white;
    border-bottom: 1px solid #e0e6ed;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    margin-bottom: 30px;
}

.panel-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    min-height: 60px;
}

/* Sağda hizalama için yeni düzen */
.nav-menu {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
}



/* User Info Simple */
.user-info-simple {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-weight: 500;
    padding: 8px 12px;
}

.user-info-simple i {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.user-name {
    color: #333;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    color: #6c757d;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-menu li a i {
    margin-right: 6px;
    width: 16px;
    text-align: center;
    font-size: 14px;
}

.nav-menu li a:hover {
    background: #f8f9fa;
    color: #667eea;
}

.nav-menu li.active a {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.nav-menu li.balance-info {
    margin-left: 20px;
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #eaeaea;
}

.balance-label {
    color: #6c757d;
    font-size: 13px;
    margin-right: 5px;
}

.balance-amount {
    color: #28a745;
    font-weight: 600;
    font-size: 14px;
}

.nav-toggle {
    display: none;
    background: #f8f9fa;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    color: #6c757d;
}

.nav-toggle:hover {
    background: #e9ecef;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #e9ecef;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 0;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        padding: 15px 20px;
        border-radius: 0;
        justify-content: flex-start;
        border-bottom: 1px solid #f8f9fa;
    }

    .nav-menu li.active a {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }

    .nav-menu li.balance-info {
        margin-left: 0;
        padding: 15px 20px;
        border-radius: 0;
        background: #f8f9fa;
        border: none;
        border-top: 2px solid #e9ecef;
        justify-content: center;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-toggle i {
        transition: all 0.3s ease;
    }

    .panel-nav {
        position: relative;
    }

    .user-menu {
        position: fixed;
        top: auto;
        bottom: 10px;
        left: 10px;
        right: 10px;
        width: auto;
        min-width: auto;
    }
}

.user-welcome h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.user-welcome p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.user-actions {
    display: flex;
    gap: 10px;
}

.user-actions .btn {
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.user-actions .btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Dashboard Section */
.dashboard-section {
    background: #f8f9fa;
    min-height: calc(100vh - 300px);
    margin-bottom: 50px;
    /* Footer için margin */
}

/* Sidebar */
.dashboard-sidebar {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 0;
    overflow: hidden;
    position: sticky;
    top: 20px;
}

/* User Info */
.user-info {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.user-avatar {
    margin-bottom: 15px;
}

.user-avatar i {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 10px;
}

.user-info h4 {
    margin-bottom: 5px;
    font-weight: 600;
}

.user-info p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.member-since small {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
}

/* Dashboard Navigation */
.dashboard-nav {
    padding: 20px 0;
}

.dashboard-nav .nav-pills>li>a {
    color: #333;
    border-radius: 0;
    padding: 15px 25px;
    margin: 0;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.dashboard-nav .nav-pills>li>a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.dashboard-nav .nav-pills>li>a:hover {
    background: #f8f9fa;
    color: #667eea;
}

.dashboard-nav .nav-pills>li.active>a {
    background: #667eea;
    color: white;
}

/* Stats Cards */
.stat-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    height: 120px;
    /* Sabit yükseklik */
    min-height: 120px;
    /* Minimum yükseklik */
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
    /* İkonun küçülmesini engelle */
}

.stat-content {
    flex: 1;
    /* Kalan alanı kapla */
}

.stat-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
    line-height: 1.2;
}

.stat-content p {
    color: #6c757d;
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
}

.balance-card .stat-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.purchases-card .stat-icon {
    background: linear-gradient(135deg, #007bff, #6610f2);
}

.products-card .stat-icon {
    background: linear-gradient(135deg, #17a2b8, #6f42c1);
}

.support-card .stat-icon {
    background: linear-gradient(135deg, #fd7e14, #e83e8c);
}

.coupon-card .stat-icon {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.stat-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.stat-content p {
    color: #6c757d;
    margin: 0;
    font-size: 14px;
}

/* Dashboard Section Title */
.dashboard-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 20px 0;
}

.dashboard-section-title h3 {
    color: #333;
    font-weight: 600;
    margin: 0;
}

.view-all {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.view-all:hover {
    color: #5a67d8;
    text-decoration: underline;
}

/* Action Cards */
.action-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.action-card i {
    color: #667eea;
    margin-bottom: 20px;
}

.action-card h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.action-card p {
    color: #6c757d;
    margin-bottom: 25px;
    font-size: 14px;
}

.action-card .btn {
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 500;
}

/* Recent Purchases */
.recent-purchases,
.active-products,
.active-tickets {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.recent-purchases .table,
.active-products .table,
.active-tickets .table {
    margin: 0;
}

.recent-purchases .table thead th,
.active-products .table thead th,
.active-tickets .table thead th {
    background: #f8f9fa;
    border: none;
    color: #333;
    font-weight: 600;
    padding: 20px;
}

.recent-purchases .table tbody td,
.active-products .table tbody td,
.active-tickets .table tbody td {
    padding: 20px;
    border-top: 1px solid #eee;
    vertical-align: middle;
}

.product-name,
.ticket-subject {
    font-weight: 500;
    color: #333;
}

.product-id,
.ticket-id {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #667eea;
}

.ip-address code {
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
    color: #495057;
    border: 1px solid #dee2e6;
}

.price {
    font-weight: 600;
    color: #28a745;
}

/* Action Buttons */
.action-buttons .btn-group {
    display: flex;
    gap: 5px;
}

.action-buttons .btn {
    border-radius: 6px;
    font-weight: 500;
}

.edit-product-btn {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

.edit-product-btn:hover {
    background: #5a67d8;
    border-color: #5a67d8;
    color: white;
}

/* Status Badge */
.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.status-completed,
.status-active {
    background: #d4edda;
    color: #155724;
}

.status-pending,
.status-inactive {
    background: #fff3cd;
    color: #856404;
}

/* Ticket Status Badges */
.ticket-status-open {
    background: #f8d7da;
    color: #721c24;
}

.ticket-status-pending {
    background: #fff3cd;
    color: #856404;
}

.ticket-status-answered {
    background: #d1ecf1;
    color: #0c5460;
}

/* Priority Badges */
.priority-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.priority-high {
    background: #f8d7da;
    color: #721c24;
}

.priority-medium {
    background: #fff3cd;
    color: #856404;
}

.priority-low {
    background: #d4edda;
    color: #155724;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .dashboard-sidebar {
        margin-bottom: 30px;
    }

    .user-info {
        padding: 25px 15px;
    }

    .dashboard-nav .nav-pills>li>a {
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .panel-header {
        padding: 40px 0;
    }

    .user-welcome h1 {
        font-size: 1.8rem;
    }

    .user-actions {
        flex-direction: column;
        width: 100%;
    }

    .user-actions .btn {
        margin: 0;
    }

    .stat-card {
        padding: 20px;
        margin-bottom: 15px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
        font-size: 20px;
    }

    .stat-content h3 {
        font-size: 1.5rem;
    }

    .action-card {
        padding: 25px 15px;
    }

    .dashboard-section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* Tablo mobil uyumluluğu */
    .active-products .table,
    .active-tickets .table {
        font-size: 12px;
    }

    .active-products .table thead th,
    .active-products .table tbody td,
    .active-tickets .table thead th,
    .active-tickets .table tbody td {
        padding: 10px 5px;
        white-space: nowrap;
    }

    /* Mobilde bazı kolonları gizle */
    .active-products .table th:nth-child(3),
    .active-products .table td:nth-child(3),
    .active-tickets .table th:nth-child(3),
    .active-tickets .table td:nth-child(3),
    .active-tickets .table th:nth-child(5),
    .active-tickets .table td:nth-child(5) {
        display: none;
    }

    /* Butonları küçült */
    .action-buttons .btn {
        padding: 5px 8px;
        font-size: 11px;
    }

    .action-buttons .btn i {
        margin-right: 2px;
    }

    /* Badge'leri küçült */
    .status-badge,
    .priority-badge {
        padding: 4px 8px;
        font-size: 10px;
    }
}

@media (max-width: 576px) {

    .recent-purchases .table-responsive,
    .active-products .table-responsive,
    .active-tickets .table-responsive {
        font-size: 11px;
        overflow-x: auto;
    }

    .recent-purchases .table thead th,
    .recent-purchases .table tbody td,
    .active-products .table thead th,
    .active-products .table tbody td,
    .active-tickets .table thead th,
    .active-tickets .table tbody td {
        padding: 8px 4px;
        min-width: 80px;
    }

    .product-name,
    .ticket-subject {
        font-size: 11px;
        max-width: 120px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
        height: auto;
        /* Mobilde otomatik yükseklik */
        min-height: 150px;
        /* Mobilde minimum yükseklik */
        padding: 20px;
    }

    .stat-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .stat-content h3 {
        font-size: 1.5rem;
    }

    /* Sidebar'ı mobilde full width yap */
    .dashboard-sidebar {
        margin-bottom: 20px;
    }

    /* Butonları tam küçült */
    .action-buttons .btn {
        padding: 4px 6px;
        font-size: 10px;
    }

    .action-buttons .btn-group {
        flex-direction: column;
        gap: 2px;
    }

    /* IP adreslerini kısa göster */
    .ip-address code {
        font-size: 9px;
        padding: 2px 4px;
    }

    /* ID'leri kısa göster */
    .product-id,
    .ticket-id {
        font-size: 10px;
    }
}

/* Panel Page Specific Styles */
.user-info-panel {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.user-info-panel .panel-body {
    padding: 30px;
}

.user-info-panel h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 600;
}

.user-info-panel .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 16px;
    margin-bottom: 8px;
}

.user-info-panel .text-muted i {
    margin-right: 8px;
    width: 16px;
}

.user-avatar i {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Kullanıcı istatistikleri */
.user-stats {
    text-align: center;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item strong {
    font-size: 18px;
    color: white;
    display: block;
}

.stat-item small {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 12px;
}

/* Panel Heading with Bootstrap Grid */
.panel-heading-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.panel-heading-flex h4 {
    margin: 0;
    color: #333;
    font-weight: 600;
}

.panel-heading-flex .panel-controls {
    margin: 0;
}

.panel-heading-flex .btn {
    margin-left: 5px;
}

/* Fallback for older panel-heading */
.panel-controls {
    display: inline-block;
}

/* Product and Ticket Meta */
.product-meta,
.ticket-meta {
    margin-top: 5px;
    display: none;
    /* İndirme sayısını gizle */
}

.product-meta small,
.ticket-meta small {
    display: block;
    color: #6c757d;
    font-size: 12px;
}

/* Button Groups - Yan yana yapma */
.btn-group-vertical {
    display: inline-block !important;
    flex-direction: row !important;
}

.btn-group-vertical .btn {
    margin-right: 3px !important;
    margin-bottom: 0 !important;
}

/* Stats Cards - Belirgin arka plan */
.stat-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    border: 1px solid #dee2e6 !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.stat-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important;
}

/* Özel renk kartları */
.balance-card {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%) !important;
    border-color: #2196f3 !important;
}

.products-card {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%) !important;
    border-color: #9c27b0 !important;
}

.support-card {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%) !important;
    border-color: #8336dcb6 !important;
}

.coupon-card {
    background: linear-gradient(135deg, #fff3e0 0%, #ffcc80 100%) !important;
    border-color: #ff9800 !important;
}

/* Mobile Responsive for Panel Heading */
@media (max-width: 768px) {
    .panel-heading-flex {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .panel-heading-flex .panel-controls {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }

    .panel-heading-flex .btn {
        margin: 2px;
        width: auto;
    }
}

/* Balance Page Specific Styles */
.balance-card .stat-icon {
    background: linear-gradient(45deg, #28a745, #20c997);
}

.pending-card .stat-icon {
    background: linear-gradient(45deg, #ffc107, #fd7e14);
}

.spent-card .stat-icon {
    background: linear-gradient(45deg, #dc3545, #e83e8c);
}

.loaded-card .stat-icon {
    background: linear-gradient(45deg, #007bff, #6610f2);
}

.payment-info {
    margin-top: 15px;
}

/* Support Page Specific Styles */
.ticket-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.ticket-card:hover {
    border-color: #337ab7;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ticket-header h5 {
    margin: 0 0 5px 0;
    color: #333;
}

.ticket-header h5 a {
    color: #337ab7;
    text-decoration: none;
}

.ticket-header h5 a:hover {
    text-decoration: underline;
}

.ticket-meta {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.ticket-actions {
    margin-top: 10px;
    text-align: right;
}

.filter-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* History items */
.history-item {
    transition: background-color 0.3s ease;
}

.history-item:hover {
    background-color: #f8f9fa;
}

/* Product meta information */
.product-meta {
    margin-top: 5px;
}

.product-meta small {
    display: block;
    color: #6c757d;
    font-size: 12px;
}

/* Mobile Optimizations for New Pages */
@media (max-width: 768px) {
    .ticket-card {
        padding: 10px;
    }

    .ticket-actions {
        text-align: center;
        margin-top: 15px;
    }

    .ticket-actions .btn {
        margin: 2px;
        width: auto;
    }

    .payment-info {
        font-size: 13px;
    }

    .filter-section .col-md-6,
    .filter-section .col-md-4 {
        margin-bottom: 10px;
    }

    .product-meta small {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .ticket-card {
        padding: 8px;
    }

    .ticket-header h5 {
        font-size: 14px;
        line-height: 1.3;
    }

    .ticket-meta small {
        font-size: 11px;
    }

    .payment-info p {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .balance-card .stat-content h3,
    .pending-card .stat-content h3,
    .spent-card .stat-content h3,
    .loaded-card .stat-content h3 {
        font-size: 18px;
    }

    .product-meta {
        margin-top: 3px;
    }

    .product-meta small {
        font-size: 10px;
        line-height: 1.2;
    }
}

.user-info {
    color: #ffffff !important;
}

.user-info:hover {
    background: linear-gradient(135deg, #5a67d8, #764ba2) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease-in-out !important;
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}