/* ============================================
   MCBotKirala.com - Müşteri Paneli Özel Tema
   Turuncu Minecraft Temalı Modern Tasarım
   ============================================ */

/* Ana Wrapper */
#clientAreaIndex-wrapper {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 0;
    margin: 0;
}

/* Hoş Geldin Banner */
.mcbot-welcome-banner {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 40px 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.mcbot-welcome-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.mcbot-welcome-banner h1 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.mcbot-welcome-banner p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Hızlı İstatistik Kartları */
.mcbot-quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.mcbot-stat-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 2px solid #ff6b35;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.mcbot-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
}

.mcbot-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    border-color: #f7931e;
}

.mcbot-stat-icon {
    font-size: 48px;
    color: #ff6b35;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.mcbot-stat-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.mcbot-stat-value {
    color: #ff6b35;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.mcbot-stat-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* Ürün Kartları Grid */
.mcbot-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.mcbot-product-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 2px solid #333;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.mcbot-product-card:hover {
    transform: translateY(-8px);
    border-color: #ff6b35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.mcbot-product-header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 20px;
    text-align: center;
}

.mcbot-product-icon {
    font-size: 42px;
    color: #fff;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.mcbot-product-icon img {
    width: 60px !important;
    height: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3)) !important;
    display: inline-block !important;
    vertical-align: middle;
    opacity: 1 !important;
    visibility: visible !important;
}

.mcbot-product-icon i {
    display: inline-block !important;
    vertical-align: middle;
    font-size: 42px !important;
}

.mcbot-product-icon .product-group-icon {
    max-width: 60px !important;
    max-height: 60px !important;
    width: auto !important;
    height: auto !important;
    display: inline-block !important;
    opacity: 1 !important;
}

.mcbot-product-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.mcbot-product-body {
    padding: 20px;
}

.mcbot-product-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    min-height: 60px;
}

.mcbot-product-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    width: 100%;
}

.mcbot-product-btn:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    transform: scale(1.05);
}

/* Haberler Bölümü */
.mcbot-news-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 2px solid #333;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.mcbot-section-title {
    color: #ff6b35;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mcbot-section-title i {
    font-size: 28px;
}

.mcbot-news-item {
    padding: 20px 0;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}

.mcbot-news-item:last-child {
    border-bottom: none;
}

.mcbot-news-item:hover {
    padding-left: 10px;
}

.mcbot-news-item h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.mcbot-news-item h5 a {
    color: #ff6b35;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mcbot-news-item h5 a:hover {
    color: #f7931e;
}

.mcbot-news-item span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

.mcbot-news-item span a {
    color: #ff6b35;
    font-weight: 600;
    text-decoration: none;
}

.mcbot-news-item span a:hover {
    color: #f7931e;
}

/* Domain Arama Alanı */
.homedomainarea-con {
    margin-bottom: 30px;
}

.homedomainarea {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 2px solid #ff6b35;
    border-radius: 15px;
    overflow: hidden;
}

.homedomainarea h1 {
    color: #fff;
    margin-bottom: 20px;
}

.homedomainarea input[type="text"] {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #333;
    color: #fff !important;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    width: 60%;
    margin-right: 10px;
}

.homedomainarea input[type="text"]:focus {
    border-color: #ff6b35 !important;
    background: rgba(255, 255, 255, 0.15);
}

.homedomainarea input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.homedomainarea input[type="submit"] {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    color: #fff !important;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.homedomainarea input[type="submit"]:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

.spottlds {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid #ff6b35;
    border-radius: 8px;
    padding: 10px 15px;
    margin: 5px;
    color: #fff;
    transition: all 0.3s ease;
}

.spottlds:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.05);
}

/* Ana Container */
.wclientblockscon {
    padding: 20px;
    background: #1a1a1a;
    min-height: 100vh;
}

/* ============================================
   Ürün Detay Sayfası (ac-product-server vb.)
   ============================================ */

/* Panel başlık */
.mpanelrightcon {
    background: #1a1a1a !important;
    padding: 20px;
}

.mpaneltitle {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%) !important;
    border: 2px solid #ff6b35 !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
}

