/* Russia Casino Rating Plugin Styles */

.rcr-casino-rating {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
}

.rcr-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rcr-casino-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    border: 1px solid #e8ecf0;
    transition: all 0.3s ease;
}

.rcr-casino-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.rcr-rank-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.rcr-rank-number {
    font-size: 24px;
    font-weight: 800;
    color: #2c3e50;
}

.rcr-casino-logo {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2c3e50;
    border-radius: 8px;
    border: 2px solid #34495e;
    padding: 10px;
}

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

.rcr-casino-info {
    flex: 1;
    min-width: 0;
}

.rcr-casino-header {
    margin-bottom: 15px;
}

.rcr-casino-name {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rcr-new-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.rcr-arrow {
    color: #6c757d;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.rcr-casino-name:hover .rcr-arrow {
    transform: translateX(3px);
}

.rcr-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.rcr-stars {
    display: flex;
    gap: 2px;
}

.rcr-star {
    color: #ddd;
    font-size: 18px;
    transition: color 0.2s ease;
}

.rcr-star.filled {
    color: #ffd700;
    text-shadow: 0 1px 3px rgba(255, 215, 0, 0.5);
}

.rcr-rating-number {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.rcr-expert-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #2c3e50;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

.rcr-checkmark {
    color: #28a745;
    font-weight: 700;
}

.rcr-bonus {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.4;
}

.rcr-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.rcr-features-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rcr-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #495057;
    line-height: 1.3;
}

.rcr-feature .rcr-checkmark {
    color: #28a745;
    font-weight: 700;
    flex-shrink: 0;
}


.rcr-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 150px;
}

.rcr-visit-button {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white !important;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 120px;
    text-decoration: none !important;
    display: inline-block;
    text-align: center;
}

.rcr-visit-button:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    color: white !important;
    text-decoration: none !important;
}

.rcr-visit-button:visited {
    color: white !important;
}

.rcr-visit-button:active {
    color: white !important;
}

.rcr-visit-button:focus {
    color: white !important;
}


.rcr-disclaimer {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #ffc107;
    border-radius: 0 8px 8px 0;
}

.rcr-disclaimer p {
    margin: 0;
    font-size: 13px;
    color: #6c757d;
    line-height: 1.5;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .rcr-casino-rating {
        padding: 15px;
    }
    
    .rcr-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .rcr-casino-card {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    
    .rcr-rank-badge {
        align-self: center;
        width: 50px;
        height: 50px;
    }
    
    .rcr-rank-number {
        font-size: 20px;
    }
    
    .rcr-casino-logo {
        align-self: center;
        width: 100px;
        height: 60px;
    }
    
    .rcr-casino-name {
        font-size: 20px;
        justify-content: center;
    }
    
    .rcr-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .rcr-actions {
        flex-direction: row;
        justify-content: center;
        min-width: auto;
        width: 100%;
    }
    
    .rcr-visit-button {
        flex: 1;
        max-width: 200px;
    }
    
}

@media (max-width: 480px) {
    .rcr-casino-rating {
        padding: 10px;
    }
    
    .rcr-casino-card {
        padding: 15px;
    }
    
    .rcr-title {
        font-size: 20px;
    }
    
    .rcr-casino-name {
        font-size: 18px;
        flex-direction: column;
        gap: 5px;
    }
    
    .rcr-bonus {
        font-size: 14px;
    }
    
    .rcr-features {
        gap: 8px;
    }
    
    .rcr-feature {
        font-size: 13px;
    }
    
    .rcr-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .rcr-visit-button {
        width: 100%;
        max-width: none;
    }
}

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

.rcr-casino-card {
    animation: fadeInUp 0.6s ease-out;
}

.rcr-casino-card:nth-child(2) { animation-delay: 0.1s; }
.rcr-casino-card:nth-child(3) { animation-delay: 0.2s; }
.rcr-casino-card:nth-child(4) { animation-delay: 0.3s; }
.rcr-casino-card:nth-child(5) { animation-delay: 0.4s; }

/* Hover effects for interactive elements */
.rcr-casino-name {
    cursor: pointer;
    transition: color 0.3s ease;
}

.rcr-casino-name:hover {
    color: #007bff;
}


/* Focus styles for accessibility */
.rcr-visit-button:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .rcr-casino-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .rcr-visit-button {
        display: none;
    }
    
    .rcr-disclaimer {
        background: #f0f0f0;
        border-left: 4px solid #666;
    }
}

