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

/* Global Mobile Navbar Styles - Her sayfada çalışır */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    /* Mobilde Bonus Al Butonu - Sadece mobilde görünür */
    .btn-bonus-mobile {
        display: inline-block !important;
        background: transparent !important;
        color: white !important;
        border: 1px solid rgba(34, 197, 94, 0.6);
        padding: 6px 10px;
        border-radius: 6px;
        font-size: 10px;
        font-weight: 600;
        white-space: nowrap;
        cursor: pointer;
        transition: all 0.3s ease;
        min-width: 60px;
        text-align: center;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    
    .btn-bonus-mobile::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, 
            rgba(34, 197, 94, 0.2), 
            rgba(16, 185, 129, 0.3), 
            rgba(34, 197, 94, 0.2), 
            rgba(16, 185, 129, 0.3));
        background-size: 400% 400%;
        animation: gradientShift 3s ease infinite;
        z-index: -1;
        border-radius: 6px;
    }
    
    .btn-bonus-mobile::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(255, 255, 255, 0.2), 
            transparent);
        transition: left 0.6s ease;
        z-index: 0;
    }
    
    .btn-bonus-mobile:hover::before {
        animation-duration: 1s;
    }
    
    .btn-bonus-mobile:hover::after {
        left: 100%;
    }
    
    .btn-bonus-mobile:hover {
        border-color: rgba(34, 197, 94, 0.8);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
    }
    
    .btn-bonus-mobile:active {
        transform: translateY(0);
        box-shadow: 0 2px 6px rgba(34, 197, 94, 0.3);
    }
    
    @keyframes gradientShift {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }
    
    .navbar {
        height: 60px;
    }
    
    .nav-container {
        max-width: 100%;
        padding: 0 15px;
        justify-content: space-between;
    }
    
    .nav-logo .logo-text {
        font-size: 18px;
    }
    
    .nav-actions {
        gap: 0;
        margin-left: 0;
        flex-shrink: 0;
    }
    
    /* Logo yanındaki bonus butonu için özel düzen */
    .nav-logo + .btn-bonus-mobile {
        margin-left: 12px;
        margin-right: auto;
    }
    
    .btn-notification {
        margin-left: 4px;
    }
    
    .btn {
        padding: 8px 12px;
        font-size: 12px;
        height: 36px;
        min-width: 70px;
        white-space: nowrap;
    }
    
    .btn-aux {
        width: 42px;
        height: 42px;
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 50%;
        color: #ffffff;
        order: 2;
    }
    
    .btn-aux:hover {
        background: transparent;
        border: none;
        color: #ffffff;
    }
    
    .user-info {
        order: 3;
    }
    
    .btn-aux svg {
        width: 24px;
        height: 24px;
        fill: #ffffff;
    }
    
    .btn-notification {
        width: 42px;
        height: 42px;
    }
    
    /* Mobilde bildirim sayısını gizle */
    .notification-badge {
        display: none !important;
    }
    
    /* Ödeme bilgilerini tekrar göster */
    .dropdown-item[onclick*="payment"] {
        display: flex !important;
    }
    
    /* Bildirim varsa yanıp sönen animasyon */
    .btn-notification.has-notifications {
        animation: notificationBlink 1s infinite;
    }
    
    @keyframes notificationBlink {
        0%, 50% {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }
        25%, 75% {
            background: rgba(255, 193, 7, 0.3);
            border-color: rgba(255, 193, 7, 0.5);
        }
    }
}

@media (max-width: 480px) {
    .nav-logo .logo-text {
        font-size: 16px;
    }
    
    .nav-actions {
        gap: 0;
        margin-left: 0;
        flex-shrink: 0;
    }
    
    .btn-notification {
        margin-left: 3px;
    }
    
    .btn {
        padding: 6px 10px;
        font-size: 11px;
        height: 32px;
        min-width: 65px;
        white-space: nowrap;
    }
    
    .btn-aux {
        width: 38px;
        height: 38px;
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 50%;
        color: #ffffff;
        order: 2;
    }
    
    .btn-aux:hover {
        background: transparent;
        border: none;
        color: #ffffff;
    }
    
    .user-info {
        order: 3;
    }
    
    .btn-aux svg {
        width: 22px;
        height: 22px;
        fill: #ffffff;
    }
    
    .btn-notification {
        width: 38px;
        height: 38px;
    }
    
    /* Mobilde bildirim sayısını gizle */
    .notification-badge {
        display: none !important;
    }
    
    /* Ödeme bilgilerini tekrar göster */
    .dropdown-item[onclick*="payment"] {
        display: flex !important;
    }
    
    /* Bildirim varsa yanıp sönen animasyon */
    .btn-notification.has-notifications {
        animation: notificationBlink 1s infinite;
    }
    
    @keyframes notificationBlink {
        0%, 50% {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }
        25%, 75% {
            background: rgba(255, 193, 7, 0.3);
            border-color: rgba(255, 193, 7, 0.5);
        }
    }
}

/* Desktop'ta Deneme Bonusu Al Butonunu Gizle */
@media (min-width: 769px) {
    .btn-bonus-mobile {
        display: none !important;
    }
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background-color: #1a1a2e;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Styles */
.navbar {
    background-color: #1a1a2e;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    transition: all 0.2s ease;
}

.nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #30b44c;
}

.nav-actions {
    display: flex;
    gap: 2px;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.btn-profile {
    background: transparent;
    width: 42px; height: 42px; padding:0; border:1px solid rgba(255,255,255,0.2); border-radius:50%; display:flex; align-items:center; justify-content:center; transition: all .2s ease;
}
.btn-profile svg { width: 22px; height: 22px; fill:#ffffff; }
.btn-profile:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.35); }

.user-icon {
    width: 42px; height: 42px; display:flex; align-items:center; justify-content:center;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    cursor: pointer;
    line-height: 1;
    transform: translateY(0);
    vertical-align: middle;
}
.user-icon svg { width: 20px; height: 20px; fill:#ffffff; }

/* Kullanıcı Dropdown Menü */
.user-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1b2532;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    min-width: 220px;
    z-index: 1000;
    display: none;
    backdrop-filter: blur(10px);
    margin-top: 5px;
}

.user-dropdown.active {
    display: block;
}