.mpaneltitle h4 {
    color: #ff6b35 !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

.mpaneltitle h4 i {
    color: #ff6b35 !important;
    margin-right: 10px !important;
}

.mpaneltitle h4 strong {
    color: #ff6b35 !important;
}

/* Tab menüler */
.productServiceTab,
.tab,
ul.tab {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%) !important;
    border: 2px solid #333 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    margin-bottom: 20px !important;
    padding: 0 !important;
}

.productServiceTab ul,
ul.tab {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
}

.productServiceTab .tablinks,
.tab .tablinks,
ul.tab li a {
    background: transparent !important;
    border: none !important;
    border-bottom: 3px solid transparent !important;
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 15px 20px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
    display: inline-block !important;
    text-decoration: none !important;
}

.productServiceTab .tablinks:hover,
.tab .tablinks:hover,
ul.tab li a:hover {
    background: rgba(255, 107, 53, 0.1) !important;
    color: #ff6b35 !important;
}

.productServiceTab .tablinks.active,
.tab .tablinks.active,
ul.tab li a.active {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
    color: #fff !important;
    border-bottom-color: #f7931e !important;
}

.productServiceTab .tablinks i,
.tab .tablinks i,
ul.tab li a i {
    margin-right: 8px !important;
}

/* Hizmet blokları */
.hizmetblok {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 2px solid #333;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.service-first-block {
    text-align: center;
    padding: 20px;
}

.service-status-con {
    margin-bottom: 15px;
}

.statusonline {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
}

.statusoffline {
    background: linear-gradient(135deg, #f44336 0%, #da190b 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
}

.statusother {
    background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
}

.statusloader {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
}

/* Butonlar */
.turuncbtn,
.mavibtn,
.gonderbtn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin: 5px;
}

.turuncbtn:hover,
.mavibtn:hover,
.gonderbtn:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

/* Sipariş ID */
.orderidno {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 15px;
}

.orderidno span {
    opacity: 0.9;
    margin-right: 10px;
}

.orderidno strong {
    font-size: 18px;
}

/* Tab içerik */
.tabcontent {
    padding: 20px 0;
}

/* Bilgi kutuları */
.blue-info,
.orange-info,
.green-info,
.red-info,
.gray-info {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid #ff6b35;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

.blue-info i,
.orange-info i,
.green-info i,
.red-info i {
    color: #ff6b35;
    font-size: 24px;
    margin-right: 15px;
}

/* Form elemanları */
input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid #333 !important;
    color: #fff !important;
    padding: 12px !important;
    border-radius: 8px !important;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    border-color: #ff6b35 !important;
    background: rgba(255, 255, 255, 0.15) !important;
}

/* Tablolar */
table,
.table {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%) !important;
    border: 2px solid #333 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

table thead,
.table thead {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
}

table thead th,
.table thead th {
    color: #fff !important;
    font-weight: 700 !important;
    padding: 15px !important;
    background: transparent !important;
}

table tbody tr,
.table tbody tr {
    border-bottom: 1px solid #333 !important;
    background: transparent !important;
}

table tbody tr:hover,
.table tbody tr:hover {
    background: rgba(255, 107, 53, 0.1) !important;
}

table tbody td,
.table tbody td {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 12px !important;
}

/* DataTables wrapper */
.dataTables_wrapper {
    color: rgba(255, 255, 255, 0.9) !important;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
    color: rgba(255, 255, 255, 0.9) !important;
}

.dataTables_wrapper select,
.dataTables_wrapper input {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid #333 !important;
    color: #fff !important;
}

.dataTables_wrapper .paginate_button {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
    color: #fff !important;
    border: none !important;
}

.dataTables_wrapper .paginate_button:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%) !important;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .mcbot-quick-stats {
        grid-template-columns: 1fr;
    }
    
    .mcbot-product-grid {
        grid-template-columns: 1fr;
    }
    
    .mcbot-welcome-banner h1 {
        font-size: 24px;
    }
    
    .mcbot-welcome-banner p {
        font-size: 14px;
    }
    
    .homedomainarea input[type="text"] {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .homedomainarea input[type="submit"] {
        width: 100%;
    }
    
    .mcbot-section-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .wclientblockscon {
        padding: 10px;
    }
    
    .mcbot-welcome-banner {
        padding: 30px 20px;
    }
    
    .mcbot-stat-card {
        padding: 20px;
    }
    
    .mcbot-news-section {
        padding: 20px;
    }
}

