/* SMM Panel Tanıtım Sitesi - Ana CSS */

:root {
    /* Light theme colors */
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    
    /* Background colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    
    /* Text colors */
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --text-muted: #6c757d;
    
    /* Border colors */
    --border-color: #dee2e6;
    --border-light: #e9ecef;
    
    /* Shadow */
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    
    /* Fonts */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}

/* Dark theme */
[data-bs-theme="dark"] {
    --bg-primary: #212529;
    --bg-secondary: #343a40;
    --bg-tertiary: #495057;
    
    --text-primary: #ffffff;
    --text-secondary: #adb5bd;
    --text-muted: #6c757d;
    
    --border-color: #495057;
    --border-light: #343a40;
    
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: var(--transition);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: var(--transition);
}

.loading-text {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-weight: var(--font-weight-medium);
}

/* Thin Top Bar - Tek Sıra İnce */
.thin-top-bar {
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.95) 0%, 
        rgba(118, 75, 162, 0.95) 50%, 
        rgba(240, 147, 251, 0.95) 100%);
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    color: white;
    height: 35px;
    display: flex;
    align-items: center;
}

.thin-top-bar i {
    font-size: 0.7rem;
    opacity: 0.9;
    margin-right: 4px;
}

.thin-top-bar span {
    font-weight: 500;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.social-btn i {
    font-size: 0.7rem !important;
    margin: 0 !important;
}

.theme-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.theme-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.theme-btn i {
    font-size: 0.6rem !important;
    margin-right: 3px !important;
}

@media (max-width: 768px) {
    .thin-top-bar {
        padding: 3px 0;
        font-size: 0.75rem;
        height: 30px;
    }
    
    .social-btn {
        width: 20px;
        height: 20px;
    }
    
    .social-btn i {
        font-size: 0.6rem !important;
    }
    
    .theme-btn {
        padding: 2px 6px;
        font-size: 0.65rem;
    }
}

@media (max-width: 576px) {
    .thin-top-bar {
        display: none;
    }
}

/* Tema Değişim Animasyonları */
.theme-toggle.theme-switching {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2) !important;
}

.theme-toggle.theme-switching .theme-icon {
    background: rgba(255, 255, 255, 0.4) !important;
}

/* Tema Bildirimi */
.theme-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.9rem;
}

.theme-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.theme-notification i {
    font-size: 1.1rem;
    color: #ffd700;
}

[data-bs-theme="dark"] .theme-notification {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Header Scroll Efektleri */
.header.scrolled {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.98) 0%, rgba(118, 75, 162, 0.98) 50%, rgba(240, 147, 251, 0.98) 100%) !important;
    backdrop-filter: blur(25px) !important;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.2) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.header.navbar-hidden {
    transform: translateY(-100%);
}

/* Navbar Scroll Animasyonları */
.navbar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-scrolled {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

/* Gelişmiş Responsive */
@media (max-width: 576px) {
    .theme-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
    }
    
    .theme-notification.show {
        transform: translateY(0);
    }
}

/* Modern Professional Header */
.header {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 50%, rgba(240, 147, 251, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    z-index: 1020;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header scroll effect */
.header.scrolled {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.98) 0%, rgba(118, 75, 162, 0.98) 50%, rgba(240, 147, 251, 0.98) 100%);
    backdrop-filter: blur(25px);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 50%, rgba(240, 147, 251, 0.1) 100%);
    backdrop-filter: blur(10px);
    pointer-events: none;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: var(--font-weight-bold);
    font-size: 1.6rem;
    color: white !important;
    text-decoration: none;
    position: relative;
    z-index: 10;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.logo {
    height: 40px;
    width: auto;
    margin-right: 0.5rem;
}

