/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
    width: 280px;
    background-color: #111111;
    border-right: 1px solid #2a2a2a;
    display: flex;
    flex-direction: column;
    padding: 24px 0;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

/* Logo */
.logo h1 {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

/* Main Navigation */
.main-nav {
    flex: 1;
    margin-bottom: 32px;
}

.main-nav ul,
.bottom-nav ul {
    list-style: none;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    margin: 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-item:hover::before {
    left: 100%;
}

.nav-item:hover {
    background-color: #1a1a1a;
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.nav-item.active {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-left: 3px solid #6366f1;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.nav-item i {
    font-size: 16px;
    margin-right: 12px;
    width: 20px;
    text-align: center;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.nav-item:hover i {
    color: #6366f1;
    transform: scale(1.1);
}

.nav-item.active i {
    color: #6366f1;
    animation: pulse 2s infinite;
}

.nav-item span {
    font-size: 14px;
    font-weight: 600;
    color: #e5e7eb;
    flex: 1;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.nav-item:hover span {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.nav-item.active span {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(99, 102, 241, 0.8);
    font-weight: 700;
}

/* Animations for special effects */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(99, 102, 241, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(99, 102, 241, 0.8), 0 0 30px rgba(99, 102, 241, 0.6);
    }
}

/* Kaito SMART FOLLOW special effect */
.nav-item:first-child span {
    background: linear-gradient(45deg, #6366f1, #8b5cf6, #ec4899);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

.nav-item:first-child:hover span {
    animation: gradientShift 1s ease infinite;
}

/* Cookie Smart Follow special effect */
.nav-item:last-child span {
    background: linear-gradient(45deg, #f59e0b, #ef4444, #10b981);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite reverse;
}

.nav-item:last-child:hover span {
    animation: gradientShift 1s ease infinite reverse;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.nav-item .fas.fa-star-burst {
    margin-left: auto;
    margin-right: 0;
    color: #f59e0b;
    font-size: 12px;
}

.nav-item .fas.fa-external-link-alt {
    margin-left: auto;
    margin-right: 0;
    color: #9ca3af;
    font-size: 12px;
}

/* Alt Navigasyon */
.bottom-nav {
    margin-bottom: 32px;
}

.bottom-nav .nav-item {
    padding: 10px 24px;
}

/* User Profile */
.user-profile {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    border-top: 1px solid #2a2a2a;
    margin-bottom: 16px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.avatar-placeholder {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.user-info {
    flex: 1;
}

.username {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icons i {
    font-size: 12px;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.2s ease;
}

.social-icons i:hover {
    color: #6366f1;
}

/* Smart Card Notice */
.smart-card-notice {
    padding: 12px 24px;
    font-size: 12px;
    color: #6366f1;
    text-align: center;
    background: rgba(99, 102, 241, 0.1);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.smart-card-notice i {
    font-size: 14px;
    color: #6366f1;
}

.smart-card-notice span {
    color: #6366f1;
}

/* Coming Soon Notice */
.coming-soon-notice {
    padding: 12px 24px;
    font-size: 12px;
    color: #10b981;
    text-align: center;
    background: rgba(16, 185, 129, 0.1);
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.coming-soon-notice i {
    font-size: 14px;
    color: #10b981;
}

.coming-soon-notice span {
    color: #10b981;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 280px;
    padding: 32px;
    position: relative;
    background-color: #0a0a0a;
}

/* KAITO Watermark */
.kaito-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: 1;
    letter-spacing: 8px;
}

/* Table Header */
.table-header {
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.table-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.dev-badge {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #fbbf24, #ef4444);
    background-size: 400% 400%;
    animation: gradientShift 4s ease infinite;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    margin-left: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 
        0 0 20px rgba(255, 107, 107, 0.6),
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: inline-block;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

.dev-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.dev-badge:hover::before {
    left: 100%;
}

.dev-badge:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 30px rgba(255, 107, 107, 0.8),
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.dev-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    gap: 0.8rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.dev-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.8s ease;
}

.dev-profile:hover::before {
    left: 100%;
}

.dev-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid #6366f1;
    box-shadow: 
        0 0 15px rgba(99, 102, 241, 0.4),
        0 4px 10px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.dev-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(99, 102, 241, 0.3), transparent);
    animation: rotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dev-avatar:hover::before {
    opacity: 1;
}

.dev-avatar:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
        0 0 25px rgba(99, 102, 241, 0.6),
        0 8px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: #8b5cf6;
}

.dev-link {
    color: #6366f1;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), transparent);
}

.dev-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transition: width 0.3s ease;
}

.dev-link:hover {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(99, 102, 241, 0.8);
    transform: translateY(-1px);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.dev-link:hover::before {
    width: 100%;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Table Container */
.table-container {
    position: relative;
    z-index: 2;
    background-color: #111111;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    overflow: hidden;
}

/* Table Styles */
.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #111111;
}

.leaderboard-table th {
    background-color: #1a1a1a;
    padding: 16px 12px;
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 1px solid #2a2a2a;
    position: relative;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

.leaderboard-table th i {
    margin-left: 6px;
    font-size: 10px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.leaderboard-table th i:hover {
    color: #6366f1;
}

.leaderboard-table td {
    padding: 16px 12px;
    border-bottom: 1px solid #1a1a1a;
    font-size: 14px;
    color: #e5e7eb;
}

.leaderboard-table tr {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.leaderboard-table tr:hover {
    background-color: rgba(99, 102, 241, 0.1);
    transform: scale(1.01);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
    border-radius: 8px;
}

/* User avatar hover effect */
.leaderboard-table tr:hover .avatar-img {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* Username hover effect */
.leaderboard-table tr:hover .user-name .name a {
    color: #6366f1;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

/* Bar animation on hover */
.leaderboard-table tr:hover .bar-container {
    transform: scaleY(1.3);
}

/* Profile Tooltip Styles */
.profile-tooltip {
    position: fixed;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    transform: translateY(-10px);
}

.tooltip-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #6366f1;
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(10px);
    min-width: 200px;
    text-align: center;
}

.tooltip-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #6366f1;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tooltip-header i {
    font-size: 14px;
}

.tooltip-user {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tooltip-user strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.tooltip-user span {
    color: #9ca3af;
    font-size: 12px;
}

/* Tooltip arrow */
.tooltip-content::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #6366f1;
}

/* Rank Stilleri */
.rank-number {
    font-weight: 600;
    color: #9ca3af;
    margin-right: 8px;
}

.gold-crown {
    color: #fbbf24;
    font-size: 14px;
}

.silver-crown {
    color: #9ca3af;
    font-size: 14px;
}

.bronze-crown {
    color: #d97706;
    font-size: 14px;
}

/* Avatar Stilleri */
.user-avatar {
    padding: 8px 12px;
}

.avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #2a2a2a;
    transition: all 0.3s ease;
}

.avatar-img:hover {
    border-color: #6366f1;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Rank 1-3 için özel avatar stilleri */
.rank-1 .avatar-img {
    border-color: #fbbf24;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.rank-2 .avatar-img {
    border-color: #9ca3af;
    box-shadow: 0 0 10px rgba(156, 163, 175, 0.3);
}

.rank-3 .avatar-img {
    border-color: #d97706;
    box-shadow: 0 0 10px rgba(217, 119, 6, 0.3);
}

/* Username */
.user-name .name {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.user-name .name a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.user-name .name a:hover {
    color: #6366f1;
    text-decoration: underline;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
    transform: translateX(2px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-name .handle {
    font-size: 12px;
    color: #9ca3af;
}

/* Mindshare */
.mindshare {
    font-weight: 600;
    color: #10b981;
}

/* VS Bar Styles */
.vs-bar {
    width: 200px;
}

.bar-container {
    display: flex;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #2a2a2a;
    justify-content: center;
    align-items: center;
}

.bar {
    height: 100%;
    transition: width 0.3s ease;
}

.bar.casual {
    background-color: #10b981;
}

.bar.hardcore {
    background-color: #60a5fa;
}

.bar.shitposter {
    background-color: #f59e0b;
}

.bar.curator {
    background-color: #8b5cf6;
}

.bar.copy-pasta {
    background-color: #60a5fa;
}

.bar.creative {
    background-color: #ec4899;
}

/* Smart Followers ve Follow */
.smart-followers,
.follow {
    font-weight: 600;
    color: #e5e7eb;
}

.follow i {
    margin-left: 4px;
    color: #9ca3af;
    font-size: 12px;
}

/* Rank Highlight Stilleri */
.rank-1 {
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.1), transparent);
}

.rank-2 {
    background: linear-gradient(90deg, rgba(156, 163, 175, 0.1), transparent);
}

.rank-3 {
    background: linear-gradient(90deg, rgba(217, 119, 6, 0.1), transparent);
}

.rank-1:hover,
.rank-2:hover,
.rank-3:hover {
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.4));
}

/* Responsive Design */
@media (max-width: 1200px) {
    .sidebar {
        width: 240px;
    }
    
    .main-content {
        margin-left: 240px;
        padding: 24px;
    }
    
    .vs-bar {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 16px;
    }
    
    .main-content {
        margin-left: 0;
        padding: 16px;
    }
    
    .kaito-watermark {
        font-size: 80px;
    }
    
    .table-container {
        overflow-x: auto;
    }
    
    .leaderboard-table {
        min-width: 800px;
    }
}

/* Scrollbar Stilleri */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.sidebar::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: #3a3a3a;
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.leaderboard-table tbody tr {
    animation: fadeIn 0.3s ease forwards;
}

.leaderboard-table tbody tr:nth-child(1) { animation-delay: 0.1s; }
.leaderboard-table tbody tr:nth-child(2) { animation-delay: 0.2s; }
.leaderboard-table tbody tr:nth-child(3) { animation-delay: 0.3s; }
.leaderboard-table tbody tr:nth-child(4) { animation-delay: 0.4s; }
.leaderboard-table tbody tr:nth-child(5) { animation-delay: 0.5s; }
.leaderboard-table tbody tr:nth-child(6) { animation-delay: 0.6s; }
.leaderboard-table tbody tr:nth-child(7) { animation-delay: 0.7s; }
.leaderboard-table tbody tr:nth-child(8) { animation-delay: 0.8s; }

/* Hover Efektleri */
.nav-item {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item:hover {
    transform: translateX(4px);
}

.bar-container {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bar-container:hover {
    transform: scaleY(1.2);
}

/* Focus Stilleri */
.nav-item:focus,
.leaderboard-table th i:focus {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Selection Stilleri */
::selection {
    background-color: #6366f1;
    color: #ffffff;
}

::-moz-selection {
    background-color: #6366f1;
    color: #ffffff;
}

/* Cookie Smart Follow Sayfası Stilleri */
.content-container {
    position: relative;
    z-index: 2;
}

.content-card {
    background-color: #111111;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    overflow: hidden;
    margin-bottom: 24px;
}

.card-header {
    background-color: #1a1a1a;
    padding: 24px;
    border-bottom: 1px solid #2a2a2a;
}

.card-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.card-header p {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

.card-content {
    padding: 24px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    border-color: #6366f1;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
}

.feature-item i {
    font-size: 32px;
    color: #6366f1;
    margin-bottom: 12px;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

/* Link Stilleri */
.nav-item a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    width: 100%;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.nav-item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-item a:hover::before {
    left: 100%;
}

.nav-item a:hover {
    color: #6366f1;
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.nav-item.active a {
    color: #ffffff;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.nav-item a:hover i {
    color: #6366f1;
    transform: scale(1.1);
}

.nav-item a:hover span {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.nav-item.active a span {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(99, 102, 241, 0.8);
    font-weight: 700;
} 

/* Coming Soon Sayfası Stilleri */
.coming-soon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    position: relative;
    z-index: 2;
}

.coming-soon-card {
    background: linear-gradient(135deg, #111111, #1a1a1a);
    border-radius: 20px;
    border: 1px solid #2a2a2a;
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.8s ease;
}

.coming-soon-card:hover::before {
    left: 100%;
}

.coming-soon-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 30px rgba(99, 102, 241, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.3);
}

.coming-soon-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: rotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coming-soon-icon:hover::before {
    opacity: 1;
}

.coming-soon-icon i {
    font-size: 48px;
    color: #ffffff;
    z-index: 1;
    animation: pulse 2s infinite;
}

.coming-soon-title {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6, #ec4899);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    letter-spacing: -0.02em;
}

.coming-soon-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #9ca3af;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.coming-soon-description {
    font-size: 16px;
    color: #e5e7eb;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.coming-soon-features .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
    min-width: 120px;
}

.coming-soon-features .feature-item:hover {
    transform: translateY(-5px);
    border-color: #6366f1;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.2);
    background: rgba(99, 102, 241, 0.1);
}

.coming-soon-features .feature-item i {
    font-size: 24px;
    color: #6366f1;
    margin-bottom: 5px;
}

.coming-soon-features .feature-item span {
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    text-align: center;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 
        0 4px 15px rgba(99, 102, 241, 0.3),
        0 0 20px rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
}

.back-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.back-button:hover::before {
    left: 100%;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(99, 102, 241, 0.4),
        0 0 30px rgba(99, 102, 241, 0.2);
    color: #ffffff;
}

.back-button i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.back-button:hover i {
    transform: translateX(-3px);
}

/* Responsive Coming Soon */
@media (max-width: 768px) {
    .coming-soon-card {
        padding: 40px 20px;
        margin: 20px;
    }
    
    .coming-soon-title {
        font-size: 36px;
    }
    
    .coming-soon-subtitle {
        font-size: 20px;
    }
    
    .coming-soon-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .coming-soon-features .feature-item {
        min-width: 150px;
    }
    
    .coming-soon-icon {
        width: 100px;
        height: 100px;
    }
    
    .coming-soon-icon i {
        font-size: 36px;
    }
}

/* Geri Dönüş Oranı Sütunu Stilleri */
.return-rate {
    font-weight: 600;
    color: #10b981;
    text-align: center;
    font-size: 14px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.return-rate::before {
    content: '';
    width: 40px;
    height: 20px;
    background: linear-gradient(90deg, #10b981 0%, #34d399 50%, #6ee7b7 100%);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.return-rate::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid #ffffff;
    margin-left: -8px;
    margin-top: -2px;
}

.rank-1 .return-rate {
    color: #fbbf24;
    font-weight: 700;
}

.rank-1 .return-rate::before {
    background: linear-gradient(90deg, #fbbf24 0%, #fcd34d 50%, #fde68a 100%);
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
}

.rank-2 .return-rate {
    color: #9ca3af;
    font-weight: 700;
}

.rank-2 .return-rate::before {
    background: linear-gradient(90deg, #9ca3af 0%, #d1d5db 50%, #e5e7eb 100%);
    box-shadow: 0 2px 8px rgba(156, 163, 175, 0.4);
}

.rank-3 .return-rate {
    color: #d97706;
    font-weight: 700;
}

.rank-3 .return-rate::before {
    background: linear-gradient(90deg, #d97706 0%, #ea580c 50%, #fb923c 100%);
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.4);
}

.return-rate:hover {
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.return-rate:hover::before {
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.5);
    transform: scale(1.1);
}

.rank-1 .return-rate:hover::before {
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.6);
}

.rank-2 .return-rate:hover::before {
    box-shadow: 0 4px 12px rgba(156, 163, 175, 0.6);
}

.rank-3 .return-rate:hover::before {
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.6);
} 