/*
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: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: linear-gradient(135deg, #151b4d 0%, #1a237e 100%);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 30px;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.header-logo {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.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: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-menu li {
    margin: 0;
}

.header-menu a {
    text-decoration: none;
    color: #ffffff;
    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;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.header-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e74c3c 0%, #f39c12 100%);
    transition: left 0.3s ease;
    z-index: -1;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.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, #f39c12 0%, #e74c3c 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: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(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: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #e74c3c #f8f9fa;
}

.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: #e74c3c;
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: #c0392b;
}

/* 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;
    display: none; /* Gizli - gerektiğinde kaldırılabilir */
}

.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;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.brand-logo {
    max-width: 120px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.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;
}



/* Bonuslar Section */
.bonuslar-section {
    margin-bottom: 20px;
}

.bonus-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bonus-item {
    width: 100%;
    line-height: 0;
}

.bonus-item img {
    width: 100%;
    height: auto;
    display: block;
}





/* Footer - Professional Design */
.footer {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 40px 0 20px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    flex: 0 0 200px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
    filter: brightness(1.1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer-nav {
    flex: 1;
    min-width: 200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.footer-nav h4 {
    color: #fff;
    font-size: 16px;
    margin: 0 0 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-nav a:hover {
    color: #fff;
    transform: translateX(5px);
}

.social-media {
    flex: 0 0 200px;
}

.social-media h4 {
    color: #fff;
    font-size: 16px;
    margin: 0 0 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.copyright {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}
}

.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);
    }
}

/* Stats Animation */
.star-animation {
    animation: starAnimation 1s ease-in-out;
}

/* Brand Box Shimmer */
.brand-box.shimmer-active::before {
    animation: shimmer 1s ease-in-out;
}

/* 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) {
    .header-logo {
        max-width: 120px;
    }
    
    .brand-logo {
        max-width: 100px;
    }
    
    .bonuslar-section {
        padding: 15px;
        margin-bottom: 20px;
    }
    

    
    .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;
    }
}





/* NYCbahis Banner — hard reset for perfect fit */
.nycbahis-banner, .nycbahis-banner * { 
    box-sizing: border-box; 
}

.nycbahis-banner {
    width: 100%;
    margin: 20px 0;
    border-radius: 15px;
    overflow: hidden;                /* taşanı kes */
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
    background: transparent;
    padding: 0;
    line-height: 0;                  /* inline boşluğu kapat */
    font-size: 0;                    /* inline boşluğu tamamen öldür */
}

/* Tüm sarmalayıcıları sıfırla */
.nycbahis-banner > * {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

/* WordPress/Block/figure/picture/a olasılıkları */
.nycbahis-banner figure,
.nycbahis-banner picture,
.nycbahis-banner a {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}

/* Görselin kendisi */
.nycbahis-banner img {
    display: block;                  /* baseline boşluğunu yok et */
    width: 100%;
    height: auto;
    vertical-align: top;             /* bazı temalarda ekstra boşluğu engeller */
    border-radius: inherit;          /* kartla aynı kıvrım */
    transition: transform 0.3s ease;
}

.nycbahis-banner img:hover {
    transform: scale(1.02);
}

/* Eğer sabit yükseklikte kırpma istiyorsan bu sınıfı ekle: .nycbahis-banner.cover */
.nycbahis-banner.cover { 
    height: 300px; 
}        /* ihtiyaca göre */
.nycbahis-banner.cover img { 
    height: 100%; 
    object-fit: cover; 
}

/* Responsive Banner */
@media (max-width: 768px) {
    .nycbahis-banner {
        padding: 0;
        margin: 15px 0;
        line-height: 0;
        font-size: 0;
    }
}

@media (max-width: 480px) {
    .nycbahis-banner {
        padding: 0;
        margin: 10px 0;
        line-height: 0;
        font-size: 0;
    }
}