/* Mobilde dropdown menüyü düzelt */
@media (max-width: 768px) {
    .nav-actions {
        position: relative;
    }
    
    .user-dropdown {
        position: absolute;
        top: 100%;
        right: -10px;
        left: auto;
        transform: none;
        width: 280px;
        max-width: calc(100vw - 20px);
        min-width: auto;
        border-radius: 12px;
        z-index: 1001;
        margin-top: 5px;
    }
    
    .user-dropdown.active {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .nav-actions {
        position: relative;
    }
    
    .user-dropdown {
        position: absolute;
        top: 100%;
        right: -8px;
        left: auto;
        transform: none;
        width: 260px;
        max-width: calc(100vw - 16px);
        min-width: auto;
        border-radius: 10px;
        z-index: 1001;
        margin-top: 5px;
    }
    
    .user-dropdown.active {
        display: block !important;
    }
}

.dropdown-header {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.user-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

/* Mobilde dropdown header'ı minimalize et */
@media (max-width: 768px) {
    .dropdown-header {
        padding: 10px 14px;
    }
    
    .user-name {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .dropdown-header {
        padding: 8px 12px;
    }
    
    .user-name {
        font-size: 12px;
    }
}

.dropdown-menu {
    padding: 8px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

/* Mobilde dropdown menü içeriğini düzelt */
@media (max-width: 768px) {
    .dropdown-menu {
        padding: 8px 0;
        max-height: 50vh;
        overflow-y: auto;
    }
    
    .dropdown-item {
        padding: 12px 16px;
        font-size: 14px;
        min-height: 40px;
    }
    
    .item-icon {
        margin-right: 12px;
        font-size: 16px;
        width: 20px;
    }
    
    .logout-item {
        background: rgba(220, 53, 69, 0.1);
        border-top: 1px solid rgba(220, 53, 69, 0.2);
        color: #ff6b6b;
        font-weight: 600;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .dropdown-menu {
        padding: 6px 0;
        max-height: 40vh;
    }
    
    .dropdown-item {
        padding: 10px 14px;
        font-size: 13px;
        min-height: 36px;
    }
    
    .item-icon {
        margin-right: 10px;
        font-size: 14px;
        width: 18px;
    }
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.item-icon {
    margin-right: 12px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.item-text {
    font-weight: 500;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

.logout-item:hover {
    background: rgba(220, 53, 69, 0.2);
    color: #ff6b6b;
}

/* Kullanıcı Sidebar Panel */
.user-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #1b2532;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.user-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.sidebar-close {
    background: none;
    border: none;
    color: #cbd5e1;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.sidebar-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.sidebar-content {
    padding: 20px;
    height: calc(100vh - 80px);
    overflow-y: auto;
}

/* Modal içerik stilleri */
.sidebar-section {
    margin-bottom: 15px;
}



.sidebar-section h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #30b44c;
}

.sidebar-form-group {
    margin-bottom: 8px;
}

.sidebar-form-group label {
    display: block;
    color: #94a3b8;
    font-size: 13px;
    margin-bottom: 4px;
    font-weight: 500;
}

.sidebar-form-group input,
.sidebar-form-group select,
.sidebar-form-group textarea {
    width: 100%;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.2s ease;
}

.sidebar-form-group input:focus,
.sidebar-form-group select:focus,
.sidebar-form-group textarea:focus {
    outline: none;
    border-color: #30b44c;
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-btn {
    background: #30b44c;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 8px;
    margin-bottom: 8px;
}

.sidebar-btn:hover {
    background: #27ae60;
    transform: translateY(-1px);
}

.sidebar-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
}

.sidebar-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Sponsorlu siteler stilleri */
.sidebar-select {
    width: 100%;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.2s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.sidebar-select:focus {
    outline: none;
    border-color: #30b44c;
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-select option {
    background: #1a1a2e;
    color: #ffffff;
    padding: 8px;
    border: none;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Sidebar Notifications */
.notification-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.notification-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.notification-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.notification-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 2px;
}

.notification-text {
    color: #f9fafb;
    font-size: 13px;
    line-height: 1.4;
    word-wrap: break-word;
}

.notification-date {
    color: #9ca3af;
    font-size: 11px;
    font-weight: 500;
}

.no-notifications {
    text-align: center;
    padding: 30px 20px;
    color: #9ca3af;
}

.no-notifications .no-data-icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.6;
}

.no-notifications .no-data-title {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #d1d5db;
}

.no-notifications .no-data-subtitle {
    font-size: 13px;
    opacity: 0.8;
}

.loading-notifications {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    color: #9ca3af;
}

.loading-notifications .loading-spinner {
    width: 24px;
    height: 24px;
    border: 2px solid #374151;
    border-top: 2px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 12px;
}

.loading-notifications .loading-text {
    font-size: 13px;
    opacity: 0.8;
}

.sidebar-select option:hover {
    background: #30b44c;
}

.sidebar-btn.primary {
    background: linear-gradient(135deg, #30b44c, #27ae60);
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 8px;
    margin-bottom: 8px;
}

.sidebar-btn.primary:hover {
    background: linear-gradient(135deg, #27ae60, #229954);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(48, 180, 76, 0.3);
}

.loading-accounts {
    text-align: center;
    padding: 20px;
    color: #94a3b8;
}

.loading-accounts .loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid #30b44c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

.loading-accounts .loading-text {
    font-size: 12px;
    color: #94a3b8;
}

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

.sponsor-account-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sponsor-account-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #30b44c, #22c55e);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sponsor-account-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(48, 180, 76, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.sponsor-account-item:hover::before {
    opacity: 1;
}

/* Account Row - All elements in one line with equal spacing */
.account-row {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 8px;
    padding: 0 4px;
}

.account-status {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    flex-shrink: 0;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #30b44c;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(48, 180, 76, 0.5);
}

.site-name {
    flex: 1;
    min-width: 0;
    max-width: 80px;
}

.site-name strong {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.account-actions {
    display: flex;
    align-items: center;
    width: 70px;
    flex-shrink: 0;
}

.site-link {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
    white-space: nowrap;
    width: 100%;
    text-align: center;
}

.site-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.username-info {
    width: 60px;
    flex-shrink: 0;
}

.username {
    color: #60a5fa;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.date-info {
    width: 65px;
    flex-shrink: 0;
}

.date {
    color: #64748b;
    font-size: 9px;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 4px;
    border-radius: 3px;
    display: inline-block;
    white-space: nowrap;
    width: 100%;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .user-sidebar {
        width: 100%;
        right: -100%;
    }
}


.btn-notification {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1;
    transform: translateY(0);
    vertical-align: middle;
}

.notification-badge {
    position: absolute;
    top: 25px;
    right: 0px;
    background: transparent;
    color: #ef4444;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    animation: notificationBlink 0.8s infinite;
    z-index: 10;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}



.notification-icon {
    font-size: 0; /* inline svg kullanıyoruz */
}

.notification-icon svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}

.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-signin {
    background: transparent;
    color: #ffffff;
    border: 1px solid #333333;
}

.btn-signin:hover {
    border-color: #555555;
}

.btn-create {
    background-color: #1ed760;
    color: #ffffff;
}

.btn-create:hover {
    background-color: #1bc95a;
    transform: translateY(-1px);
}

.btn-aux {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-aux:hover { 
    background: rgba(255, 255, 255, 0.2); 
    color: #ffffff; 
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-aux svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
}

/* Banner Section */
.banner {
    margin-top: 80px;
    height: 200px;
    position: relative;
}

.banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.banner-slider {
    height: 100%;
    position: relative;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background: linear-gradient(135deg, #9b6cf3 0%, #ef6da7 100%);
    border-radius: 12px;
    overflow: hidden;
}

.banner-slide.active {
    opacity: 1;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 20px 40px;
    z-index: 2;
}

.banner-content {
    flex: 1;
    max-width: 500px;
}

.banner-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.btn-banner {
    background-color: #1ed760;
    color: #ffffff;
    height: 36px;
    padding: 0 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
}

.btn-banner:hover {
    background-color: #1bc95a;
    transform: translateY(-1px);
}



.banner-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    opacity: 1;
}

.banner-image-mobile {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    opacity: 1;
}





/* Banner Navigation Dots */
.banner-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

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

.dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

/* Ana Banner Pop-up Styles */
.main-banner-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(3px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease-out;
    will-change: opacity;
}

.main-banner-popup-content {
    position: relative;
    max-width: 500px;
    max-height: 600px;
    width: 90%;
    height: auto;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: slideIn 0.2s ease-out;
}

.main-banner-close {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1f2433;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(220, 53, 69, 0.3);
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.15);
    width: auto;
    min-width: 60px;
    height: 35px;
    overflow: hidden;
    box-sizing: border-box;
    color: #ff6b6b;
    font-weight: 800;
    font-size: 14px;
    text-align: center;
    text-shadow: 0 0 15px rgba(220, 53, 69, 0.5);
    z-index: 1000;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.main-banner-close::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(220, 53, 69, 0.1), transparent);
    animation: shimmer 2s infinite;
}

.main-banner-close:hover {
    background: rgba(220, 53, 69, 0.25);
    border-color: rgba(220, 53, 69, 0.5);
    color: #ff8a8a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
}

.main-banner-popup-inner {
    padding: 0;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-banner-popup-inner:hover {
    transform: scale(1.02);
}

.main-banner-popup-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.main-banner-popup-visual {
    margin: 0;
    width: 100%;
    height: 100%;
    flex: 1;
    position: relative;
}

.main-banner-popup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.main-banner-popup-image:hover {
    transform: scale(1.02);
}

.main-banner-popup-image-mobile {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.main-banner-popup-image-mobile:hover {
    transform: scale(1.02);
}

.main-banner-popup-button-container {
    margin: 0;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.btn-main-banner-popup {
    background: linear-gradient(135deg, #30b44c 0%, #27ae60 100%);
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(48, 180, 76, 0.3);
    transition: all 0.3s ease;
}

.btn-main-banner-popup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(48, 180, 76, 0.4);
}

/* Ana Banner Pop-up Animasyonları */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: scale(0.8) translateY(-50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Ana Banner Pop-up Mobil Responsive */
@media (max-width: 768px) {
    .main-banner-popup-content {
        max-width: 350px;
        max-height: 500px;
        width: 95%;
    }
    
    .main-banner-popup-inner {
        padding: 0;
    }
    
    .main-banner-popup-title {
        font-size: 18px;
        margin: 0;
        top: 15px;
        left: 15px;
    }
    
    .btn-main-banner-popup {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .main-banner-popup-image {
        display: none;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .main-banner-popup-image-mobile {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .main-banner-close {
        top: 12px;
        right: 12px;
        padding: 6px 12px;
        min-width: 50px;
        height: 30px;
        font-size: 12px;
        font-weight: 800;
    }
    
    .main-banner-popup-button-container {
        bottom: 15px;
    }
}

/* Ana Banner Styles (Eski - Kaldırıldı) */
.main-banner {
    margin-top: 80px;
    padding: 20px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.main-banner-container:hover {
    transform: translateY(-2px);
}

.main-banner-content {
    margin-bottom: 20px;
}

.main-banner-button-container {
    text-align: center;
    margin-bottom: 15px;
}

.main-banner-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.btn-main-banner {
    background: linear-gradient(135deg, #30b44c 0%, #27ae60 100%);
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(48, 180, 76, 0.3);
    transition: all 0.3s ease;
}

.btn-main-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(48, 180, 76, 0.4);
}

.main-banner-visual {
    text-align: center;
}

.main-banner-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.main-banner-image:hover {
    transform: scale(1.02);
}

.main-banner-image-mobile {
    display: none;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.main-banner-image-mobile:hover {
    transform: scale(1.02);
}

/* Ana Banner Mobil Responsive */
@media (max-width: 768px) {
    .main-banner {
        margin-top: 60px;
        padding: 15px 0;
    }
    
    .main-banner-container {
        padding: 0 15px;
    }
    
    .main-banner-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .btn-main-banner {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .main-banner-image {
        display: none;
    }
    
    .main-banner-image-mobile {
        display: block;
    }
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

.welcome-section {
    margin-bottom: 60px;
}

.welcome-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
}

.highlight {
    color: #30b44c;
}

.content-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.card {
    height: 200px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0.8;
    animation: cardSlideIn 0.8s ease forwards;
    cursor: pointer;
}

.card:hover {
    transform: scale(1.05);
    opacity: 1;
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

.game-card {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.game-card:nth-child(2) {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
}

.game-card:nth-child(3) {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.game-card:nth-child(4) {
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
}

.game-card:nth-child(5) {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.game-card:nth-child(6) {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

/* Eski kart stilleri (geriye uyumluluk için) */
.prediction-card {
    background: linear-gradient(135deg, #ff6b9d 0%, #e91e63 100%);
}

.wheel-card {
    background: linear-gradient(135deg, #30b44c 0%, #27ae60 100%);
}

.blackjack-card {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.market-card {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.mines-card {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
}

.events-card {
    background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
}

.aviator-card {
    background: linear-gradient(135deg, #ff7a18 0%, #af002d 100%);
}

.roll-card {
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
}

.card-content {
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.card:hover .card-content {
    background: transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.game-image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 12px;
}

.game-image-web {
    display: block;
    visibility: visible;
}

.game-image-mobile {
    display: none;
    visibility: hidden;
}

.game-card:hover .game-image img {
    transform: scale(1.08);
}

/* Oyun kartları için özel stiller */
.game-card {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.card-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.4;
}

.card-title {
    font-size: 26px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 25px;
}

.btn-card {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    min-width: 180px;
    white-space: nowrap;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-card:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Originals Section */
.originals-section {
    margin-top: 60px;
}

.originals-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.originals-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.originals-icon {
    font-size: 24px;
}

.originals-title h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.originals-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-view-all {
    background: transparent;
    color: #30b44c;
    border: 1px solid #30b44c;
    padding: 6px 12px;
    font-size: 12px;
    margin: 0;
    width: 100%;
}

.btn-view-all:hover {
    background: #30b44c;
    color: #ffffff;
}

.nav-buttons {
    display: flex;
    gap: 8px;
}

.btn-nav {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.originals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    max-width: 100%;
}

.game-box {
    width: 150px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.game-box:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.game-icon {
    font-size: 20px;
}

.game-name {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .navbar {
        height: 60px;
    }
    
    .nav-container {
        max-width: 100%;
        padding: 0 15px;
        justify-content: space-between;
    }
    
    .nav-logo .logo-text {
        font-size: 18px;
    }
    
    .nav-actions {
        gap: 0;
        margin-left: 0;
        flex-shrink: 0;
    }
    
    .btn-notification {
        margin-left: 4px;
    }
    
    .btn {
        padding: 8px 12px;
        font-size: 12px;
        height: 36px;
        min-width: 70px;
        white-space: nowrap;
    }
    
    .btn-aux {
        width: 42px;
        height: 42px;
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 50%;
        color: #ffffff;
        order: 2;
    }
    
    .btn-aux:hover {
        background: transparent;
        border: none;
        color: #ffffff;
    }
    
    .user-info {
        order: 3;
    }
    
    .btn-aux svg {
        width: 24px;
        height: 24px;
        fill: #ffffff;
    }
    
    .btn-notification {
        width: 42px;
        height: 42px;
    }
    
    /* Mobilde bildirim sayısını gizle */
    .notification-badge {
        display: none !important;
    }
    
    /* Mobilde ödeme bilgilerini gizle */
    .dropdown-item[onclick*="payment"] {
        display: none !important;
    }
    
    /* Bildirim varsa yanıp sönen animasyon */
    .btn-notification.has-notifications {
        animation: notificationBlink 1s infinite;
    }
    
    @keyframes notificationBlink {
        0%, 50% {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }
        25%, 75% {
            background: rgba(255, 193, 7, 0.3);
            border-color: rgba(255, 193, 7, 0.5);
        }
    }
    

    
    .banner-inner { 
        padding: 0; 
        height: 160px; 
        width: 100%;
        margin: 0 auto;
    }
    .banner { 
        height: 160px; 
        margin-top: 80px;
        display: flex;
        justify-content: center;
        position: relative;
        z-index: 0;
    }
    
    .banner-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 10px 15px;
        width: 100%;
        height: 100%;
    }
    
    .banner-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .banner-visual {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .banner-image {
        display: none;
    }
    
    .banner-image-mobile {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .game-image-web {
        display: none !important;
        visibility: hidden !important;
    }
    
    .game-image-mobile {
        display: block !important;
        visibility: visible !important;
    }
    
    .game-image-web {
        display: none !important;
        visibility: hidden !important;
    }
    
    .game-image-mobile {
        display: block !important;
        visibility: visible !important;
    }
    
    .banner-dots {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 10;
    }
    
    .content-cards {
        flex-direction: column;
        gap: 20px;
    }
    
    .card {
        width: 100%;
        height: 120px;
    }
    
    .originals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .game-box {
        width: 100%;
    }
    
    .originals-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .score-predictions-header {
        flex-direction: column;
        gap: 12px;
        padding: 12px 15px;
        width: 389px;
        max-width: 389px;
        margin: 0 auto;
        border-radius: 12px;
    }
    
    .score-predictions-stats {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 100%;
    }
    
    .total-predictions {
        justify-content: center;
        padding: 6px 10px;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .stats-label {
        font-size: 12px;
    }
    
    .stats-number {
        font-size: 14px;
    }
    
    .score-predictions-title {
        font-size: 16px;
        text-align: center;
    }
    
    .btn-view-all {
        width: 100%;
        padding: 10px 16px;
        font-size: 13px;
        max-width: 100%;
        margin: 0;
    }
    
    .match-card {
        width: 389px;
        max-width: 389px;
        margin: 0 auto;
        padding: 12px;
    }
    
    .score-predictions-pagination {
        display: flex !important;
        gap: 12px;
        margin-top: 25px;
        justify-content: center;
        padding: 15px 0;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 20px;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }
    
    .pagination-dot {
        width: 18px;
        height: 18px;
        min-width: 18px;
        min-height: 18px;
        touch-action: manipulation;
        background: rgba(255, 255, 255, 0.3);
        border: 3px solid rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .pagination-dot.active {
        background: #3b82f6;
        border-color: #3b82f6;
        transform: scale(1.4);
        box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    }
    
    .pagination-dot:hover {
        background: rgba(255, 255, 255, 0.5);
        transform: scale(1.2);
    }
    
    .score-predictions-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .match-card {
        width: 100%;
        display: none !important;
    }
    
    .match-card.active {
        display: block !important;
    }
    
    .score-predictions-pagination {
        display: flex;
        gap: 6px;
        margin-top: 15px;
    }
    
    .pagination-dot {
        width: 10px;
        height: 10px;
        min-width: 10px;
        min-height: 10px;
        touch-action: manipulation;
    }
    
    .match-card {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .navbar {
        height: 60px;
    }
    
    .nav-container {
        max-width: 100%;
        padding: 0 12px;
        justify-content: space-between;
    }
    
    .nav-logo .logo-text {
        font-size: 16px;
    }
    
    .nav-actions {
        gap: 0;
        margin-left: 0;
        flex-shrink: 0;
    }
    
    .btn-notification {
        margin-left: 3px;
    }
    
    .btn {
        padding: 6px 10px;
        font-size: 11px;
        height: 32px;
        min-width: 65px;
        white-space: nowrap;
    }
    
    .btn-aux {
        width: 38px;
        height: 38px;
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 50%;
        color: #ffffff;
        order: 2;
    }
    
    .btn-aux:hover {
        background: transparent;
        border: none;
        color: #ffffff;
    }
    
    .user-info {
        order: 3;
    }
    
    .btn-aux svg {
        width: 22px;
        height: 22px;
        fill: #ffffff;
    }
    
    .btn-notification {
        width: 38px;
        height: 38px;
    }
    
    /* Mobilde bildirim sayısını gizle */
    .notification-badge {
        display: none !important;
    }
    
    /* Mobilde ödeme bilgilerini gizle */
    .dropdown-item[onclick*="payment"] {
        display: none !important;
    }
    
    /* Bildirim varsa yanıp sönen animasyon */
    .btn-notification.has-notifications {
        animation: notificationBlink 1s infinite;
    }
    
    @keyframes notificationBlink {
        0%, 50% {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }
        25%, 75% {
            background: rgba(255, 193, 7, 0.3);
            border-color: rgba(255, 193, 7, 0.5);
        }
    }
    

    
    .banner-inner { 
        padding: 0; 
        height: 160px; 
        width: 100%;
        margin: 0 auto;
    }
    
    .banner { 
        height: 160px;
        margin-top: 70px;
        display: flex;
        justify-content: center;
        position: relative;
        z-index: 0;
    }
    
    .banner-container {
        padding: 8px 12px;
        gap: 8px;
        width: 100%;
        height: 100%;
    }
    
    .banner-title {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .btn-banner {
        height: 30px;
        padding: 0 12px;
        font-size: 12px;
    }
    
    .banner-dots {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 6px;
        z-index: 10;
    }
    
    .welcome-title {
        font-size: 24px;
    }
    
    .originals-grid {
        grid-template-columns: 1fr;
    }
    
    .content-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .score-predictions-header {
        flex-direction: column;
        gap: 10px;
        padding: 10px 12px;
        width: 389px;
        max-width: 389px;
        margin: 0 auto;
        border-radius: 12px;
    }
    
    .score-predictions-stats {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        max-width: 100%;
    }
    
    .total-predictions {
        justify-content: center;
        padding: 5px 8px;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .stats-label {
        font-size: 11px;
    }
    
    .stats-number {
        font-size: 13px;
    }
    
    .score-predictions-title {
        font-size: 14px;
        text-align: center;
    }
    
    .btn-view-all {
        width: 100%;
        padding: 8px 12px;
        font-size: 12px;
        max-width: 100%;
        margin: 0;
    }
    
    .match-card {
        width: 389px;
        max-width: 389px;
        margin: 0 auto;
        padding: 10px;
    }
    
    .score-predictions-pagination {
        display: flex !important;
        gap: 10px;
        margin-top: 20px;
        justify-content: center;
        padding: 12px 0;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 18px;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }
    
    .pagination-dot {
        width: 16px;
        height: 16px;
        min-width: 16px;
        min-height: 16px;
        touch-action: manipulation;
        background: rgba(255, 255, 255, 0.3);
        border: 2px solid rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .pagination-dot.active {
        background: #3b82f6;
        border-color: #3b82f6;
        transform: scale(1.3);
        box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
    }
    
    .pagination-dot:hover {
        background: rgba(255, 255, 255, 0.5);
        transform: scale(1.1);
    }
    
    .score-predictions-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .match-card {
        width: 100%;
        display: none !important;
    }
    
    .match-card.active {
        display: block !important;
    }
    
    .score-predictions-pagination {
        display: flex;
        gap: 5px;
        margin-top: 12px;
    }
    
    .pagination-dot {
        width: 8px;
        height: 8px;
        min-width: 8px;
        min-height: 8px;
        touch-action: manipulation;
    }
    
    .match-card {
        padding: 10px;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.7);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card {
    animation: cardSlideIn 0.8s ease forwards;
}

.card:nth-child(1) {
    animation-delay: 0.1s;
}

.card:nth-child(2) {
    animation-delay: 0.2s;
}

.card:nth-child(3) {
    animation-delay: 0.3s;
}

.card:nth-child(4) {
    animation-delay: 0.4s;
}

.card:nth-child(5) {
    animation-delay: 0.5s;
}

.card:hover {
    transform: scale(1.05);
    opacity: 1;
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

.game-box {
    animation: fadeInUp 0.4s ease forwards;
}

.game-box:nth-child(1) { animation-delay: 0.1s; }
.game-box:nth-child(2) { animation-delay: 0.2s; }
.game-box:nth-child(3) { animation-delay: 0.3s; }
.game-box:nth-child(4) { animation-delay: 0.4s; }
.game-box:nth-child(5) { animation-delay: 0.5s; }
.game-box:nth-child(6) { animation-delay: 0.6s; }
.game-box:nth-child(7) { animation-delay: 0.7s; }
.game-box:nth-child(8) { animation-delay: 0.8s; } 

/* Promosyonlar: sağdan sola kayan şerit */
.promo-section {
    margin-top: 28px;
}

.promo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 8px 0 14px;
    padding: 0 4px;
}

.promo-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.promo-scroller {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    padding: 10px 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.promo-track {
    display: flex;
    align-items: center;
    gap: 16px;
    width: max-content;
    animation: promoScroll 35s linear infinite;
    will-change: transform;
}

/* Hover'da akışı durdur */
.promo-scroller:hover .promo-track {
    animation-play-state: paused;
}

.promo-card {
    position: relative;
    width: 180px;
    height: 220px;
    flex: 0 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    transition: transform .25s ease, box-shadow .25s ease;
    cursor: pointer;
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}

.promo-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.0);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    opacity: 0;
    transition: background .25s ease, opacity .25s ease;
}

.promo-card:hover .promo-overlay {
    background: rgba(0,0,0,0.45);
    opacity: 1;
}

.promo-info {
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.promo-info h4 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 4px;
}

.promo-info p {
    font-size: 12px;
    opacity: .9;
}



@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes notificationBlink {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.2);
    }
}

@keyframes promoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .promo-card { width: 160px; height: 180px; }
}

/* Bildirimler Modal */
.notify-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); display: flex; align-items: center; justify-content: center; z-index: 2000; }
.notify-modal { width: min(560px, 92vw); background: #14202e; border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.notify-header { display:flex; align-items:center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.notify-title-wrap { display:flex; align-items:center; gap:10px; }
.notify-bell svg { width:18px; height:18px; fill:#e5e7eb; }
.notify-header h3 { margin:0; font-size:18px; font-weight:800; }
.notify-close { background: transparent; color:#e5e7eb; border: none; font-size: 20px; cursor: pointer; }
.notify-content { padding: 28px 20px; text-align:center; color:#cbd5e1; }
.notify-illustration { display:flex; align-items:center; justify-content:center; margin-bottom: 16px; }
.notify-empty-title { font-weight: 800; color: #e5e7eb; margin-bottom: 6px; }
.notify-empty-sub { color:#9aa7b7; }

/* Bildirim Listesi */
.notification-list {
    max-height: 400px;
    overflow-y: auto;
    padding: 0;
}

.notification-item {
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.notification-item:hover {
    background: rgba(255,255,255,0.05);
}

.notification-item.unread {
    background: rgba(59, 130, 246, 0.1);
    border-left: 3px solid #3b82f6;
}

.notification-item.read {
    opacity: 0.7;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.notification-title {
    font-weight: 700;
    color: #ffffff;
    font-size: 14px;
}

.notification-time {
    font-size: 11px;
    color: #9ca3af;
    white-space: nowrap;
    margin-left: 12px;
}

.notification-message {
    color: #d1d5db;
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.notification-type {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.notification-type.bilgi {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.notification-type.basarili {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.notification-type.uyari {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

.notification-type.hata {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

/* Sponsorlu Siteler */
.sponsor-account-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.account-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.account-info strong {
    color: #ffffff;
    font-size: 14px;
}

.account-username {
    color: #60a5fa;
    font-size: 12px;
}

.account-date {
    color: #9ca3af;
    font-size: 11px;
    white-space: nowrap;
}

/* Sponsorlarımız */
.sponsors-section { margin-top: 36px; }
.sponsors-header { display:flex; align-items:center; justify-content: space-between; margin-bottom: 18px; }
.sponsors-title { display:flex; align-items:center; gap: 10px; }
.sponsors-title h3 { font-size: 22px; font-weight: 800; }
.sponsors-icon { font-size: 20px; }

.sponsors-row { display:flex; gap: 18px; overflow-x: auto; overflow-y: hidden; padding-bottom: 10px; margin-bottom: 14px; }
.events-scroller, .sponsors-row { scrollbar-width: thin; scrollbar-color: rgba(148,163,184,0.5) rgba(255,255,255,0.06); }
.events-scroller::-webkit-scrollbar, .sponsors-row::-webkit-scrollbar { height: 8px; }
.events-scroller::-webkit-scrollbar-track, .sponsors-row::-webkit-scrollbar-track { background: rgba(255,255,255,0.06); border-radius: 999px; }
.events-scroller::-webkit-scrollbar-thumb, .sponsors-row::-webkit-scrollbar-thumb { background: rgba(148,163,184,0.5); border-radius: 999px; }
.sponsor-card { 
    flex: 0 0 300px; 
    background: #1b2532; 
    border: 1px solid rgba(255,255,255,0.08); 
    border-radius: 14px; 
    padding: 0; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    height: 128px; 
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.sponsor-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.sponsor-card img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: center;
    border-radius: 14px;
    filter: saturate(0.9);
    transition: filter 0.3s ease;
}

.sponsor-card:hover img {
    filter: saturate(1.1);
}



@media (max-width: 1200px) {
  .sponsor-card { flex-basis: 260px; }
}
@media (max-width: 768px) {
  .sponsors-row { overflow-x: auto; padding-bottom: 6px; }
  .sponsor-card { flex-basis: 240px; min-width: 240px; }
}

.sponsors-pagination { display:flex; gap:8px; justify-content:center; margin-top:12px; }
.sponsors-pagination .dot { width:22px; height:22px; border-radius:999px; background:rgba(255,255,255,.15); color:#fff; font-size:12px; font-weight:800; display:inline-flex; align-items:center; justify-content:center; cursor:pointer; transition:transform .2s ease, background .2s ease; }
.sponsors-pagination .dot.active { background:#30b44c; color:#0b1221; transform:scale(1.05); }

/* Skor Tahmini Bölümü */
.score-predictions-section {
    margin: 40px 0;
    padding: 0;
}

.score-predictions-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.score-predictions-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.total-predictions {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    margin: 0;
    width: 100%;
}

.stats-label {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
}

.stats-number {
    color: #3b82f6;
    font-size: 16px;
    font-weight: 700;
}

.score-predictions-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.btn-view-all {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
    width: 100%;
}

.btn-view-all:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.score-predictions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    justify-content: start;
}

.match-card {
    display: block;
    width: 100%;
}

.score-predictions-pagination {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

/* Mobilde pagination dots'ları göster */
@media (max-width: 768px) {
    .score-predictions-pagination {
        display: flex !important;
    }
}

@media (max-width: 480px) {
    .score-predictions-pagination {
        display: flex !important;
    }
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.pagination-dot.active {
    background: #3b82f6;
    transform: scale(1.2);
}

.pagination-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.pagination-dot:active {
    transform: scale(0.9);
}

.match-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 16px 16px 0 0;
}

.match-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.team-logo {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-bottom: 6px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.team-name {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.match-vs {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 12px;
}

.match-info {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 11px;
    color: #94a3b8;
}

.match-date, .match-time {
    display: flex;
    align-items: center;
    gap: 4px;
}

.icon {
    font-size: 14px;
}

.score-display {
    text-align: center;
    margin-bottom: 12px;
}

.score {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.score-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
}

.score-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: #3b82f6;
    color: white;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.score-btn:hover {
    background: #2563eb;
    transform: scale(1.1);
}

.score-btn.minus {
    background: #ef4444;
}

.score-btn.minus:hover {
    background: #dc2626;
}

.score-separator {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 6px;
}

.prediction-status {
    text-align: center;
}

.status-btn {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.status-btn.open {
    background: #3b82f6;
    color: white;
}

.status-btn.open:hover {
    background: #2563eb;
}

.status-btn.closed {
    background: #6b7280;
    color: white;
    cursor: not-allowed;
}

.status-btn.submitted {
    background: #10b981;
    color: white;
    cursor: not-allowed;
}

/* Geçmiş Tahminler Modal Stilleri */
.predictions-list {
    max-height: 500px;
    overflow-y: auto;
    padding: 0 5px;
}

.predictions-list::-webkit-scrollbar {
    width: 4px;
}

.predictions-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.predictions-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.predictions-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prediction-item {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.prediction-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, #3b82f6, #9333ea);
    border-radius: 8px 8px 0 0;
}

.prediction-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.25);
}

.prediction-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.prediction-teams .team-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.prediction-teams .team-logo-mini {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.prediction-teams .team-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 11px;
    max-width: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.prediction-teams .vs {
    font-weight: 700;
    color: #3b82f6;
    font-size: 12px;
}

.prediction-score {
    text-align: center;
    margin-bottom: 6px;
}

.prediction-score .score {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(59, 130, 246, 0.3);
}

.prediction-date {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 11px;
    color: #94a3b8;
    font-weight: 400;
}

.prediction-date .date,
.prediction-date .time {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 3px 6px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Modal Close Button Hover Effect */
.close:hover {
    transform: translateY(-50%) scale(1.1) !important;
    color: #fbbf24 !important;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.5) !important;
}

@media (max-width: 1200px) {
    .score-predictions-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 260px));
        gap: 18px;
        justify-content: start;
    }
}

@media (max-width: 768px) {
    .score-predictions-grid {
        grid-template-columns: minmax(240px, 280px);
        gap: 15px;
        justify-content: start;
    }
    
    .match-card {
        padding: 16px;
    }
    
    .team-logo {
        width: 40px;
        height: 40px;
    }
    
    .team-name {
        max-width: 120px;
        font-size: 14px;
    }
    
    .score {
        font-size: 28px;
    }
    
    .score-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

/* Etkinlikler: metin şerit */
.events-section { margin-top: 28px; }
.events-header { display:flex; align-items:center; justify-content: space-between; margin: 8px 0 14px; padding: 0 4px; }
.events-title { font-size:22px; font-weight:700; color:#fff; }

.events-scroller { position: relative; overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; }
.events-scroller::-webkit-scrollbar { height: 8px; }
.events-scroller::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius:4px; }

.events-track { display: flex; gap: 16px; padding: 6px 2px 10px; }
.event-card { scroll-snap-align: start; }

.events-pagination { display:flex; gap:8px; justify-content:center; margin-top:10px; }
.events-pagination .dot {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(255,255,255,.15);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}
.events-pagination .dot.active { background:#30b44c; color:#0b1221; transform:scale(1.05); }

.event-card {
    min-width: 280px;
    max-width: 320px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 4px solid var(--accent, #30b44c);
    color: #e5e7eb;
    padding: 14px 16px;
    border-radius: 12px;
    display: flex; flex-direction: column; gap: 8px;
}

.event-title { font-size: 16px; font-weight: 800; color: #fff; }
.event-desc { font-size: 13px; color: #cbd5e1; }

.btn-join {
    background: var(--accent, #30b44c);
    color: #0b1221;
    font-weight: 800;
    border-radius: 8px;
    padding: 8px 12px;
}

.btn-join:hover { filter: brightness(1.05); transform: translateY(-1px); }

@media (max-width: 768px) {
    .event-card { min-width: 240px; }
}

/* İşlem Geçmişi Stilleri - Premium */
.history-list {
    max-height: 350px;
    overflow-y: auto;
    padding-right: 8px;
}

.history-list::-webkit-scrollbar {
    width: 6px;
}

.history-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.history-list::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #30b44c, #2ecc71);
    border-radius: 3px;
}

.history-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.history-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.history-item::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;
}

.history-item:hover::before {
    left: 100%;
}

.history-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.history-icon {
    font-size: 24px;
    margin-right: 16px;
    width: 40px;
    height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    font-weight: bold;
}

/* Yeşil tik ikonu */
.history-icon.icon-success {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(10px);
}

/* Kırmızı çarpı ikonu */
.history-icon.icon-danger {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    backdrop-filter: blur(10px);
}

.history-item:hover .history-icon {
    transform: scale(1.05);
}

.history-item:hover .history-icon.icon-success {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.5);
}

.history-item:hover .history-icon.icon-danger {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
}

.history-details {
    flex: 1;
    min-width: 0;
}

.history-title {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.history-time {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.history-amount {
    font-size: 15px;
    font-weight: 800;
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 70px;
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.history-amount.positive {
    color: #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.08) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.history-amount.negative {
    color: #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.08) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
}

.history-item:hover .history-amount.positive {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25) 0%, rgba(16, 185, 129, 0.15) 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.history-item:hover .history-amount.negative {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, rgba(239, 68, 68, 0.15) 100%);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* İstatistikler - Premium */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #30b44c, #2ecc71);
    border-radius: 2px;
}

.stat-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.stat-label {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-value {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-value.positive {
    color: #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.08) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.stat-value.negative {
    color: #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.08) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
}

.stat-item:hover .stat-value.positive {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25) 0%, rgba(16, 185, 129, 0.15) 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.stat-item:hover .stat-value.negative {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, rgba(239, 68, 68, 0.15) 100%);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Loading State - Premium */
.loading-transactions {
    text-align: center;
    padding: 50px 20px;
    color: #94a3b8;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(48, 180, 76, 0.1);
    border-top: 3px solid #30b44c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(48, 180, 76, 0.3);
}

.loading-text {
    font-size: 15px;
    color: #cbd5e1;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

/* No Transactions State - Premium */
.no-transactions {
    text-align: center;
    padding: 50px 20px;
    color: #94a3b8;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 20px 0;
}

.no-data-icon {
    font-size: 56px;
    margin-bottom: 20px;
    opacity: 0.7;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

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

.no-data-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.no-data-subtitle {
    font-size: 15px;
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 1.4;
}

/* Promosyon Kodu Stilleri */
.promo-form {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.promo-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.promo-input:focus {
    outline: none;
    border-color: #30b44c;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(48, 180, 76, 0.1);
}

.promo-input::placeholder {
    color: #64748b;
}

.sidebar-btn.primary {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #30b44c, #2ecc71);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.sidebar-btn.primary:hover {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(48, 180, 76, 0.3);
}

.sidebar-btn.primary:active {
    transform: translateY(0);
}

.no-promo-codes {
    text-align: center;
    padding: 40px 20px;
    color: #94a3b8;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .content-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .content-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .card {
        height: 180px;
    }
    
    .card-content {
        padding: 0;
    }
    
    .game-image {
        width: 100%;
        height: 100%;
    }
    
    .game-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .content-cards {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    
    .card {
        height: 160px;
    }
    
    .card-content {
        padding: 0;
    }
    
    .game-image {
        width: 100%;
        height: 100%;
    }
    
    .game-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-section p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #30b44c;
}

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

.social-link {
    display: flex;
    align-items: center;
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #30b44c;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
    font-size: 12px;
}

/* Logo Image Styles */
.nav-logo .logo-image {
    height: 40px;
    width: auto;
    max-width: 200px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        align-items: center;
    }
}

/* Notification System */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    background: #1a1a2e;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    font-size: 14px;
    font-weight: 500;
    max-width: 350px;
    min-width: 300px;
    transform: translateX(400px);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-color: #30b44c;
    background: linear-gradient(135deg, #1a1a2e 0%, #1f2937 100%);
}

.notification.error {
    border-color: #ef4444;
    background: linear-gradient(135deg, #1a1a2e 0%, #1f2937 100%);
}

.notification.warning {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #1a1a2e 0%, #1f2937 100%);
}

.notification.info {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #1a1a2e 0%, #1f2937 100%);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.notification-message {
    flex: 1;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: scale(1.1);
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #30b44c;
    width: 100%;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 3s linear;
}

.notification.success .notification-progress {
    background: #10b981;
}

.notification.error .notification-progress {
    background: #ef4444;
}

.notification.warning .notification-progress {
    background: #f59e0b;
}

.notification.info .notification-progress {
    background: #3b82f6;
}

/* Responsive Notifications */
@media (max-width: 768px) {
    .notification-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .notification {
        max-width: none;
        min-width: auto;
    }
}

/* Ödeme bilgilerini tekrar göster */
.dropdown-item[onclick*="payment"] {
    display: flex !important;
}

/* Bilet Etkinlikleri Stilleri */
.tickets-section {
    margin: 40px 0;
}

.tickets-header {
    text-align: left;
    margin-bottom: 30px;
}

.tickets-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.tickets-scroller {
    overflow: hidden;
    margin-bottom: 20px;
}

.tickets-track {
    display: flex;
    gap: 15px;
    transition: transform 0.3s ease;
}

.tickets-track .ticket-card {
    min-width: calc(33.333% - 10px);
    flex-shrink: 0;
    width: calc(33.333% - 10px);
}

.tickets-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.tickets-pagination .pagination-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: #374151;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tickets-pagination .pagination-dot:hover {
    background: #6b7280;
    transform: scale(1.05);
}

.tickets-pagination .pagination-dot.active {
    background: #30b44c;
    color: #0b1221;
    transform: scale(1.05);
}

.ticket-card {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ticket-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    border-radius: 16px 16px 0 0;
}

.ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.ticket-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    flex: 1;
    line-height: 1.2;
}

.ticket-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticket-status.available {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.ticket-status.sold-out {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Yeni Minimize Stilleri */
.ticket-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.ticket-price, .ticket-prize {
    text-align: center;
    flex: 1;
}

.price-label, .prize-label {
    display: block;
    font-size: 10px;
    color: #9ca3af;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value, .prize-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.ticket-progress-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.progress-bar-mini {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill-mini {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.progress-text-mini {
    font-size: 10px;
    color: #9ca3af;
    white-space: nowrap;
}

.ticket-buttons {
    display: flex;
    gap: 8px;
}

.btn-ticket-contact, .btn-ticket-site, .btn-ticket-sold {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-ticket-contact {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #ffffff;
}

.btn-ticket-contact:hover {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.btn-ticket-site {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
}

.btn-ticket-site:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.btn-ticket-sold {
    background: #6b7280;
    color: #9ca3af;
    cursor: not-allowed;
    width: 100%;
}



.ticket-description {
    color: #9ca3af;
    line-height: 1.4;
    margin-bottom: 12px;
    font-size: 12px;
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticket-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.ticket-stat {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-label {
    display: block;
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.ticket-progress {
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 12px;
    color: #9ca3af;
    text-align: center;
}

.ticket-actions {
    display: flex;
    gap: 15px;
    align-items: end;
}

.ticket-input-group {
    flex: 1;
}

.ticket-input-group label {
    display: block;
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticket-count-input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ticket-count-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.ticket-count-input::-webkit-inner-spin-button,
.ticket-count-input::-webkit-outer-spin-button {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.btn-buy-ticket {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 120px;
}

.btn-buy-ticket:hover {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.btn-buy-ticket:disabled {
    background: #6b7280;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive Bilet Stilleri */
@media (max-width: 768px) {
    .tickets-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 10px;
    }
    
    .ticket-card {
        padding: 12px;
    }
    
    .ticket-title {
        font-size: 14px;
    }
    
    .price-value, .prize-value {
        font-size: 12px;
    }
    
    .btn-ticket-contact, .btn-ticket-site, .btn-ticket-sold {
        padding: 6px 8px;
        font-size: 10px;
    }
    
    .ticket-buttons {
        gap: 6px;
    }
    
    .tickets-track .ticket-card {
        min-width: calc(50% - 7.5px);
    }
    
    .tickets-pagination .dot {
        width: 6px;
        height: 6px;
        margin: 0 3px;
    }
}

/* ===== ÖZEL ORANLAR BÖLÜMÜ ===== */
.special-odds-section {
    margin: 40px 0;
}

.sold-out-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    z-index: 10;
}

.sold-out-badge {
    background: #dc2626;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.special-odds-header {
    text-align: left;
    margin-bottom: 30px;
}

.special-odds-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.special-odds-scroller {
    overflow: hidden;
    margin-bottom: 20px;
}

.special-odds-track {
    display: flex;
    gap: 15px;
    transition: transform 0.3s ease;
}

.special-odds-track .odds-card {
    min-width: calc(33.333% - 10px);
    flex-shrink: 0;
    width: calc(33.333% - 10px);
}

.odds-card {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.odds-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    border-radius: 16px 16px 0 0;
}

.odds-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.odds-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.odds-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    flex: 1;
    line-height: 1.2;
}

.odds-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.odds-status.available {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.odds-status.sold-out {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.odds-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    border-radius: 12px;
    padding: 4px 8px;
    margin-left: 8px;
    flex-shrink: 0;
}

.odds-value {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.odds-description {
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 10px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border-left: 3px solid #f59e0b;
}

.odds-info {
    margin-bottom: 12px;
}

.odds-bet-limits {
    display: flex;
    justify-content: space-between;
    gap: 6px;
}

.bet-limit {
    text-align: center;
    flex: 1;
    min-width: 0;
}

.limit-label {
    display: block;
    font-size: 11px;
    color: #ffffff !important;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.limit-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.limit-value.odds-value {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
}

.odds-buttons {
    display: flex;
    gap: 8px;
}

.btn-odds-site {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #ffffff;
}

.btn-odds-site:hover {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.btn-odds-sold {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 11px;
    cursor: not-allowed;
    text-align: center;
    background: #6b7280;
    color: #ffffff;
    opacity: 0.7;
}

.special-odds-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.special-odds-pagination .pagination-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: #374151;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.special-odds-pagination .pagination-dot:hover {
    background: #6b7280;
    transform: scale(1.05);
}

.special-odds-pagination .pagination-dot.active {
    background: #30b44c;
    color: #0b1221;
    transform: scale(1.05);
}

/* Responsive Özel Oranlar */
@media (max-width: 768px) {
    .special-odds-section {
        margin: 40px 0;
    }
    
    .special-odds-title {
        font-size: 28px !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        margin-bottom: 10px !important;
    }
    
    .odds-card {
        padding: 12px;
    }
    
    .odds-title {
        font-size: 14px;
    }
    
    .odds-description {
        font-size: 11px;
        padding: 6px;
    }
    
    .limit-label {
        font-size: 10px;
        color: #ffffff !important;
        font-weight: 600;
    }
    
    .limit-value {
        font-size: 12px;
    }
    
    .btn-odds-site {
        padding: 6px 8px;
        font-size: 10px;
    }
    
    .odds-buttons {
        gap: 6px;
    }
    
    .special-odds-track .odds-card {
        min-width: calc(50% - 7.5px) !important;
        width: calc(50% - 7.5px) !important;
        flex-shrink: 0 !important;
        max-width: calc(50% - 7.5px) !important;
    }
    
    .special-odds-pagination .pagination-dot {
        width: 24px;
        height: 24px;
        margin: 0 3px;
        border-radius: 50%;
        border: none;
        background: #374151;
        color: #ffffff;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 12px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .special-odds-pagination .pagination-dot:hover {
        background: #6b7280;
        transform: scale(1.05);
    }
    
    .special-odds-pagination .pagination-dot.active {
        background: #30b44c;
        color: #0b1221;
        transform: scale(1.05);
    }
}

/* Mobil Alt Menü - Sadece mobilde görünür */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 8px 0;
        z-index: 999;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.6);
        font-size: 10px;
        font-weight: 500;
        padding: 6px 12px;
        border-radius: 8px;
        transition: all 0.3s ease;
        min-width: 60px;
        position: relative;
    }
    
    .mobile-nav-item i {
        font-size: 22px;
        margin-bottom: 4px;
        transition: all 0.3s ease;
        display: block;
        line-height: 1;
        color: inherit;
    }
    
    .mobile-nav-emoji {
        font-size: 24px;
        margin-bottom: 4px;
        transition: all 0.3s ease;
        display: block;
        line-height: 1;
    }
    
    .mobile-nav-item span {
        font-size: 10px;
        white-space: nowrap;
        text-align: center;
        line-height: 1.2;
    }
    
    /* Telegram linki için özel stil - uzun metin */
    .mobile-nav-telegram span {
        font-size: 9px;
    }
    
    .mobile-nav-telegram {
        min-width: 70px;
    }
    
    /* Telegram ikonunu beyaz yap */
    .mobile-nav-telegram i.fa-telegram,
    .mobile-nav-telegram i {
        color: #ffffff !important;
        filter: none !important;
    }
    
    .mobile-nav-telegram:hover i.fa-telegram,
    .mobile-nav-telegram:hover i {
        color: #f0f0f0 !important;
        transform: scale(1.1);
        filter: none !important;
    }
    
    .mobile-nav-telegram.active i.fa-telegram,
    .mobile-nav-telegram.active i {
        color: #ffffff !important;
        transform: scale(1.15);
        filter: none !important;
    }
    
    /* Telegram ikonuna özel stil - beyaz renk garantisi */
    .mobile-bottom-nav .mobile-nav-telegram .fa-telegram {
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
    }
    
    /* Ödeme linki için özel stil - uzun metin */
    .mobile-nav-payment span {
        font-size: 9px;
    }
    
    .mobile-nav-payment {
        min-width: 70px;
    }
    
    /* Para ikonunu açık para yeşili yap */
    .mobile-nav-payment i.fa-coins,
    .mobile-nav-payment i {
        color: #4ade80 !important;
        filter: none !important;
    }
    
    .mobile-nav-payment:hover i.fa-coins,
    .mobile-nav-payment:hover i {
        color: #22c55e !important;
        transform: scale(1.1);
        filter: none !important;
    }
    
    .mobile-nav-payment.active i.fa-coins,
    .mobile-nav-payment.active i {
        color: #4ade80 !important;
        transform: scale(1.15);
        filter: none !important;
    }
    
    /* Para ikonuna özel stil - açık para yeşili garantisi */
    .mobile-bottom-nav .mobile-nav-payment .fa-coins {
        color: #4ade80 !important;
        -webkit-text-fill-color: #4ade80 !important;
    }
    
    /* Özel Oran linki için özel stil - uzun metin */
    .mobile-nav-special-odds span {
        font-size: 9px;
    }
    
    .mobile-nav-special-odds {
        min-width: 70px;
    }
    
    /* Ateş ikonunu sarı yap - daha güçlü selector */
    .mobile-nav-special-odds i.fa-fire,
    .mobile-nav-special-odds i {
        color: #ffd700 !important;
        filter: none !important;
    }
    
    .mobile-nav-special-odds:hover i.fa-fire,
    .mobile-nav-special-odds:hover i {
        color: #ffed4e !important;
        transform: scale(1.1);
        filter: none !important;
    }
    
    .mobile-nav-special-odds.active i.fa-fire,
    .mobile-nav-special-odds.active i {
        color: #ffd700 !important;
        transform: scale(1.15);
        filter: none !important;
    }
    
    /* Ateş ikonuna özel stil - sarı renk garantisi */
    .mobile-bottom-nav .mobile-nav-special-odds .fa-fire {
        color: #ffd700 !important;
        -webkit-text-fill-color: #ffd700 !important;
    }
    
    .mobile-nav-item:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }
    
    .mobile-nav-item.active {
        color: #30b44c;
        background: rgba(48, 180, 76, 0.15);
    }
    
    .mobile-nav-item.active i {
        color: #30b44c !important;
        transform: scale(1.15);
    }
    
    .mobile-nav-item:hover i {
        transform: scale(1.1);
    }
    
    .mobile-nav-item.active .mobile-nav-emoji {
        transform: scale(1.15);
    }
    
    .mobile-nav-item:hover .mobile-nav-emoji {
        transform: scale(1.1);
    }
    
    /* Footer için alt boşluk ekle (mobil menü için) */
    body {
        padding-bottom: 70px;
    }
    
    .footer {
        margin-bottom: 70px;
    }
}

/* Desktop'ta mobil alt menüyü gizle */
@media (min-width: 769px) {
    .mobile-bottom-nav {
        display: none !important;
    }
    
    body {
        padding-bottom: 0;
    }
    
    .footer {
        margin-bottom: 0;
    }
}

/* Mobil GIF Banner - Sadece mobilde görünür */
@media (max-width: 768px) {
    .mobile-gif-banner {
        width: 100%;
        padding: 5px 10px;
        background: transparent;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    
    .mobile-gif-banner:first-of-type {
        padding-top: 10px;
    }
    
    .mobile-gif-banner:last-of-type {
        padding-bottom: 10px;
    }
    
    .mobile-gif-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
        cursor: pointer;
        transition: opacity 0.3s ease;
    }
    
    .mobile-gif-banner a {
        display: block;
        width: 100%;
        text-decoration: none;
    }
    
    .mobile-gif-banner a:hover .mobile-gif-image {
        opacity: 0.9;
    }
}

/* Desktop'ta mobil GIF banner'ı gizle */
@media (min-width: 769px) {
    .mobile-gif-banner {
        display: none !important;
    }
}
