* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #202233;
    padding: 0;
    color: #e0e0e0;
    position: relative;
    transition: padding-right 0.3s ease;
}

body.sidebar-open {
    padding-right: 160px;
}

body:not(.sidebar-open) {
    padding-right: 0;
}

.container {
    max-width: 1200px;
    margin: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    overflow: hidden;
    background-color: #2c2f44;
}

/* Ana başlık stilleri */
.main-header {
    background: linear-gradient(135deg, #ff7b25 0%, #ff4a4a 100%);
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.main-header h1 {
    color: #fff;
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.main-header::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -150px;
    left: -100px;
}

.main-header::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    bottom: -100px;
    right: -70px;
}

/* Kategori bölümleri */
.category {
    margin-bottom: 40px;
    display: block;
}

.category:last-child {
    margin-bottom: 0;
}

/* Kategori başlıkları */
.header {
    background: linear-gradient(135deg, #ff7b25 0%, #ff4a4a 100%);
    padding: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 5px;
    border-top: 1px solid #202233;
}

.header h1, .header h2 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.header::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    left: -50px;
}

.header::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    bottom: -70px;
    right: -50px;
}

/* Site listesi stilleri */
.site-list {
    display: flex;
    flex-direction: column;
    background-color: #2c2f44;
}

.site-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-bottom: 1px solid #3a3d52;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.site-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background-color: #ff7b25;
    transform: scaleY(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.site-item:hover::before {
    transform: scaleY(1);
}

.site-item:hover {
    background-color: #343850;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.site-item:last-child {
    border-bottom: none;
}

.site-logo {
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    height: 50px;
    overflow: hidden;
}

.site-logo img {
    max-width: 140px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.site-bonus {
    width: 60%;
    padding: 0 30px;
}

.site-bonus p {
    font-size: 18px;
    color: #fff;
    margin: 0;
    line-height: 1.5;
}

.register-btn {
    width: 20%;
    text-align: right;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(to right, #ff7b25, #ff4a4a);
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 74, 74, 0.4);
}

.special-item {
    background: linear-gradient(135deg, rgba(255, 123, 37, 0.1), rgba(255, 74, 74, 0.1));
    border: 1px solid rgba(255, 123, 37, 0.2);
    margin: 10px 0;
    border-radius: 10px;
}

.special-item .site-logo {
    width: 35%;
    position: relative;
    height: 50px;
    padding: 5px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.special-item .site-logo img {
    max-width: 140px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.special-item .site-bonus {
    width: 60%;
    padding: 0 40px;
}

.special-item .site-bonus p {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.special-item .register-btn {
    width: 20%;
}

.special-item .btn {
    background: linear-gradient(to right, #ff7b25, #ff4a4a);
    padding: 14px 35px;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 74, 74, 0.3);
}

.special-item .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 74, 74, 0.5);
}

.editor-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #ff7b25, #ff4a4a);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255, 74, 74, 0.3);
    animation: pulse 2s infinite;
    z-index: 2;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobil düzeni için ek stiller */
@media (max-width: 768px) {
    body.sidebar-open {
        padding-right: 0;
    }

    body:not(.sidebar-open) {
        padding-right: 15px;
    }

    body:not(.sidebar-open) .site-section {
        padding-right: 15px;
    }

    .container {
        margin: 0;
        border-radius: 0;
    }

    .top-banner {
        position: relative;
        z-index: 1;
    }

    .sidebar {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100%;
        background-color: #2c2f44;
        z-index: 1000;
        transition: right 0.3s ease;
    }

    .sidebar.hidden {
        right: -300px;
    }

    body.sidebar-open .sidebar {
        right: 0;
    }
    
    .main-header {
        padding: 20px 15px;
    }
    
    .main-header h1 {
        font-size: 24px;
    }
    
    .category {
        margin-bottom: 2px;
    }
    
    .header {
        padding: 1px;
        margin-bottom: 2px;
    }
    
    .header h1, .header h2 {
        font-size: 15px;
        letter-spacing: 0.3px;
    }
    
    .header::before, .header::after {
        display: none;
    }
    
    .site-list {
        gap: 0px;
        background-color: #202233;
    }
    
    .site-item {
        padding: 15px;
        flex-direction: row;
        align-items: center;
    }
    
    .site-logo {
        width: 35%;
        height: 40px;
        padding: 4px;
    }
    
    .site-logo img {
        max-width: 120px;
        max-height: 32px;
    }
    
    .site-bonus {
        width: 70%;
        text-align: center;
        padding: 0 10px;
    }
    
    .site-bonus p {
        font-size: 12px;
        line-height: 1.3;
        white-space: normal;
    }
    
    .register-btn {
        width: 20%;
        padding: 0 5px;
    }
    
    .btn {
        padding: 8px 12px;
        font-size: 12px;
        width: 100%;
        white-space: nowrap;
        text-align: center;
    }
    
    .special-item {
        margin: 5px 0;
        border-radius: 8px;
    }
    
    .special-item .site-logo {
        width: 25%;
        height: 40px;
        padding: 4px;
    }
    
    .special-item .site-logo img {
        max-width: 120px;
        max-height: 32px;
    }
    
    .special-item .site-bonus p {
        font-size: 12px;
    }
    
    .special-item .btn {
        font-size: 12px;
    }
    
    .top-banner {
        margin-bottom: 0;
        font-size: 13px;
        padding: 10px 5px;
        border-radius: 0;
    }
    
    .banner-link {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 5px;
    }
    
    .casino-name {
        font-size: 14px;
    }
    
    .register-banner-btn {
        
        padding: 6px 8px;
        font-size: 12px;
        margin-left: 3px;
        flex-shrink: 0;
        border-radius: 50px;
        min-width: 65px;
        text-align: center;
    }
    
    .site-card {
        width: 110px;
        height: 140px;
        padding: 8px 4px;
        margin: 0;
        border-radius: 10px;
    }
    
    .site-card img {
        width: 120%;
        height: 100px;
        margin-bottom: -20px;
        margin-top: -30px;
    }
    
    .site-card .bonus-text {
        font-size: 12px;
        padding: 4px 6px;
        max-width: 100px;
        border-radius: 12px;
    }
    
    .close-btn {
        top: -4px;
        right: -4px;
        width: 20px;
        height: 20px;
        font-size: 14px;
    }
    
    .toggle-sidebar {
        right: 120px;
    }
}

@media (max-width: 480px) {
    body.sidebar-open {
        padding-right: 130px;
    }
    
    .editor-badge {
        padding: 2px 4px;
        font-size: 8px;
        top: -3px;
        right: -3px;
    }
    
    .site-item {
        padding: 2px;
    }
    
    .site-logo {
        width: 25%;
        height: 35px;
        padding: 3px;
    }
    
    .site-logo img {
        max-width: 80px;
        max-height: 28px;
    }
    
    .site-bonus {
        width: 70%;
        text-align: center;
        padding: 0 5px;
    }
    
    .site-bonus p {
        font-size: 11px;
        line-height: 1.2;
    }
    
    .register-btn {
        width: 18%;
        padding: 0 3px;
    }
    
    .btn {
        padding: 6px 8px;
        font-size: 11px;
        border-radius: 15px;
    }
    
    .toggle-sidebar {
        right: 110px;
    }
    
    .toggle-sidebar i {
        font-size: 16px;
    }
}

/* Üst banner alanı */
.top-banner {
    width: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    padding: 8px 15px;
    color: white;
    font-size: 16px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 8px;
    row-gap: 5px;
}

.casino-name {
    color: #ff2828;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    min-width: max-content;
    background: linear-gradient(135deg, #ff0000 0%, #ff0000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: #ff0000;
}

.banner-text {
    color: white;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.register-banner-btn {
    background: linear-gradient(135deg, #ff7b25 0%, #ff4a4a 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(255, 74, 74, 0.3);
}

.register-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 74, 74, 0.5);
    background: linear-gradient(135deg, #ff8c42 0%, #ff5c5c 100%);
}

@media (max-width: 768px) {
    .top-banner {
        padding: 6px 10px;
        min-height: 45px;
    }
    
    .banner-link {
        gap: 6px;
        row-gap: 4px;
    }
    
    .casino-name {
        font-size: 14px;
    }
    
    .banner-text {
        font-size: 14px;
        min-width: 150px;
    }
    
    .register-banner-btn {
        padding: 6px 15px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .top-banner {
        padding: 0px 8px;
        min-height: auto;
    }
    
    .banner-link {
        gap: 4px;
        row-gap: 3px;
    }
    
    .casino-name {
        font-size: 13px;
    }
    
    .banner-text {
        font-size: 13px;
        min-width: 120px;
    }
    
    .register-banner-btn {
        padding: 5px 12px;
        font-size: 12px;
    }
}

/* Hide scrollbars but keep functionality */
.banner-link::-webkit-scrollbar {
    display: none;
}

.banner-link {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Site Section Styles */
.site-section {
    background-color: #2c2f44;
    border-radius: 16px;
    overflow: hidden;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    margin-bottom: 30px;
    transition: padding-right 0.3s ease;
}

body:not(.sidebar-open) .site-section {
    padding-right: 110px;
}

@media (max-width: 768px) {
    .site-section {
        padding: 10px;
        border-radius: 12px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .site-section {
        padding: 5px;
        border-radius: 8px;
        margin-bottom: 2px;
    }
}

/* Enhanced Betting Grid Styles */
.betting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.betting-row {
    display: contents;
}

.betting-site {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background-color: #343850;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3a3d52;
    height: 100%;
}

.betting-site:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 123, 37, 0.2);
    border-color: rgba(255, 123, 37, 0.3);
}

.betting-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    overflow: hidden;
    padding: 15px;
    margin-bottom: 0;
    background-color: #2c2f44;
}

.betting-logo img {
    max-width: 120%;
    max-height: 50px;
    object-fit: contain;
    width: auto;
    height: auto;
    transition: transform 0.3s ease;
}

.betting-site:hover .betting-logo img {
    transform: scale(1.05);
}

.betting-bonus {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 10px;
    background: linear-gradient(135deg, #ff7b25, #ff4a4a);
    color: white;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    flex-grow: 1;
}

.betting-bonus::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: 1;
}

.betting-site:hover .betting-bonus::before {
    left: 100%;
}

@media (max-width: 768px) {
    .betting-grid {
        gap: 5px;
        margin-top: 15px;
    }
    
    .betting-site {
        border-radius: 8px;
    }
    
    .betting-logo {
        height: 60px;
        padding: 10px;
    }
    
    .betting-logo img {
        max-height: 30px;
    }
    
    .betting-bonus {
        font-size: 11px;
        padding: 3px 6px;
    }
}

@media (max-width: 480px) {
    .betting-grid {
        gap: 0px;
        margin-top: 10px;
    }
    
    .betting-site {
        border-radius: 6px;
    }
    
    .betting-logo {
        height: 30px;
        padding: 8px;
    }
    
    .betting-logo img {
        max-height: 33px;
    }
    
    .betting-bonus {
        font-size: 9px;
        padding: 1px 4px;
    }
}

/* Alt banner alanı */
.bottom-banner {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    background-color: #202233;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.bottom-banner h2 {
    text-align: center;
    color: #ffff00;
    font-size: 18px;
    margin-bottom: 15px;
    padding: 8px;
    background-color: #ffff00;
    color: #ff0000;
}

.banner-sites {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.banner-site {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.banner-site img {
    height: 40px;
    width: auto;
    margin-bottom: 8px;
    object-fit: contain;
}

.banner-site span {
    text-align: center;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    background-color: #4caf50;
    width: 100%;
    padding: 8px 0;
    border-radius: 3px;
    color: #fff;
}

@media (max-width: 768px) {
    .bottom-banner {
        border-radius: 0;
        margin: 0;
        padding: 10px;
    }
    
    .banner-sites {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-site img {
        height: 30px;
    }
    
    .banner-site span {
        font-size: 12px;
        padding: 6px 0;
    }
}

/* Editör seçimi başlığı için özel stil */
#editor .header {
    background: linear-gradient(135deg, #ff7b25 0%, #ff4a4a 100%);
}

#editor .header h1 {
    color: #fff;
}

@media (max-width: 768px) {
    /* ... diğer mobil stiller ... */
    
    #editor {
        display: block !important;
        margin-bottom: 20px;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    #editor .header {
        display: block !important;
        background: linear-gradient(135deg, #ff7b25 0%, #ff4a4a 100%);
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    #editor .site-list {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background-color: #282b3d;
    }
    
    .special-item .site-logo {
        position: relative;
        width: 25%;
        padding: 5px;
        display: flex !important;
        justify-content: center;
        align-items: center;
    }
    
    .special-item .register-btn .btn {
        background: linear-gradient(to bottom, #ff7b25, #ff4a4a);
        box-shadow: 0 2px 5px rgba(255, 74, 74, 0.3);
    }
    
    .editor-badge {
        position: absolute;
        top: -15px;
        right: 2px;
        padding: 3px 6px;
        font-size: 9px;
        background: linear-gradient(to bottom, #ff7b25, #ff4a4a);
        border-radius: 10px;
        white-space: nowrap;
        z-index: 5;
        display: block !important;
    }
    
    .site-item.special-item {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        background-color: #2c2f44;
        margin-bottom: 2px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        flex-direction: row;
        padding: 15px;
        border-bottom: none;
    }
    
    .site-item.special-item .site-bonus {
        width: 70%;
        display: flex !important;
        align-items: center;
    }
    
    .site-item.special-item .site-bonus p {
        color: #e0e0e0;
        background: none;
        border: none;
        font-size: 12px;
        padding: 0;
        margin: 0;
        box-shadow: none;
    }
    
    .site-item.special-item .register-btn {
        width: 25%;
        display: block !important;
    }
    
    .site-item.special-item:hover {
        background-color: #343850;
    }
    
    .special-btn {
        display: inline-block !important;
        font-size: 13px;
        padding: 8px 2px;
        width: 100%;
        text-align: center;
        border-radius: 20px;
        background: linear-gradient(to bottom, #ff7b25, #ff4a4a);
        color: white;
    }
}

@media (max-width: 480px) {
    .special-btn {
        font-size: 12px;
        padding: 7px 2px;
    }
}

.special-btn {
    background: linear-gradient(to bottom, #ff7b25, #ff4a4a);
    color: white;
    padding: 10px 15px;
    font-weight: 600;
}

.special-btn:hover {
    background: linear-gradient(to bottom, #ff8c42, #ff5c5c);
}

/* Yan panel (sidebar) için stiller */
.sidebar {
    position: fixed;
    right: 0;
    top: 24px;
    width: 120px;
    background-color: #202233;
    border-left: 1px solid #3a3d52;
    padding: 10px 3px;
    transition: transform 0.3s ease;
    z-index: 999;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    height: calc(100vh - 50px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0px;
}

.sidebar.hidden {
    transform: translateX(120px);
}

.site-card {
    position: relative;
    background-color: #202233;
    border-radius: 4px;
    padding: 4px;
    margin-bottom: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    width: 110px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.site-card img {
    width: 80%;
    height: 30px;
    object-fit: contain;
    border-radius: 4px;
    margin-bottom: 0;
    padding: 4px;
    background: #000;
}

.site-card .bonus-text {
    font-size: 9px;
    font-weight: 500;
    color: #ff7b25;
    background: rgba(255, 123, 37, 0.1);
    padding: 1px 4px;
    border-radius: 2px;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
    line-height: 1.2;
}

.close-btn {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 16px;
    height: 16px;
    background-color: #202233;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
    z-index: 10;
    line-height: 1;
    font-weight: normal;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mobil için responsive tasarım */
@media (max-width: 768px) {
    .site-card {
        width: 110px;
        height: 50px;
        padding: 4px;
        margin: 0 0 4px 0;
        border-radius: 4px;
    }
    
    .site-card img {
        width: 80%;
        height: 30px;
        margin-bottom: 0;
        margin-top: 0;
    }
    
    .site-card .bonus-text {
        padding: 1px 4px;
        font-size: 9px;
        max-width: 100%;
        color: #ff7b25;
        background: rgba(255, 123, 37, 0.1);
    }
}

/* Daha küçük ekranlar için responsive tasarım */
@media (max-width: 480px) {
    .site-card {
        width: 110px;
        height: 50px;
        margin: 0 0 4px 0;
        padding: 4px;
    }
    
    .site-card img {
        width: 80%;
        height: 30px;
        margin-bottom: 0;
    }
    
    .site-card .bonus-text {
        padding: 1px 4px;
        font-size: 9px;
        max-width: 100%;
        margin-top: 2px;
        color: #ff7b25;
        background: rgba(255, 123, 37, 0.1);
    }
}

.toggle-sidebar {
    position: fixed;
    top: 50%;
    right: 120px;
    transform: translateY(-50%);
    background: linear-gradient(to bottom, #ff7b25, #ff4a4a);
    color: white;
    width: 80px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px 0 0 6px;
    cursor: pointer;
    z-index: 1001;
    box-shadow: -3px 0 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 12px;
    padding: 0 5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-right: none;
}

.toggle-sidebar:hover {
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.4);
    background: linear-gradient(to bottom, #ff8c42, #ff5c5c);
}

.toggle-sidebar.hidden {
    right: 0;
    width: 40px;
}

.toggle-sidebar.hidden .toggle-text {
    display: none;
}

.toggle-sidebar i {
    font-size: 18px;
    margin-right: 5px;
}

.toggle-text {
    font-size: 12px;
    letter-spacing: 1px;
}

/* Pop-up Modal Stilleri */
.popup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    padding: 20px;
    backdrop-filter: blur(2px);
    background-color: rgba(0, 0, 0, 0.5);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-content {
    border-radius: 12px;
    width: 400px;
    max-width: 95%;
    overflow: hidden;
    animation: scaleIn 0.4s ease;
    margin: 20px auto;
    position: relative;
    padding-bottom: 20px;
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.popup-header {
    background: linear-gradient(135deg, #ff7b25 0%, #ff4a4a 100%);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.popup-header h2 {
    color: #fff;
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.popup-close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.popup-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.popup-body {
    padding: 20px;
    color: #e0e0e0;
    text-align: center;
    position: relative;
}

.popup-close-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(to bottom, #ff7b25, #ff4a4a);
    color: white;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
    border: 2px solid white;
    line-height: 1;
}

.popup-close-btn:hover {
    background: linear-gradient(to bottom, #ff8c42, #ff5c5c);
}

/* Sadece ilk popup için çarpı butonunun konumu */
#welcome-popup .popup-close-btn {
    bottom: 10px;
    top: auto;
}

@media (max-width: 768px) {
    .popup-content {
        width: 90%;
        margin: 15px auto;
        padding-bottom: 20px;
    }
    
    .popup-header h2 {
        font-size: 20px;
    }
    .toggle-sidebar {
        right: 120px;
    }
    .popup-close-btn {
        width: 32px;
        height: 32px;
        font-size: 24px;
        bottom: 8px;
    }
    
    #welcome-popup .popup-close-btn {
        bottom: 5px;
    }
    
    .betting-list {
        padding-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .popup-content {
        width: 95%;
        margin: 10px auto;
        padding-bottom: 10px;
    }
    
    .popup-body {
        padding: 15px 10px;
    }
    
    .popup-header {
        padding: 12px;
    }
    
    .popup-header h2 {
        font-size: 18px;
    }
    
    .popup-close-btn {
        width: 30px;
        height: 30px;
        font-size: 22px;
        bottom: 6px;
    }
    
    #welcome-popup .popup-close-btn {
        bottom: 5px;
    }
    
    .betting-list {
        padding-bottom: 15px;
    }
}

/* Betting list stilleri */
.betting-list {
    display: flex;
    flex-direction: column;
    gap: 1;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 20px;
}

.betting-list-item {
    display: flex;
    align-items: center;
    background-color: #202233;
    border-radius: 1;
    padding: 8px;
    border: none;
    border-bottom: 1px solid #3a3d52;
    transition: all 0.3s ease;
}

.betting-list-item:last-child {
    border-bottom: none;
}

.betting-list-item:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.betting-list-item:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.betting-list-logo {
    width: 85px;
    min-width: 85px;
    height: 38px;
    margin-right: 8px;
    margin-bottom: 2px;
}

.betting-list-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.betting-list-bonus {
    flex: 1;
    margin-right: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}

.betting-list-btn {
    min-width: 70px;
    padding: 6px 10px;
    font-size: 13px;
    display: inline-block;
    background: linear-gradient(to bottom, #ff7b25, #ff4a4a);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.betting-list-btn:hover {
    background: linear-gradient(to bottom, #ff8c42, #ff5c5c);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 74, 74, 0.3);
}

.popup-disclaimer {
    color: #9599b3;
    font-size: 12px;
    margin-top: 10px;
}

/* Mobil için pop-up stilleri */
@media (max-width: 768px) {
    .popup-content {
        width: 90%;
        margin: 15px auto;
        padding-bottom: 45px;
    }
    
    .popup-header h2 {
        font-size: 20px;
    }
    
    .betting-list-item {
        padding: 6px;
    }
    
    .betting-list-logo {
        width: 85px;
        min-width: 85px;
        height: 38px;
        margin-right: 8px;
        margin-bottom: 2px;
    }
    
    .betting-list-bonus {
        font-size: 12px;
    }
    
    .betting-list-btn {
        min-width: 65px;
        padding: 5px 8px;
        font-size: 12px;
    }
    
    .popup-close-btn {
        width: 26px;
        height: 26px;
        font-size: 20px;
        top: 8px;
    }
}

@media (max-width: 480px) {
    .popup-content {
        width: 95%;
        margin: 10px auto;
        padding-bottom: 20px;
    }
    
    .popup-body {
        padding: 15px 10px;
    }
    
    .popup-header {
        padding: 12px;
    }
    
    .popup-header h2 {
        font-size: 18px;
    }
    
    .betting-list {
        gap: 0px;
        padding-bottom: 25px;
    }
    
    .betting-list-item {
        padding: 5px;
    }
    
    .betting-list-logo {
        width: 75px;
        min-width: 75px;
        height: 32px;
        margin-right: 6px;
        margin-bottom: 2px;
    }
    
    .betting-list-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    
    .betting-list-bonus {
        font-size: 11px;
    }
    
    .betting-list-btn {
        min-width: 60px;
        padding: 4px 6px;
        font-size: 11px;
    }
    
    .popup-disclaimer {
        font-size: 10px;
    }
    
    .popup-close-btn {
        width: 24px;
        height: 24px;
        font-size: 18px;
        top: 6px;
    }
}

/* iPhone için özel düzenleme */
@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
    .popup-close-btn {
        width: 36px;
        height: 36px;
        font-size: 24px;
        bottom: 10px;
    }
    
    .betting-list {
        padding-bottom: 50px;
    }
}

/* iPhone 11 için özel düzenlemeler */
@media only screen 
and (device-width: 414px) 
and (device-height: 896px) 
and (-webkit-device-pixel-ratio: 2) {
    .popup-close-btn {
        width: 40px;
        height: 40px;
        font-size: 28px;
        bottom: 15px;
    }
    
    .betting-list {
        padding-bottom: 60px;
    }
    
    .betting-list-item {
        padding: 8px;
    }
    
    .betting-list-logo {
        width: 22%;
    }
    
    .betting-list-bonus {
        font-size: 12px;
    }
    
    .betting-list-btn {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* Grid Pop-up Stilleri */
.grid-popup-content {
    width: 600px;
    max-width: 95%;
    padding: 10px 0;
}

.betting-grid-popup {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 6px 10px;
    overflow-y: visible;
}

.betting-grid-row {
    display: flex;
    justify-content: space-between;
    gap: 4px;
}

.betting-grid-item {
    flex: 1;
    background-color: #2c2f44;
    border-radius: 8px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid #3a3d52;
}

.betting-grid-item:hover {
    border-color: #ff7b25;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.betting-grid-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    background-color: #ffffff;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 6px;
    overflow: hidden;
}

.betting-grid-logo img {
    max-width: 70%;
    max-height: 45px;
    object-fit: contain;
    width: auto;
    height: auto;
}

.betting-grid-bonus {
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: -2px;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.betting-grid-btn {
    display: block;
    width: 80%;
    background: linear-gradient(to bottom, #ff7b25, #ff4a4a);
    color: white;
    text-align: center;
    padding: 2px 0;
    border-radius: 5px;
    font-weight: 600;
    font-size: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.betting-grid-btn:hover {
    background: linear-gradient(to bottom, #ff8c42, #ff5c5c);
}

.betting-grid-close {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    background: linear-gradient(to bottom, #ff7b25, #ff4a4a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.betting-grid-close:hover {
    background: linear-gradient(to bottom, #ff8c42, #ff5c5c);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .grid-popup-content {
        width: 95%;
        padding: 4px 8px;
    }
    
    .betting-grid-popup {
        padding: 4px 8px;
        margin-top: 30px;
    }
    
    .betting-grid-row {
        gap: 3px;
    }
    
    .betting-grid-item {
        padding: 3px;
    }

    .betting-grid-close {
        width: 16px;
        height: 16px;
        font-size: 12px;
        top: -5px;
        right: -5px;
    }
}

@media (max-width: 480px) {
    .betting-grid-popup {
        padding: 3px 6px;
        margin-top: 30px;
    }
    
    .betting-grid-row {
        gap: 2px;
    }
    
    .betting-grid-item {
        padding: 2px;
    }

    .betting-grid-close {
        width: 20px;
        height: 20px;
        font-size: 20px;
        top: -4px;
        right: -4px;
    }
}

/* Dikey Liste Pop-up Stilleri */
.vertical-popup-content {
    width: 380px;
    max-width: 95%;
  
    padding: 15px 0;
}

.betting-vertical-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding: 5px 10px;
}

.betting-vertical-item {
    background-color: #2c2f44;
    border-radius: 6px;
    padding: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #3a3d52;
}

.betting-vertical-item:hover {
    border-color: #ff7b25;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.betting-vertical-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    background-color: #ffffff;
    border-radius: 4px;
    padding: 5px;
    margin-bottom: 6px;
    overflow: hidden;
}

.betting-vertical-logo img {
    max-width: 90%;
    max-height: 30px;
    object-fit: contain;
    width: auto;
    height: auto;
}

.betting-vertical-bonus {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 8px;
}

.betting-vertical-btn {
    display: block;
    width: 90%;
    background: linear-gradient(to bottom, #ff7b25, #ff4a4a);
    color: white;
    text-align: center;
    padding: 8px 0;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.betting-vertical-btn:hover {
    background: linear-gradient(to bottom, #ff8c42, #ff5c5c);
    transform: translateY(-2px);
}

.betting-vertical-item .betting-vertical-close {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 25px;
    height:25px;
    background: linear-gradient(to bottom, #ff7b25, #ff4a4a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.betting-vertical-close:hover {
    background: linear-gradient(to bottom, #ff8c42, #ff5c5c);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .vertical-popup-content {
        width: 340px;
        padding: 10px 0;
    }
    
    .betting-vertical-list {
        gap: 6px;
        padding: 40px;
    }
    
    .betting-vertical-item {
        padding: 8px;
    }
    
    .betting-vertical-logo {
        height: 35px;
        margin-bottom: 5px;
    }
    
    .betting-vertical-logo img {
        max-height: 25px;
    }
    
    .betting-vertical-bonus {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .betting-vertical-btn {
        padding: 6px 0;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .vertical-popup-content {
        width: 300px;
    }
    
    .betting-vertical-item {
        padding: 0px;
    }
    
    .betting-vertical-logo {
        height: 30px;
        margin-bottom: 4px;
    }
    
    .betting-vertical-logo img {
        max-height: 35px;
    }
    
    .betting-vertical-bonus {
        font-size: 11px;
        margin-bottom: 5px;
    }
    
    .betting-vertical-btn {
        padding: 0px 0;
        font-size: 10px;
    }
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 15px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    background: linear-gradient(90deg, #ff7b25, #ff4a4a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-shadow: 0 2px 15px rgba(255, 123, 37, 0.3);
}

.section-header p {
    font-size: 16px;
    color: #aab1c6;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: -30px;
        padding: 0 10px;
    }
    
    .section-header h2 {
        font-size: 22px;
        margin-bottom: 1px;
    }
    
    .section-header p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 20px;
    }
    
    .section-header p {
        font-size: 13px;
    }
}

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

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

@media (max-width: 768px) {
    .main-content {
        padding: 20px 0;
    }
    
    .main-content .container {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 15px 0;
    }
}

.casino-name {
    color: #ff2525;
    font-weight: 700;
    font-size: 18px;
    text-shadow: #ff2525;
    white-space: nowrap;
}

.register-banner-btn {
    background: linear-gradient(to bottom, #ff2525, #e30505);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    margin-left: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 74, 74, 0.4);
    white-space: nowrap;
}

.register-banner-btn:hover {
    background: linear-gradient(to bottom, #ff8c42, #ff5c5c);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 74, 74, 0.5);
}

/* Hide scrollbars but keep functionality */
.banner-link::-webkit-scrollbar,
.sidebar::-webkit-scrollbar {
    display: none;
}

.banner-link,
.sidebar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.fixed-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000000;
    color: #fff;
    padding: 15px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.fixed-banner-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 8px;
}

.fixed-banner-site {
    color: #7cba3d;
    font-weight: 700;
    font-size: 16px;
}

.fixed-banner-text {
    color: white;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fixed-banner-btn {
    background-color: #7cba3d;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: 10px;
}

.fixed-banner-btn:hover {
    background-color: #8fd44a;
}

@media (max-width: 768px) {
    .fixed-banner {
        padding: 12px;
    }

    .fixed-banner-site {
        font-size: 14px;
    }

    .fixed-banner-text {
        font-size: 14px;
    }

    .fixed-banner-btn {
        padding: 6px 15px;
        font-size: 13px;
        margin-left: 8px;
    }
}

@media (max-width: 480px) {
    .fixed-banner {
        padding: 10px;
    }

    .fixed-banner-site {
        font-size: 13px;
    }

    .fixed-banner-text {
        font-size: 13px;
    }

    .fixed-banner-btn {
        padding: 5px 12px;
        font-size: 12px;
        margin-left: 6px;
    }
}

.site-item.special-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 123, 37, 0.1), rgba(255, 74, 74, 0.1));
    border: 1px solid rgba(255, 123, 37, 0.2);
    margin: 10px 0;
    border-radius: 10px;
    padding: 30px 40px;
    position: relative;
}

.site-item.special-item .site-logo {
    width: 35%;
    position: relative;
    height: 50px;
    padding: 5px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.site-item.special-item .site-logo img {
    max-width: 140px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.site-item.special-item .site-bonus {
    width: 60%;
    padding: 0 30px;
}

.site-item.special-item .site-bonus p {
    font-size: 18px;
    color: #fff;
}

.site-item.special-item .register-btn {
    width: 20%;
}

.site-item.special-item .btn {
    background: linear-gradient(to right, #ff7b25, #ff4a4a);
    padding: 12px 30px;
    font-size: 16px;
}

.editor-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ff7b25, #ff4a4a);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(255, 74, 74, 0.3);
    z-index: 2;
}

@media (max-width: 768px) {
    .site-item.special-item {
        padding: 15px;
        margin: 5px 0;
        border-radius: 8px;
    }

    .site-item.special-item .site-logo {
        width: 35%;
        height: 40px;
        padding: 4px;
    }

    .site-item.special-item .site-logo img {
        max-width: 120px;
        max-height: 32px;
    }

    .site-item.special-item .site-bonus {
        width: 45%;
        padding: 0 10px;
    }

    .site-item.special-item .site-bonus p {
        font-size: 12px;
        line-height: 1.3;
    }

    .site-item.special-item .register-btn {
        width: 20%;
        padding: 0 5px;
    }

    .site-item.special-item .btn {
        padding: 8px 12px;
        font-size: 12px;
        width: 100%;
    }

    .editor-badge {
        top: -8px;
        right: -8px;
        padding: 4px 8px;
        font-size: 10px;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .site-item.special-item {
        padding: 10px;
        margin: 3px 0;
        border-radius: 6px;
    }

    .site-item.special-item .site-logo {
        width: 35%;
        height: 35px;
        padding: 3px;
    }

    .site-item.special-item .site-logo img {
        max-width: 100px;
        max-height: 28px;
    }

    .site-item.special-item .site-bonus {
        width: 45%;
        padding: 0 5px;
    }

    .site-item.special-item .site-bonus p {
        font-size: 11px;
        line-height: 1.2;
    }

    .site-item.special-item .register-btn {
        width: 18%;
        padding: 0 3px;
    }

    .site-item.special-item .btn {
        padding: 6px 8px;
        font-size: 11px;
        border-radius: 15px;
    }

    .editor-badge {
        top: -6px;
        right: -6px;
        padding: 3px 6px;
        font-size: 9px;
        border-radius: 12px;
    }
} 