/*
Theme Name: Astra Child
Template: astra
Description: Child theme for Astra
Version: 1.0.0
Author: Your Name
*/

/* Casino Cards - Vertical Layout - COMPACT VERSION */
.casino-cards-container {
    max-width: 1400px;
    margin: 40px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.casino-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.casino-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateY(-8px);
}

/* Position Number - Top Left Corner */
.casino-position {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border: 3px solid #fff;
}

/* Featured Ribbon - Top Right */
.featured-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    padding: 5px 40px;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(255,107,53,0.4);
    z-index: 5;
    text-align: center;
    min-width: 140px;
}

.casino-logo {
    margin-bottom: 12px;
    margin-top: 15px;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-logo img {
    max-width: 100%;
    max-height: 70px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.casino-name {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.casino-rating {
    margin-bottom: 12px;
}

.stars {
    display: flex;
    gap: 3px;
    justify-content: center;
}

.star {
    font-size: 18px;
    color: #f7931e;
}

.star.empty {
    color: #e0e0e0;
}

/* Bonus Type - Bigger with Green/Teal Color */
.bonus-type {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 8px 20px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(16,185,129,0.3);
}

/* Bonus Offer - Fixed height to prevent asymmetry */
.bonus-offer {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-details {
    width: 100%;
    background: #fafafa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 16px;
    border: 1px solid #f0f0f0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid #e8e8e8;
}

.detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-label {
    color: #666;
    font-weight: 500;
}

.detail-value {
    color: #1a1a1a;
    font-weight: 700;
}

/* Play Button - Natural Green */
.casino-cta {
    display: inline-block;
    width: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16,185,129,0.3);
    margin-top: auto;
}

.casino-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16,185,129,0.5);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #fff;
}

/* Responsive - stack on mobile */
@media (max-width: 768px) {
    .casino-cards-container {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    
    .casino-card {
        padding: 20px 18px;
    }
    
    .featured-ribbon {
        font-size: 7px;
        padding: 5px 35px;
    }
    
    .bonus-offer {
        min-height: 50px;
    }
}