/*
Theme Name:   Hello Elementor Child
Description:  Child theme for Hello Elementor
Author:       R.P
Author URI:   https://yoursite.com
Template:     hello-elementor
Version:      1.0.0
Text Domain:  hello-elementor-child
*/

/* ============================================
   THEME COLORS
   ============================================ */
:root {
    --primary-color: #8d0000;
    --primary-dark: #6a0000;
    --primary-light: #b30000;
    --accent-gold: #FFD700;
    --accent-silver: #C0C0C0;
    --accent-bronze: #CD7F32;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f7f7f7;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

/* ============================================
   CASINO LEADERBOARD - MODERN DESIGN
   ============================================ */

.casino-leaderboard {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
    max-width: 1200px;
}

.casino-card {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(141, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(141, 0, 0, 0.1);
}

.casino-card:hover {
    box-shadow: 0 8px 24px rgba(141, 0, 0, 0.15);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

/* ============================================
   DESKTOP LAYOUT (Horizontal)
   ============================================ */

.casino-content {
    display: grid;
    grid-template-columns: 80px 180px 1fr 200px;
    gap: 24px;
    padding: 24px;
    align-items: center;
}

/* ============================================
   RANK BADGE
   ============================================ */

.casino-rank {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(141, 0, 0, 0.3);
    position: relative;
}

.casino-rank::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid rgba(141, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* Top 3 Special Colors */
.casino-card:nth-child(1) .casino-rank {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #FFA500 100%);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.casino-card:nth-child(1) .casino-rank::after {
    border-color: rgba(255, 215, 0, 0.3);
}

.casino-card:nth-child(2) .casino-rank {
    background: linear-gradient(135deg, var(--accent-silver) 0%, #808080 100%);
    box-shadow: 0 4px 12px rgba(192, 192, 192, 0.4);
}

.casino-card:nth-child(2) .casino-rank::after {
    border-color: rgba(192, 192, 192, 0.3);
}

.casino-card:nth-child(3) .casino-rank {
    background: linear-gradient(135deg, var(--accent-bronze) 0%, #8B4513 100%);
    box-shadow: 0 4px 12px rgba(205, 127, 50, 0.4);
}

.casino-card:nth-child(3) .casino-rank::after {
    border-color: rgba(205, 127, 50, 0.3);
}

/* ============================================
   LOGO SECTION
   ============================================ */

.casino-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-wrapper {
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.casino-card:hover .logo-wrapper {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(141, 0, 0, 0.1);
}
.elementor-1442 .elementor-element.elementor-element-a62fcdf > .elementor-widget-container {
    background-color: transparent !important;
    margin: 0px 0px 0px 0px;
    padding: 25px 25px 20px 25px;
    border: none !important;

}
/* Logo Images */
[class*="logo-"] {
    display: block;
    text-indent: -9999px;
    text-align: left;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    padding: 10px;
}

.logo-rabona {
    background-image: var(--logo-rabona);
}
.bg-rabona {
    background: #CC0034;
}
.logo-axe {
    background-image: url('/wp-content/themes/hello-elementor-child/images/axe-casino-logo.png')
}
.bg-axe {
    background: #1a1937;
}
.logo-betrophy {
    background-image: url('/wp-content/themes/hello-elementor-child/images/betrophy.svg')
}
.bg-betrophy {
    background: #000;
}
.logo-24-slots {
    background-image: url('/wp-content/themes/hello-elementor-child/images/24slots.svg')
}
.bg-24-slots {
    background: #171a21;
}
/* ============================================
   BONUS TEXT
   ============================================ */

.casino-bonus {
    flex: 1;
    padding: 0 16px;
}

.casino-bonus p {
    margin: 0;
    font-size: 22px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
}

/* ============================================
   CTA BUTTONS
   ============================================ */

.casino-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 180px;
}

.btn-play-now {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(141, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-play-now:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(141, 0, 0, 0.4);
    color: white;
}

.btn-play-now:active {
    transform: translateY(0);
}

.btn-review {
    display: inline-block;
    padding: 10px 24px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-review:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(141, 0, 0, 0.2);
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 1024px) {
    .casino-content {
        grid-template-columns: 70px 150px 1fr 180px;
        gap: 16px;
        padding: 20px;
    }
    
    .casino-rank {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .logo-wrapper {
        width: 140px;
        height: 70px;
    }
    
    .casino-cta {
        min-width: 160px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (Vertical Layout)
   ============================================ */

@media (max-width: 768px) {
    .casino-leaderboard {
        gap: 16px;
    }
    
    .casino-card {
        border-radius: 12px;
    }
    
    /* Vertical Layout */
    .casino-content {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        text-align: center;
    }
    
    /* Rank at top */
    .casino-rank {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin: 0 auto;
    }
    
    .casino-rank::after {
        width: 60px;
        height: 60px;
    }
    
    /* Logo below rank */
    .casino-logo {
        width: 100%;
    }
    
    .logo-wrapper {
        width: 140px;
        height: 70px;
        margin: 0 auto;
    }
    
    /* Bonus text centered */
    .casino-bonus {
        width: 100%;
        padding: 0;
    }
    
    .casino-bonus p {
        font-size: 18px;
        text-align: center;
    }
    
    /* Buttons full width */
    .casino-cta {
        width: 100%;
        min-width: auto;
    }
    
    .btn-play-now {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .btn-review {
        width: 100%;
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ============================================
   EXTRA SMALL MOBILE
   ============================================ */

@media (max-width: 480px) {
    .casino-content {
        padding: 16px;
        gap: 12px;
    }
    
    .casino-rank {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .logo-wrapper {
        width: 120px;
        height: 60px;
    }
    
}

/* ============================================
   RTL SUPPORT
   ============================================ */

[dir="rtl"] .casino-content {
    direction: rtl;
}

[dir="rtl"] .casino-bonus p {
    text-align: right;
}

@media (max-width: 768px) {
    [dir="rtl"] .casino-bonus p {
        text-align: center;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.casino-card {
    animation: fadeInUp 0.5s ease-out;
}

.casino-card:nth-child(1) { animation-delay: 0.1s; }
.casino-card:nth-child(2) { animation-delay: 0.2s; }
.casino-card:nth-child(3) { animation-delay: 0.3s; }
.casino-card:nth-child(4) { animation-delay: 0.4s; }
.casino-card:nth-child(5) { animation-delay: 0.5s; }

/* ============================================
   ACCESSIBILITY
   ============================================ */

.btn-play-now:focus,
.btn-review:focus {
    outline: 3px solid rgba(141, 0, 0, 0.3);
    outline-offset: 2px;
}

/* ============================================
   CUSTOM STYLES - Add below
   ============================================ */


.custom-site-footer {
    background: #121212;
    color: #fff;
    padding: 60px 20px 40px;
    margin-top: 80px;
}

.footer-decoration {
    height: 80px;
    background: linear-gradient(to bottom, #c41230 0%, #8b0a1f 100%);
    margin: -60px -20px 40px;
    position: relative;
    overflow: hidden;
}

.footer-decoration::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 80px,
        rgba(0,0,0,0.1) 80px,
        rgba(0,0,0,0.1) 160px
    );
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-inner {
    padding: 0 20px;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #c41230;
}

.footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, #c41230, transparent);
    max-width: 300px;
}

.divider-icon {
    font-size: 24px;
}

.footer-text {
    max-width: 900px;
    margin: 0 auto 40px;
}

.footer-text p {
    text-align: justify;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #fff;
    font-size: 16px;
}

.footer-text a {
    color: #c41230;
    text-decoration: none;
    font-weight: 600;
}

.footer-text a:hover {
    text-decoration: underline;
}

.footer-badge {
    display: flex;
    justify-content: center;
    margin: 40px 0 20px;
}

.age-badge {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    color: #c41230;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    border: 4px solid #c41230;
    box-shadow: 0 4px 12px rgba(196, 18, 48, 0.3);
}

.footer-message {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-message p {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

@media (max-width: 768px) {
    .custom-site-footer {
        padding: 40px 15px 30px;
    }
    
    .footer-decoration {
        height: 60px;
        margin: -40px -15px 30px;
    }
    
    .footer-menu {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-text p {
        font-size: 14px;
        text-align: left;
    }
    
    .age-badge {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .footer-message p {
        font-size: 16px;
    }
}
.footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.divider-line {
    flex-grow: 1;
    height: 0;
    border-top: 2px solid #f61e1e;
    max-width: 150px;
}

.divider-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* SwissBets Breadcrumbs */
.swissbets-breadcrumbs {
    margin: 20px 0 30px;
    padding: 20px;
    top: 50px;
    position: relative;
    background: #c60000;
}

.breadcrumbs-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #fff;
}

.breadcrumbs-wrapper a {
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.breadcrumbs-wrapper span:hover, .breadcrumbs-wrapper a:hover {
    color: #005177 !important;
    text-decoration: underline !important;
}

.breadcrumb-home svg {
    width: 14px;
    height: 14px;
    margin-right: 3px;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #fff;
    font-weight: 400;
}

.breadcrumb-current {
    color: #b8b8b8;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumbs-wrapper {
        font-size: 13px;
        padding: 10px 0;
    }
    .swissbets-breadcrumbs {
    margin: -17px 0 30px;
}
    .breadcrumb-separator {
        margin: 0 6px;
    }
}