/*

Theme Name: NYCbahis Pro

Description: NYCbahis 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;

    }

}











/* Blog Sayfası Stilleri */
.blog-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    text-align: center;
    color: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-hero h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-hero p {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
}

.blog-content {
    margin-top: 40px;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.blog-placeholder {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px dashed #e74c3c;
}

.placeholder-content h3 {
    color: #e74c3c;
    font-size: 24px;
    margin-bottom: 15px;
}

.placeholder-content p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* 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;

    }

}

/* Blog Stilleri - Resimdeki gibi */
.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-description {
    font-size: 1.1rem;
    opacity: 0.9;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.blog-post-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.blog-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.post-thumbnail {
    flex: 0 0 200px;
    overflow: hidden;
    border-radius: 8px;
}

.post-thumbnail img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-item:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    flex: 1;
    padding: 0;
}

.entry-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #e74c3c;
    font-weight: 600;
}

.entry-title a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-title a:hover {
    color: #c0392b;
}

.entry-meta {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.entry-summary {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #666;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #764ba2;
}

.read-more .arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover .arrow {
    transform: translateX(3px);
}

/* Sayfalama */
.pagination-wrapper {
    margin-top: 40px;
    text-align: center;
}

.pagination {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.pagination .prev,
.pagination .next {
    font-weight: 600;
}

/* Tek Blog Yazısı */
.entry-meta-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #666;
}

.post-navigation {
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.nav-previous,
.nav-next {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-next {
    text-align: right;
}

.nav-subtitle {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.nav-title {
    display: block;
    font-weight: 600;
    color: #2c3e50;
}

.nav-previous a,
.nav-next a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-previous a:hover,
.nav-next a:hover {
    color: #667eea;
}

.back-to-blog {
    text-align: center;
    margin: 30px 0;
}

.back-to-blog .button {
    display: inline-block;
    padding: 12px 25px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.back-to-blog .button:hover {
    background: #764ba2;
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.no-posts h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.no-posts p {
    color: #666;
    font-size: 1.1rem;
}

/* Responsive Blog */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .nav-links {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .nav-next {
        text-align: left;
    }
}

/* NYCbahis Resmi Tema - Stil 4 */
.official-access-card {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border-radius: 20px;
    padding: 30px;
    margin: 25px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
}

.official-access-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.official-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.official-title {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.official-badge {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.official-description {
    color: #fff;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.official-highlight {
    background: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid #ffd700;
    backdrop-filter: blur(10px);
}

.official-text {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* NYCbahis Resmi Platform Özellikleri - Stil 5 */
.official-platform-features {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 40px;
    border-radius: 25px;
    margin: 25px 0;
    position: relative;
    overflow: hidden;
}

.official-platform-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
}

.platform-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.platform-title {
    color: #ffd700;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.platform-subtitle {
    color: #ecf0f1;
    font-size: 16px;
    font-style: italic;
    opacity: 0.9;
}

.platform-intro {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.platform-intro p {
    color: #bdc3c7;
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.games-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
}

.game-category {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.game-category::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.5s ease;
}

.game-category:hover::before {
    left: 100%;
}

.game-category:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.category-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.category-name {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    display: block;
    margin-bottom: 8px;
}

.category-desc {
    color: #bdc3c7;
    font-size: 14px;
    font-style: italic;
}

/* NYCbahis Resmi Avantajları - Stil 6 */
.official-advantages {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 25px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.advantages-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.advantages-icon {
    color: #ffd700;
    flex-shrink: 0;
    margin-top: 10px;
}

.advantages-text {
    flex: 1;
}

.advantages-title {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.advantages-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.advantage-item {
    color: #f8f9fa;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    color: #ffd700;
    transform: translateX(10px);
}

.advantages-decoration {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

/* Resmi Bilgi Paneli - Stil 7 */
.official-info-panel {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 30px;
    margin: 25px 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.info-item {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.info-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
    border-color: #ffd700;
}

.info-icon {
    font-size: 30px;
    margin-bottom: 15px;
    display: block;
}

.info-content h4 {
    color: #ffd700;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: #ffd700;
}

.info-value {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

/* Resmi CTA - Stil 8 */
.official-cta-section {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border-radius: 25px;
    padding: 50px 40px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.4);
}

.official-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

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

.cta-title {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-description {
    color: #f8f9fa;
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.official-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.official-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.official-cta-button:hover::before {
    left: 100%;
}

.official-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-icon {
    position: relative;
    z-index: 2;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.official-cta-button:hover .button-icon {
    transform: translateX(5px);
}

.cta-decoration {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

/* Responsive Resmi Tema */
@media (max-width: 768px) {
    .advantages-content {
        flex-direction: column;
        text-align: center;
    }
    
    .advantages-icon {
        align-self: center;
    }
    
    .games-showcase {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .official-cta-button {
        padding: 15px 30px;
        font-size: 18px;
    }
}