.brand-text {
    background: linear-gradient(45deg, #ffffff, #e3f2fd, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: var(--font-weight-medium);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin: 0 0.25rem;
    backdrop-filter: blur(10px);
    border: 1px solid transparent;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: white !important;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
}

.navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar-nav .nav-link i {
    margin-right: 0.25rem;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    padding: 1rem 0;
    margin-top: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 250px;
    animation: dropdownFadeIn 0.3s ease;
    transform-origin: top center;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
    border-radius: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    transition: width 0.3s ease;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: var(--primary-color);
    transform: translateX(5px);
    padding-left: 2rem;
}

.dropdown-item:hover::before {
    width: 4px;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover i {
    transform: scale(1.1);
}

/* Mega Menu Style for SMM Panelleri */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    animation: dropdownFadeIn 0.3s ease;
}

.dropdown-menu.mega-menu {
    min-width: 400px;
    padding: 2rem;
}

.mega-menu .dropdown-item {
    border-radius: 8px;
    margin: 0.25rem 0;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.user-menu:hover .user-avatar {
    border: 2px solid rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Compact Navigation Styles */
.compact-nav .nav-link {
    padding: 0.5rem 0.8rem !important;
    font-size: 0.9rem;
    margin: 0 0.1rem;
}

.compact-nav .nav-link i {
    font-size: 0.85rem;
}

/* Responsive adjustments for compact nav */
@media (max-width: 1200px) {
    .compact-nav .nav-link {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.85rem;
    }
}

@media (max-width: 991.98px) {
    .compact-nav .nav-link {
        padding: 0.6rem 1rem !important;
        font-size: 1rem;
    }
}

/* Modern Search Form */
.search-form {
    position: relative;
    z-index: 10;
}

.search-form .input-group {
    border-radius: 25px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.search-form .input-group:hover,
.search-form .input-group:focus-within {
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.search-form .form-control {
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.75rem 1rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.search-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.search-form .form-control:focus {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.search-form .btn {
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.search-form .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Notification Bell */
.nav-link .fa-bell {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nav-link:hover .fa-bell {
    animation: bellRing 0.5s ease;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    75% { transform: rotate(-15deg); }
}

/* User Icon Placeholder */
.user-icon-placeholder {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.user-icon-placeholder i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.nav-link:hover .user-icon-placeholder {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

/* Dropdown Header Styling */
.dropdown-header {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.5rem 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

/* Professional Dropdown Item Layout */
.dropdown-item {
    display: flex !important;
    align-items: flex-start;
    padding: 0.75rem 1.5rem;
}

.dropdown-item div {
    flex: 1;
}

.dropdown-item strong {
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2;
}

.dropdown-item small {
    font-size: 0.75rem;
    line-height: 1.3;
    margin-top: 2px;
}

/* Responsive Navbar */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
        text-align: center;
    }
    
    .dropdown-menu.mega-menu {
        min-width: 100%;
        padding: 1rem;
    }
    
    .search-form {
        margin: 1rem 0;
    }
    
    .user-icon-placeholder {
        margin: 0 auto;
    }
}

/* Modern Mobile Toggle */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

/* Loading Animation */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

/* Flash Messages */
.flash-message {
    margin-bottom: 0;
    border-radius: 0;
    border: none;
    font-weight: var(--font-weight-medium);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding-top: 0;
}

/* Cards */
.card {
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--bg-primary);
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.card-header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
    font-weight: var(--font-weight-semibold);
}

/* Buttons */
.btn {
    font-weight: var(--font-weight-medium);
    border-radius: 0.5rem;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    border: none;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Panel Cards - Professional Style */
.panel-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    position: relative;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.panel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.panel-card-header {
    display: flex;
    align-items: flex-start;
    padding: 28px;
    position: relative;
    gap: 24px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.panel-logo {
    width: 85px;
    height: 85px;
    border-radius: 18px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.panel-card:hover .panel-logo {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.panel-content {
    flex: 1;
    min-width: 0;
}

.panel-vip-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, #ffd700, #ffb800);
    color: #000;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.35);
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.panel-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.panel-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0.8;
}

.panel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.panel-tag {
    font-size: 11px;
    padding: 8px 14px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: capitalize;
    border: 1px solid transparent;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.panel-tag.category-instagram {
    background: linear-gradient(45deg, #E1306C, #FD1D1D);
    color: white;
}

.panel-tag.category-tiktok {
    background: #000;
    color: white;
}

.panel-tag.category-youtube {
    background: #FF0000;
    color: white;
}

.panel-tag.category-twitter {
    background: #1DA1F2;
    color: white;
}

.panel-tag.category-facebook {
    background: #4267B2;
    color: white;
}

.panel-tag.category-general {
    background: var(--primary-color);
    color: white;
}

.panel-tag.level {
    background: #fff3cd;
    color: #856404;
    border-color: #ffeaa7;
}

.panel-tag.difficulty {
    background: #e7d5ff;
    color: #6f42c1;
    border-color: #c29ffa;
}

.panel-tag.members {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.panel-tag.services {
    background: #e2e3e5;
    color: #495057;
    border-color: #ced4da;
}

.panel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 28px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 16px;
    padding-top: 24px;
}

.panel-date {
    color: var(--text-secondary);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.7;
    font-weight: 500;
}

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

.panel-btn {
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.panel-btn.btn-website {
    background: #5865f2;
    color: white;
}

.panel-btn.btn-website:hover {
    background: #4752c4;
    color: white;
}

.panel-btn.btn-details {
    background: #7289da;
    color: white;
}

.panel-btn.btn-details:hover {
    background: #677bc4;
    color: white;
}

.panel-btn.btn-vote {
    background: #dc3545;
    color: white;
    position: relative;
}

.panel-btn.btn-vote:hover {
    background: #c82333;
    color: white;
}

.vote-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 11px;
    margin-left: 5px;
}

.panel-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 10px;
}

.rating-stars {
    display: flex;
    gap: 2px;
    color: #ffd700;
    font-size: 14px;
}

.rating-stars .star.empty {
    color: #e2e8f0;
}

/* Dark Mode Panel Cards */
[data-bs-theme="dark"] .panel-card {
    background: #36393f;
    border-color: #484b51;
}

[data-bs-theme="dark"] .panel-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

[data-bs-theme="dark"] .panel-title {
    color: #ffffff;
}

[data-bs-theme="dark"] .panel-description {
    color: #b9bbbe;
}

[data-bs-theme="dark"] .panel-date {
    color: #b9bbbe;
}

[data-bs-theme="dark"] .panel-tag.level {
    background: #2f3136;
    color: #ffd700;
    border-color: #ffd700;
}

[data-bs-theme="dark"] .panel-tag.difficulty {
    background: #2f3136;
    color: #9d4edd;
    border-color: #9d4edd;
}

[data-bs-theme="dark"] .panel-tag.members {
    background: #2f3136;
    color: #20c997;
    border-color: #20c997;
}

/* Server List Style */
.nav-tabs-custom {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #1a1a1a;
    border: 1px solid #404040;
}

.tab-btn {
    background: transparent;
    border: none;
    color: #aaa;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 1px solid #404040;
    font-weight: 500;
}

.tab-btn:last-child {
    border-right: none;
}

.tab-btn:hover {
    background: #333;
    color: white;
}

.tab-btn.active {
    background: #007bff;
    color: white;
}

.server-card {
    transition: all 0.3s ease;
}

.server-card:hover {
    background: #333333 !important;
    border-color: #007bff !important;
    transform: translateY(-2px);
}

.sidebar-widget {
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    border-color: #007bff !important;
}

.latest-panel-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 8px;
    margin: -8px;
    margin-bottom: 4px;
}

/* Search input placeholder color fix */
.search-section input::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.search-section input:focus {
    background: rgba(255,255,255,0.15) !important;
    border-color: #007bff !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
}

[data-bs-theme="dark"] .panel-tag.services {
    background: #2f3136;
    color: #b9bbbe;
    border-color: #4f545c;
}

/* Slider */
.hero-slider {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.slider-item {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8) 0%, rgba(0, 86, 179, 0.9) 100%);
}

.slider-content {
    position: relative;
    z-index: 2;
    color: white;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    margin-top: auto;
}

.footer-top {
    padding: 3rem 0 2rem;
}

.footer-bottom {
    padding: 1rem 0;
    border-top: 1px solid var(--border-light);
    background: var(--bg-tertiary);
}

.widget-title {
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: #0056b3;
    transform: translateY(-2px);
    color: white;
}

.contact-info {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.footer-bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.copyright {
    color: var(--text-secondary);
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 1000;
}

.scroll-to-top:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.show {
    display: flex;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

/* Form Styles */
.form-control {
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-label {
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* Badges */
.badge {
    font-weight: var(--font-weight-medium);
    padding: 0.35em 0.65em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .top-bar {
        display: none;
    }
    
    .navbar-brand .brand-text {
        display: none;
    }
    
    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .main-content {
        padding-top: 1rem;
    }
    
    .card {
        margin-bottom: 1rem;
    }
}

/* Theme Toggle Animation */
#theme-toggle {
    position: relative;
    overflow: hidden;
}

#theme-icon {
    transition: var(--transition);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --border-color: #000000;
        --text-secondary: #000000;
    }
    
    [data-bs-theme="dark"] {
        --border-color: #ffffff;
        --text-secondary: #ffffff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Server List Style */
.nav-tabs-custom {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tab-btn {
    background: #404040;
    border: 1px solid #555;
    color: #ccc;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab-btn:hover {
    background: #4a4a4a;
    color: white;
}

.tab-btn.active {
    background: #007bff;
    border-color: #007bff;
    color: white;
}

.server-card {
    transition: all 0.3s ease;
}

.server-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    border-color: #007bff !important;
}

.sidebar-widget {
    border: 1px solid #404040 !important;
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    border-color: #555 !important;
}

.latest-panel-item {
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 8px;
}

.latest-panel-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

/* Dark mode services tag */
[data-bs-theme="dark"] .panel-tag.services {
    background: #3a3a3a;
    color: #c8c9ca;
    border-color: #4a4a4a;
}

/* Hero Animated Slider */
.hero-slider-animated {
    position: relative;
}

.slider-container {
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: white;
    text-align: center;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100%);
}

.slide-content {
    padding: 40px;
    z-index: 2;
}

.slide-icon {
    margin-bottom: 20px;
    animation: slideIconFloat 3s ease-in-out infinite;
}

.slide-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 20px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.slide-stats .badge {
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    transform: scale(1.3);
}

/* Icon Float Animation */
@keyframes slideIconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Slide Entry Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .slider-container {
        height: 280px !important;
    }
    
    .slide-content h3 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slide-icon i {
        font-size: 2.5rem !important;
    }
}

/* Dark Mode Text Visibility Improvements */
[data-bs-theme="dark"] .server-card {
    background: #2d2d2d !important;
    border-color: #404040 !important;
}

[data-bs-theme="dark"] .sidebar-widget {
    background: #2d2d2d !important;
    border-color: #404040 !important;
}

/* Better text visibility in dark mode */
[data-bs-theme="dark"] h1, 
[data-bs-theme="dark"] h2, 
[data-bs-theme="dark"] h3, 
[data-bs-theme="dark"] h4, 
[data-bs-theme="dark"] h5, 
[data-bs-theme="dark"] h6 {
    color: #ffffff !important;
}

[data-bs-theme="dark"] p,
[data-bs-theme="dark"] span:not(.badge),
[data-bs-theme="dark"] small {
    color: #adb5bd !important;
}

/* Form controls in dark mode */
[data-bs-theme="dark"] .form-control {
    background: var(--bg-tertiary) !important;
    border-color: var(--border-color) !important;
    color: var(--text-primary) !important;
}

[data-bs-theme="dark"] .form-control:focus {
    background: var(--bg-tertiary) !important;
    border-color: var(--primary-color) !important;
    color: var(--text-primary) !important;
}

[data-bs-theme="dark"] .form-control::placeholder {
    color: var(--text-secondary) !important;
}

/* Sosyal Medya Platform Animasyonları */
.social-platforms {
    padding: 2rem 0;
}

.platform-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.platform-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.platform-icon:hover::before {
    transform: translateX(100%) rotate(45deg);
}

.platform-icon i {
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.platform-icon:hover {
    transform: translateY(-10px) scale(1.1);
}

.platform-icon:hover i {
    animation: platformPulse 0.6s ease;
}

/* Platform Renkleri */
.platform-icon.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    animation: instagramFloat 3s ease-in-out infinite;
}

.platform-icon.tiktok {
    background: linear-gradient(45deg, #FF0050, #00F2EA);
    animation: tiktokFloat 3s ease-in-out infinite 0.5s;
}

.platform-icon.youtube {
    background: linear-gradient(45deg, #FF0000, #CC0000);
    animation: youtubeFloat 3s ease-in-out infinite 1s;
}

.platform-icon.twitter {
    background: linear-gradient(45deg, #1DA1F2, #0E76A8);
    animation: twitterFloat 3s ease-in-out infinite 1.5s;
}

/* Hover Efektleri */
.platform-icon:hover {
    animation-play-state: paused;
}

.platform-icon.instagram:hover {
    box-shadow: 0 15px 50px rgba(225, 48, 108, 0.5);
}

.platform-icon.tiktok:hover {
    box-shadow: 0 15px 50px rgba(255, 0, 80, 0.5);
}

.platform-icon.youtube:hover {
    box-shadow: 0 15px 50px rgba(255, 0, 0, 0.5);
}

.platform-icon.twitter:hover {
    box-shadow: 0 15px 50px rgba(29, 161, 242, 0.5);
}

/* Animasyonlar */
@keyframes instagramFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes tiktokFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-3deg); }
}

@keyframes youtubeFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(2deg); }
}

@keyframes twitterFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(-2deg); }
}

@keyframes platformPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Platform Hover Bilgileri */
.platform-icon::after {
    content: attr(data-platform);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    letter-spacing: 1px;
}

.platform-icon:hover::after {
    opacity: 1;
    bottom: -30px;
}

/* Responsive */
@media (max-width: 768px) {
    .platform-icon {
        width: 60px;
        height: 60px;
    }
    
    .platform-icon i {
        font-size: 1.8rem;
    }
}

/* Panel Icon Animasyonları */
.panel-icon-animated {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.panel-icon-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.panel-icon-animated:hover::before {
    transform: translateX(100%) rotate(45deg);
}

.panel-icon-animated:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4) !important;
}

.panel-icon-animated i {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.panel-icon-animated:hover i {
    animation: iconBounce 0.6s ease;
    transform: scale(1.1);
}

@keyframes iconBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) scale(1.1);
    }
    40% {
        transform: translateY(-10px) scale(1.2);
    }
    60% {
        transform: translateY(-5px) scale(1.15);
    }
}

/* Panel Card Hover Efekti */
.server-card:hover .panel-icon-animated {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;
}

/* Panel Icons Loading Animation */
.panel-icon-animated {
    animation: panelIconsFloat 4s ease-in-out infinite;
}

.panel-icon-animated:nth-child(even) {
    animation-delay: 2s;
}

@keyframes panelIconsFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* ===== MODERN FOOTER STYLES ===== */
.modern-footer {
    background: linear-gradient(135deg, 
        #1a1a1a 0%, 
        #2d2d2d 25%, 
        #1e1e1e 50%, 
        #262626 75%, 
        #1a1a1a 100%);
    color: #ffffff;
    position: relative;
    margin-top: 50px;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(67, 233, 123, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-main {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

/* Footer Logo */
.footer-logo .brand-text {
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 0;
}

.brand-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 5px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 20px 0;
    font-size: 0.95rem;
}

/* Widget Titles */
.widget-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 1px;
}

.widget-title i {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Newsletter */
.newsletter-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
}

.newsletter-form .input-group {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-form .form-control {
    border: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 20px;
    border-radius: 25px 0 0 25px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    box-shadow: none;
    border: none;
}

.btn-gradient {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    border-radius: 0 25px 25px 0;
    padding: 12px 20px;
    color: white;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: linear-gradient(45deg, #764ba2, #667eea);
    transform: scale(1.05);
    color: white;
}

/* Footer Stats */
.footer-stats {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #667eea, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    padding: 5px 0;
    border-radius: 5px;
}

.footer-links a:hover {
    color: #667eea;
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.05);
    padding-left: 10px;
}

.footer-links a i {
    width: 20px;
    color: #667eea;
}

/* Platform Links */
.footer-platforms {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.platform-link {
    display: flex;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.platform-link .platform-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1.2rem;
}

.platform-link.instagram .platform-icon {
    background: linear-gradient(45deg, #405DE6, #C13584);
}

.platform-link.tiktok .platform-icon {
    background: linear-gradient(45deg, #FF0050, #00F2EA);
}

.platform-link.youtube .platform-icon {
    background: linear-gradient(45deg, #FF0000, #CC0000);
}

.platform-link.twitter .platform-icon {
    background: linear-gradient(45deg, #1DA1F2, #0E76A8);
}

.platform-name {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.platform-count {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(3px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1rem;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Social Media */
.social-title {
    color: white;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.social-link:hover::before {
    transform: translateX(100%);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-link.facebook {
    background: linear-gradient(45deg, #1877F2, #1877F2);
    color: white;
}

.social-link.twitter {
    background: linear-gradient(45deg, #1DA1F2, #1DA1F2);
    color: white;
}

.social-link.instagram {
    background: linear-gradient(45deg, #405DE6, #C13584, #E1306C);
    color: white;
}

.social-link.youtube {
    background: linear-gradient(45deg, #FF0000, #CC0000);
    color: white;
}

.social-link.telegram {
    background: linear-gradient(45deg, #0088CC, #0088CC);
    color: white;
}

/* Footer Wave */
.footer-wave {
    position: relative;
    margin-top: -1px;
}

.footer-wave svg {
    width: 100%;
    height: 60px;
    fill: var(--bg-primary);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.copyright-sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-top: 5px;
}

/* Security Badges */
.security-badges {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.badge-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.badge-item i {
    color: #4CAF50;
}

/* Footer Bottom Links */
.footer-bottom-links {
    text-align: right;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #667eea;
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 8px;
}

/* Back to Top Button */
.btn-back-to-top {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-top: 10px;
}

.btn-back-to-top:hover {
    background: linear-gradient(45deg, #764ba2, #667eea);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    z-index: 9999;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-platforms {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .platform-link {
        flex: 1;
        min-width: calc(50% - 4px);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .security-badges {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .footer-bottom-links {
        text-align: center;
        margin-top: 10px;
    }
    
    .footer-bottom-right {
        text-align: center;
        margin-top: 20px;
    }
}

/* Panel List Page Styles */
.server-card {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.server-card:hover {
    border-left-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.panel-icon-animated {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.panel-icon-animated:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Sidebar Widgets for Panels Page */
.sidebar-widget {
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-item:hover {
    background: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    transform: translateX(5px);
}

.latest-panel-item {
    transition: all 0.3s ease;
}

.latest-panel-item:hover {
    transform: translateX(5px);
    background: var(--bg-secondary) !important;
}

/* Badge Colors */
.badge.bg-purple {
    background-color: #6f42c1 !important;
}

/* Panel List Responsive */
@media (max-width: 768px) {
    .server-card .col-md-1 {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .server-card .col-md-3:last-child {
        text-align: center !important;
        margin-top: 1rem;
    }
    
    .panel-icon-animated {
        width: 60px !important;
        height: 60px !important;
    }
    
    .server-card {
        padding: 1rem !important;
    }
    
    .sidebar-widget {
        margin-bottom: 2rem !important;
    }
}

/* Vote Panel Function */
.btn-vote {
    position: relative;
    overflow: hidden;
}

.btn-vote:hover {
    animation: voteButtonPulse 0.3s ease;
}

@keyframes voteButtonPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
} 

/* ============== SLIDER STYLES ============== */
.carousel-item {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slider-overlay {
    background: rgba(0,0,0,0.4);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 0 20px;
}

.slider-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.slider-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.slider-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    border: 2px solid transparent;
}

.carousel-indicators .active {
    background-color: white;
}

/* ============== NOTIFICATION STYLES ============== */
.notification-dropdown {
    max-height: 400px;
    overflow-y: auto;
    width: 320px;
}

.notification-item {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    transition: background 0.3s;
    display: flex;
    align-items: flex-start;
}

.notification-item:hover {
    background: #f8f9fa;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.notification-icon.info { 
    background: #e3f2fd; 
    color: #1976d2; 
}

.notification-icon.success { 
    background: #e8f5e8; 
    color: #388e3c; 
}

.notification-icon.warning { 
    background: #fff3e0; 
    color: #f57c00; 
}

.notification-icon.danger { 
    background: #ffebee; 
    color: #d32f2f; 
}

.notification-count {
    font-size: 0.75rem;
    min-width: 18px;
    height: 18px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notifications-list {
    max-height: 300px;
    overflow-y: auto;
}

.notification-time {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 4px;
}

/* ============== AD SPACES STYLES ============== */
.ad-banner {
    margin: 20px 0;
    text-align: center;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ad-banner:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.ad-banner img {
    max-width: 100%;
    height: auto;
    display: block;
}

.ad-banner.header-banner {
    margin: 0;
    border-radius: 0;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
}

.ad-banner.sidebar-banner {
    margin: 20px 0;
    max-width: 300px;
}

.ad-banner.footer-banner {
    margin: 30px 0;
    background: var(--bg-secondary);
}

.ad-content {
    padding: 20px;
}

.ad-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.ad-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ============== RESPONSIVE STYLES ============== */
@media (max-width: 768px) {
    .slider-content h2 { 
        font-size: 2rem; 
    }
    
    .slider-content h4 { 
        font-size: 1.2rem; 
    }
    
    .carousel-item { 
        height: 400px; 
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .notification-dropdown {
        width: 280px;
    }
    
    .ad-banner.sidebar-banner {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .slider-content h2 { 
        font-size: 1.5rem; 
    }
    
    .slider-content h4 { 
        font-size: 1rem; 
    }
    
    .carousel-item { 
        height: 300px; 
    }
    
    .slider-content {
        padding: 0 15px;
    }
    
    .notification-dropdown {
        width: 100%;
        max-width: 300px;
    }
}

/* ============== DARK THEME ADAPTATIONS ============== */
[data-bs-theme="dark"] .notification-item {
    border-bottom-color: #495057;
}

[data-bs-theme="dark"] .notification-item:hover {
    background: #495057;
}

[data-bs-theme="dark"] .ad-banner {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

[data-bs-theme="dark"] .ad-title {
    color: var(--text-primary);
}

[data-bs-theme="dark"] .ad-description {
    color: var(--text-secondary);
}

/* ============== PAGINATION STYLES ============== */
.pagination {
    gap: 0.5rem;
    margin-bottom: 0;
}

.pagination .page-link {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    color: #6c757d;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
}

.pagination .page-link:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
    color: #495057;
    transform: translateY(-1px);
    text-decoration: none;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.pagination .page-item.active .page-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    border-radius: 8px;
}

@media (max-width: 768px) {
    .pagination {
        gap: 0.25rem;
    }
    
    .pagination .page-link {
        padding: 0.375rem 0.5rem;
        font-size: 0.875rem;
    }
    
    /* Mobilde sadece önemli sayfaları göster */
    .pagination .page-item:not(.active) {
        display: none;
    }
    
    .pagination .page-item.active,
    .pagination .page-item:first-child,
    .pagination .page-item:last-child,
    .pagination .page-item:nth-child(2),
    .pagination .page-item:nth-last-child(2) {
        display: block;
    }
}

[data-bs-theme="dark"] .pagination .page-link {
    background-color: var(--bg-secondary);
    border-color: var(--border-color);
    color: var(--text-secondary);
}

[data-bs-theme="dark"] .pagination .page-link:hover {
    background-color: var(--bg-tertiary);
    border-color: var(--border-light);
    color: var(--text-primary);
}

/* ============== ENHANCED PANEL CARDS ============== */
.panel-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: var(--transition);
    overflow: hidden;
    margin-bottom: 20px;
}

.panel-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 123, 255, 0.2);
}

.panel-content {
    padding: 20px;
}

.panel-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #007bff, #6f42c1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.panel-logo i {
    font-size: 28px;
    color: white;
}

.panel-card:hover .panel-logo {
    transform: scale(1.05);
}

.panel-title {
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin: 0;
}

.panel-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.panel-vip-badge {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.panel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.panel-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: var(--font-weight-medium);
    transition: var(--transition);
}

.panel-tag i {
    font-size: 11px;
}

.panel-tag.category-instagram {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
    border: 1px solid rgba(225, 48, 108, 0.2);
}

.panel-tag.category-tiktok {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.panel-tag.category-youtube {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.panel-tag.members {
    background: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
    border: 1px solid rgba(23, 162, 184, 0.2);
}

.panel-tag.services {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.panel-tag.api {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    border: 1px solid rgba(108, 117, 125, 0.2);
}

.panel-date {
    color: var(--text-secondary);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.panel-date i {
    font-size: 12px;
    opacity: 0.7;
}

.panel-rating {
    text-align: right;
}

.rating-stars {
    display: flex;
    justify-content: flex-end;
    gap: 2px;
    margin-bottom: 4px;
}

.rating-stars i {
    font-size: 16px;
    color: #ffc107;
}

.rating-stars i.empty {
    color: #e9ecef;
}

.panel-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.panel-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.panel-btn i {
    font-size: 12px;
}

.panel-btn.btn-website {
    background: #007bff;
    color: white;
}

.panel-btn.btn-website:hover {
    background: #0056b3;
    color: white;
    transform: translateY(-1px);
}

.panel-btn.btn-details {
    background: #17a2b8;
    color: white;
}

.panel-btn.btn-details:hover {
    background: #138496;
    color: white;
    transform: translateY(-1px);
}

.panel-btn.btn-vote {
    background: #dc3545;
    color: white;
    position: relative;
}

.panel-btn.btn-vote:hover {
    background: #c82333;
    color: white;
    transform: translateY(-1px);
}

.vote-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    margin-left: 5px;
}

/* Dark Theme Panel Overrides */
[data-bs-theme="dark"] .panel-card {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

[data-bs-theme="dark"] .panel-card:hover {
    border-color: rgba(13, 110, 253, 0.3);
}

[data-bs-theme="dark"] .panel-title {
    color: var(--text-primary);
}

[data-bs-theme="dark"] .panel-description {
    color: var(--text-secondary);
}

[data-bs-theme="dark"] .panel-date {
    color: var(--text-muted);
}

[data-bs-theme="dark"] .rating-stars i.empty {
    color: #495057;
}

[data-bs-theme="dark"] .panel-tag.category-instagram {
    background: rgba(225, 48, 108, 0.2);
    border-color: rgba(225, 48, 108, 0.3);
}

[data-bs-theme="dark"] .panel-tag.category-tiktok {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

[data-bs-theme="dark"] .panel-tag.category-youtube {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.3);
}

[data-bs-theme="dark"] .panel-tag.members {
    background: rgba(23, 162, 184, 0.2);
    border-color: rgba(23, 162, 184, 0.3);
}

[data-bs-theme="dark"] .panel-tag.services {
    background: rgba(40, 167, 69, 0.2);
    border-color: rgba(40, 167, 69, 0.3);
}

[data-bs-theme="dark"] .panel-tag.api {
    background: rgba(108, 117, 125, 0.2);
    border-color: rgba(108, 117, 125, 0.3);
}

/* Mobile Responsive for Enhanced Panels */
@media (max-width: 768px) {
    .panel-content {
        padding: 15px;
    }
    
    .panel-logo {
        width: 60px;
        height: 60px;
    }
    
    .panel-logo i {
        font-size: 24px;
    }
    
    .panel-title {
        font-size: 18px;
    }
    
    .panel-actions {
        justify-content: center;
        margin-top: 15px;
    }
    
    .panel-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .rating-stars {
        justify-content: center;
    }
    
    .panel-rating {
        text-align: center;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .panel-tags {
        justify-content: center;
    }
    
    .panel-date {
        justify-content: center;
        text-align: center;
    }
    
    .panel-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .panel-btn {
        width: 100%;
        justify-content: center;
        max-width: 200px;
    }
}

/* Hero Section Animations */
.hero-section {
    position: relative;
    overflow: hidden;
}

/* Floating Background Icons */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icons {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-icon.instagram {
    top: 20%;
    left: 10%;
    color: #E4405F;
    animation-delay: 0s;
}

.floating-icon.tiktok {
    top: 40%;
    right: 15%;
    color: #FF0050;
    animation-delay: 1s;
}

.floating-icon.youtube {
    top: 60%;
    left: 5%;
    color: #FF0000;
    animation-delay: 2s;
}

.floating-icon.twitter {
    top: 80%;
    right: 20%;
    color: #1DA1F2;
    animation-delay: 3s;
}

.floating-icon.facebook {
    top: 30%;
    left: 80%;
    color: #1877F2;
    animation-delay: 4s;
}

.floating-icon.heart {
    top: 70%;
    right: 10%;
    color: #FF3040;
    animation-delay: 5s;
}

.floating-icon.like {
    top: 10%;
    right: 30%;
    color: #4267B2;
    animation-delay: 0.5s;
}

.floating-icon.share {
    top: 90%;
    left: 30%;
    color: #25D366;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.3;
    }
}

/* Hero Title Animation */
.hero-title-animated {
    animation: heroFadeInUp 1.5s ease;
}

.text-gradient {
    background: linear-gradient(45deg, #007bff, #0056b3, #17a2b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle-animated {
    animation: heroFadeInUp 1.5s ease 0.3s both;
}

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

/* Animated Hero Card */
.hero-card-animated {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

/* Pulse Rings */
.pulse-ring, .pulse-ring-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(0, 123, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s linear infinite;
}

.pulse-ring-2 {
    animation-delay: 1s;
    border-color: rgba(23, 162, 184, 0.3);
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Hero Icon Container */
.hero-icon-container {
    position: relative;
    display: inline-block;
}

.hero-main-icon {
    font-size: 4rem;
    animation: iconRotate 4s linear infinite;
    position: relative;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes iconRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes glow {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Platform Showcase */
.platform-showcase {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    margin: 5px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: platformBounce 2s infinite;
}

.platform-item:nth-child(1) { animation-delay: 0s; }
.platform-item:nth-child(2) { animation-delay: 0.2s; }
.platform-item:nth-child(3) { animation-delay: 0.4s; }
.platform-item:nth-child(4) { animation-delay: 0.6s; }

.platform-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.platform-item[data-platform="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.platform-item[data-platform="tiktok"]:hover {
    background: linear-gradient(45deg, #ff0050, #000000);
}

.platform-item[data-platform="youtube"]:hover {
    background: linear-gradient(45deg, #ff0000, #cc0000);
}

.platform-item[data-platform="twitter"]:hover {
    background: linear-gradient(45deg, #1da1f2, #0d8bd9);
}

.platform-item i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.platform-item span {
    font-size: 0.8rem;
    font-weight: 500;
}

@keyframes platformBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Hero CTA Button */
.hero-cta-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    transition: all 0.3s ease;
}

.hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.hero-cta-btn:hover .btn-shine {
    left: 100%;
}

/* Counter Animation */
.counter {
    font-weight: bold;
}

/* Particles Effect */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.particle:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 40%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 60%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 80%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    left: 30%;
    animation-delay: 1s;
}

@keyframes particleFloat {
    0% {
        top: 100%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: -10%;
        opacity: 0;
    }
}

/* Animate on Scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}