#primary-menu li.current > a {
    background: #0f3460;
    color: #748be0;
}

.entry-header {
    margin-bottom: 20px;
}

.entry-title {
    font-size: 1.8em;
    color: #333;
    border-bottom: 2px solid #1859a3;
    padding-bottom: 10px;
}

.casino-list {
    max-width: 600px;
    margin: 20px auto;
}

.casino-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    margin-bottom: 10px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    background: #fafafa;
}

.casino-list-item img {
    max-width: 180px;
    height: auto;
    border-radius: 5px;
}

.content-with-image {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.content-image {
    flex: 0 0 260px;
}

.content-image img {
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.image-caption {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: 8px;
}

.content-text {
    flex: 1;
}

@media (max-width: 600px) {
    .casino-list-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .casino-list-item img {
        max-width: 100%;
    }
    
    .content-with-image {
        flex-direction: column;
    }
    
    .content-image {
        flex: 1;
        text-align: center;
    }
}