/*
Theme Name: NYCbahis Pro
Description: NYCbahis Premium WordPress Theme - Modern ve Profesyonel Bahis Sitesi Teması
Author: NYCbahis Team
Version: 2.1.0
Text Domain: nycbahis-pro
*/

/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Stilleri - Daha Profesyonel */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(231, 76, 60, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 30px;
}

.logo a {
    text-decoration: none;
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #e74c3c 0%, #f39c12 50%, #e67e22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    letter-spacing: -1px;
    position: relative;
}

.logo a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo a:hover::after {
    transform: scaleX(1);
}

/* Ana Menü - Daha Profesyonel */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.header-menu li {
    margin: 0;
}

.header-menu a {
    text-decoration: none;
    color: #34495e;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.header-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    transition: left 0.3s ease;
    z-index: -1;
}

.header-menu a:hover::before {
    left: 0;
}

.header-menu a:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.header-menu a:active {
    transform: translateY(0);
}

/* CTA Button - Daha Profesyonel */
.header-cta {
    flex-shrink: 0;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e74c3c 0%, #f39c12 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c0392b, #e67e22);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-icon {
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cta-text {
    font-size: 15px;
    font-weight: 700;
}

/* Top Bar - Daha Profesyonel */
.top-bar {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 10px 0;
    font-size: 13px;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.welcome-text {
    font-weight: 600;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.current-time {
    margin-right: 20px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.status-indicator {
    font-weight: 600;
    color: #27ae60;
    background: rgba(39, 174, 96, 0.1);
    padding: 4px 12px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(39, 174, 96, 0.2);
}

/* Logo Badge - Daha Profesyonel */
.logo-badge {
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    color: white;
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
    position: relative;
    top: -2px;
}

/* CTA Action Button */
.cta-action {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-icon {
    font-size: 16px;
}

.update-time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-left: 10px;
}

/* Menu Icons */
.header-menu a {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* CTA Kutusu */
.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-box .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cta-box .left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-box .icon {
    font-size: 40px;
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.cta-box h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-box .description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.cta-box .description a {
    color: #f39c12;
    font-weight: 700;
    text-decoration: none;
}

.cta-box .right a {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-box .right a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Ana İçerik */
.site-main {
    padding: 40px 0;
}

.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.content-area {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.entry-title {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.entry-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
}

.entry-content h2 {
    font-size: 28px;
    color: #e74c3c;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #f39c12;
}

.entry-content h3 {
    font-size: 22px;
    color: #f39c12;
    margin: 30px 0 15px;
}

.entry-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.entry-content li {
    margin-bottom: 10px;
    color: #34495e;
}

/* Tablo Stilleri */
.table-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.table-container table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
}

.table-container th {
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table-container td {
    padding: 15px;
    border-bottom: 1px solid #ecf0f1;
    transition: background 0.3s ease;
}

.table-container tr:hover {
    background: rgba(231, 76, 60, 0.05);
}

.table-container a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.table-container a:hover {
    color: #c0392b;
}

.status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.status.active {
    background: #27ae60;
    color: white;
}

.status.blocked {
    background: #e74c3c;
    color: white;
}

.status.waiting {
    background: #f39c12;
    color: white;
}

/* Sidebar - Enhanced */
.sidebar {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Brand Box - Enhanced */
.brand-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.brand-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

.brand-box .logo {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.brand-box .logo a {
    text-decoration: none;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-box .offer h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.brand-box .details ul {
    list-style: none;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.brand-box .details li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 14px;
}

.brand-box .details li:last-child {
    border-bottom: none;
}

.brand-box .details strong {
    color: #f39c12;
    font-weight: 700;
}

.brand-box .cta .button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.brand-box .cta .button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.brand-box .cta .text {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 12px;
    position: relative;
    z-index: 1;
}

/* Premium Partners */
.premium-partners {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(231, 76, 60, 0.1);
}

.premium-partners h3 {
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 10px;
}

.partner-sites {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.partner-site {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(231, 76, 60, 0.1);
}

.partner-site:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.15);
    border-color: rgba(231, 76, 60, 0.3);
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.partner-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.partner-image {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid rgba(231, 76, 60, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.partner-image:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: #e74c3c;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.partner-image.pulse {
    animation: partnerImagePulse 0.3s ease;
}

.partner-info h4 {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.partner-info p {
    color: #6c757d;
    font-size: 13px;
    margin: 0;
    font-weight: 500;
}

.partner-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stars {
    color: #f39c12;
    font-size: 14px;
    letter-spacing: 2px;
}

.rating-text {
    color: #27ae60;
    font-size: 12px;
    font-weight: 700;
    background: rgba(39, 174, 96, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
}

/* Quick Stats */
.quick-stats {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 15px;
    padding: 25px;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.quick-stats h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-item {
    text-align: center;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.stat-number {
    display: block;
    font-size: 20px;
    font-weight: 900;
    color: #f39c12;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Live Support */
.live-support {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 15px;
    padding: 25px;
    color: white;
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.2);
    position: relative;
    overflow: hidden;
}

.live-support::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 4s infinite;
    pointer-events: none;
}

.live-support h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.support-info {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.support-status, .support-time, .support-response {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
    animation: pulse 2s infinite;
}

.status-dot.online {
    background: #2ecc71;
}

.time-icon, .response-icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.support-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    display: block;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.support-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Recommended Pages - Enhanced */
.recommended-pages {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.1);
}

.recommended-pages h3 {
    color: #e74c3c;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #f39c12;
    padding-bottom: 10px;
    font-weight: 700;
}

.recommended-pages ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.recommended-pages li {
    margin-bottom: 8px;
}

.recommended-pages a {
    color: #34495e;
    text-decoration: none;
    padding: 12px 15px;
    display: block;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(231, 76, 60, 0.1);
}

.recommended-pages a:hover {
    background: rgba(231, 76, 60, 0.1);
    border-left-color: #e74c3c;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.15);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer .logo a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
}

.footer .menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.footer .menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .menu a:hover {
    color: #f39c12;
}

.footer .copy {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer .copy a {
    color: #f39c12;
    text-decoration: none;
}

/* Mobil Menü Toggle - Daha Profesyonel */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #34495e;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    transform: scale(1.1);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.menu-icon {
    transition: transform 0.3s ease;
    display: inline-block;
}

.menu-icon.active {
    transform: rotate(90deg);
}

/* Header Menu Open State */
.header.menu-open {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Ek Profesyonel Efektler */
.header-menu a {
    position: relative;
}

.header-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.header-menu a:hover::after {
    width: 80%;
}

/* Hover Efektleri Geliştirme */
.cta-button, .header-menu a {
    position: relative;
    overflow: hidden;
}

.cta-button::after, .header-menu a::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;
}

.cta-button:hover::after, .header-menu a:hover::before {
    left: 100%;
}

/* Ek Animasyonlar */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 0.3s ease;
}

.clicked {
    transform: scale(0.95);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(45deg, #e74c3c, #f39c12);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 10000;
    max-width: 300px;
}

.notification.show {
    transform: translateX(0);
}

.notification-info {
    border-left: 4px solid #3498db;
}

.notification-error {
    border-left: 4px solid #e74c3c;
}

.notification-success {
    border-left: 4px solid #27ae60;
}

.notification-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    margin-left: 10px;
    color: #666;
}

.error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 5px rgba(231, 76, 60, 0.3) !important;
}

.sort-asc::after {
    content: ' ▲';
    color: #e74c3c;
}

.sort-desc::after {
    content: ' ▼';
    color: #e74c3c;
}

/* Responsive - Daha Profesyonel */
@media (max-width: 1024px) {
    .header-menu {
        gap: 3px;
        padding: 6px;
    }
    
    .header-menu a {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        padding: 15px 0;
        position: relative;
    }
    
    .main-navigation {
        order: 3;
        width: 100%;
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }
    
    .header-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 0 0 20px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        padding: 20px;
        gap: 10px;
        z-index: 1000;
        margin-top: 10px;
    }
    
    .header-menu.active {
        display: flex;
    }
    
    .header-menu a {
        padding: 15px 20px;
        border-radius: 10px;
        font-size: 16px;
        justify-content: center;
        background: rgba(255, 255, 255, 0.5);
        border: 1px solid rgba(231, 76, 60, 0.1);
    }
    
    .header-menu a:hover {
        transform: translateX(5px);
        background: rgba(231, 76, 60, 0.1);
        border-color: rgba(231, 76, 60, 0.3);
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .current-time {
        margin-right: 0;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    /* Responsive Sidebar */
    .sidebar {
        position: static;
        margin-top: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .stat-item {
        padding: 12px 8px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .partner-site {
        padding: 12px;
    }
    
    .partner-icon {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .partner-info h4 {
        font-size: 15px;
    }
    
    .partner-info p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 10px 0;
    }
    
    .logo a {
        font-size: 28px;
    }
    
    .header-menu {
        padding: 15px;
    }
    
    .header-menu a {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Enhanced Animations for Sidebar */
@keyframes starAnimation {
    0% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(90deg); }
    50% { transform: scale(1.1) rotate(180deg); }
    75% { transform: scale(1.2) rotate(270deg); }
    100% { transform: scale(1) rotate(360deg); }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulse {
    0% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }
    70% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }
    100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

@keyframes partnerHover {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.02); }
    100% { transform: translateY(0) scale(1); }
}

@keyframes partnerImagePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Partner Site Enhanced Effects */
.partner-site.hovered {
    animation: partnerHover 0.6s ease;
}

.partner-site.clicked {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.partner-icon.pulse {
    animation: pulse 1s infinite;
}

/* Stats Animation */
.star-animation {
    animation: starAnimation 1s ease-in-out;
}

/* Brand Box Shimmer */
.brand-box.shimmer-active::before {
    animation: shimmer 1s ease-in-out;
}

/* Stars Hover Effect */
.stars.stars-hover {
    color: #f39c12;
    text-shadow: 0 0 10px rgba(243, 156, 18, 0.5);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Enhanced Partner Site Styling */
.partner-site {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.partner-site::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.1), transparent);
    transition: left 0.5s ease;
}

.partner-site:hover::before {
    left: 100%;
}

/* Live Support Enhanced */
.live-support .status-dot {
    position: relative;
}

.live-support .status-dot::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    z-index: -1;
    animation: pulse 2s infinite;
}

/* Quick Stats Enhanced */
.stat-item {
    position: relative;
    overflow: hidden;
}

.stat-item::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;
}

.stat-item:hover::before {
    left: 100%;
}

/* Recommended Pages Enhanced */
.recommended-pages a {
    position: relative;
    overflow: hidden;
}

.recommended-pages a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.1), transparent);
    transition: left 0.5s ease;
}

.recommended-pages a:hover::before {
    left: 100%;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .partner-site:hover {
        transform: none;
    }
    
    .partner-site.hovered {
        animation: none;
    }
    
    .stat-item:hover {
        transform: none;
    }
    
    .recommended-pages a:hover {
        transform: translateX(3px);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-logo {
        flex-direction: column;
        text-align: center;
    }
    
    .partner-rating {
        justify-content: center;
        margin-top: 10px;
    }
}
