        :root {
            --dark-black: #0a0a0a;
            --black: #141414;
            --dark-gray: #1a1a1a;
            --light-gray: #a0a0a0;
            --white: #ffffff;
            --gold: #FFD700;
            --green: #4CAF50;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: var(--black);
            color: var(--white);
            line-height: 1.6;
        }

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

       
        .hero {
            background-color: var(--dark-black);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
            border-bottom: 4px solid var(--gold);
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }

        .hero-text {
            width: 55%;
        }

  
        .mobile-gloves, .mobile-background-elements {
            display: none;
        }

        h1 {
            font-size: 40px;
            color: var(--white);
            margin-bottom: 10px;
           
        }

        .hero h2 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--gold);
            text-transform: uppercase;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        .hero h2 span {
            color: var(--white);
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 25px;
            color: var(--white);
            max-width: 90%;
            opacity: 0.9;
        }

        .features-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 30px;
        }

        .feature-item {
            display: flex;
            background-color: rgb(255 255 255 / 40%);
            padding: 8px 15px;
            border-radius: 20px;
            border: 1px solid rgba(255, 215, 0, 0.3);
            align-items: center;
        }

        .feature-icon {
            width: 20px;
            height: 20px;
            margin-right: 8px;
            flex-shrink: 0;
        }

        .feature-item span {
            font-size: 14px;
            color: var(--white);
            font-weight: 500;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            transition: all 0.3s ease;
            font-size: 14px;
            position: relative;
            overflow: hidden;
        }

        .primary-btn {
            background-color: var(--gold);
            color: var(--black);
            border: 2px solid var(--gold);
        }

        .primary-btn:hover {
            background-color: transparent;
            color: var(--gold);
        }

        .secondary-btn {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .secondary-btn:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        .btn-icon {
            width: 18px;
            height: 18px;
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .cta-button:hover .btn-icon {
            transform: translateX(5px);
        }

        .hero-image {
            width: 40%;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .boxing-glove {
            position: relative;
            animation: float 4s ease-in-out infinite;
        }

        .boxing-glove img {
            width: 100%;
            max-width: 300px;
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .coin {
            position: absolute;
            width: 50px;
            height: 50px;
            animation: spin 10s linear infinite;
        }

        .coin img {
            width: 200%;
            height: 200%;
            object-fit: contain;
        }

        @keyframes spin {
            0% { transform: rotateY(0deg); }
            100% { transform: rotateY(360deg); }
        }

        .coin-1 {
            top: 20%;
            left: 0;
            animation-delay: 0s;
            animation-duration: 8s;
        }

        .coin-2 {
            top: 40%;
            right: 10%;
            animation-delay: 2s;
            animation-duration: 12s;
        }

        .coin-3 {
            bottom: 10%;
            left: 30%;
            animation-delay: 4s;
            animation-duration: 10s;
        }

        .hero-badge {
            position: absolute;
            top: 10%;
            right: 0;
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse 2s ease-in-out infinite;
        }

        .badge-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            animation: rotate 15s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

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

        .badge-content {
            position: relative;
            z-index: 2;
            text-align: center;
            line-height: 1.2;
        }

        .badge-text {
            font-size: 12px;
            color: var(--black);
            font-weight: 700;
            text-transform: uppercase;
        }

        .badge-value {
            font-size: 24px;
            color: var(--black);
            font-weight: 900;
        }

        .hero-bg-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .bg-element {
            position: absolute;
            border-radius: 50%;
            opacity: 0.05;
            background-color: var(--white);
        }

        .element-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            left: -100px;
        }

        .element-2 {
            width: 400px;
            height: 400px;
            bottom: -200px;
            right: -200px;
        }

        .element-3 {
            width: 200px;
            height: 200px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        
        .top-casinos {
            padding-top: 30px;
            margin-top: 20px;
            background-color: var(--black);
            position: relative;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .section-title {
            position: relative;
            padding-bottom: 15px;
        }

        .section-title h2 {
            font-size: 32px;
            font-weight: 800;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 10px;
        }

        .section-title p {
            font-size: 16px;
            color: var(--light-gray);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--gold);
        }

        .view-all {
            display: inline-flex;
            align-items: center;
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
            font-size: 16px;
        }

        .view-all:hover {
            color: var(--white);
        }

        .arrow-icon {
            width: 18px;
            height: 18px;
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .view-all:hover .arrow-icon {
            transform: translateX(3px);
        }

        
        .casino-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            align-items: start; 
        }

        .casino-card {
            background: var(--dark-gray);
            border-radius: 10px;
            padding: 0; 
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: 1px solid rgba(255, 255, 255, 0.05);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            min-height: 570px;
        }

        .casino-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,215,0,0.1), transparent);
            transition: all 0.8s ease;
        }

        .casino-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            border-color: rgba(255, 215, 0, 0.2);
        }

        .casino-card:hover::before {
            left: 100%;
        }

        .casino-rank {
            position: absolute;
            top: 15px;
            left: 15px;
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, var(--gold), #FFA500);
            color: var(--black);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 16px;
            box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4);
            z-index: 3;
        }

     
        .casino-header {
            text-align: center;
            padding: 50px 20px 20px; 
            height: 140px; 
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

     

        .casino-card:hover .casino-logo {
            transform: scale(1.05);
        }

        

        .casino-name {
            font-size: 19px;
            font-weight: 700;
            color: var(--white);
        }

       
        .casino-bonus {
           background: rgba(255, 215, 0, 0.1);
            border-radius: 0; 
            padding: 20px;
            margin-bottom: 0;
            border-top: 1px solid rgba(255, 215, 0, 0.2);
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
            position: relative;
            height: 120px; 
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .bonus-title {
            font-size: 17px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: -5px;
            line-height: 1.2;
            text-align: center;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .bonus-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background-color: var(--green);
            color: var(--white);
            font-size: 9px;
            padding: 3px 6px;
            border-radius: 10px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .bonus-badge.exclusive {
            background-color: #C71D1D;
        }

        .bonus-details {
            font-size: 11px;
            color: var(--light-gray);
            text-align: center;
        }

       
        .casino-rating {
                padding: 20px 0px 10px 0px;
            text-align: center;
            height: 125px; 
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .rating-title {
            font-size: 10px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 13px;
            text-transform: uppercase;
        }

        .glove-rating {
            display: flex;
            justify-content: center;
            gap: 2px;
            margin-bottom: 6px;
        }

        .glove-icon {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .casino-card:hover .glove-icon {
            transform: rotate(-10deg);
        }

        .glove-icon.empty {
            opacity: 0.3;
        }

        .rating-text {
            font-size: 12px;
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 8px;
        }

        .rating-meter {
            width: 100%;
            max-width: 180px;
            margin: 0 auto;
        }

        .meter-label {
            font-size: 10px;
            color: var(--light-gray);
            margin-bottom: 4px;
        }

        .meter-bar {
            height: 5px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: hidden;
        }

        .meter-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--gold), #FFA500);
            border-radius: 3px;
            transition: width 1.5s ease;
        }

        
        .casino-features {
      height: 95px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 5px 10px 5px;
        }

        .feature-list {
           list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    display: flex
;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 10px;
        }

        .casino-features .feature-item {
            display: flex;
            align-items: center;
            font-size: 12px;
            color: var(--light-gray);
            margin-bottom: 6px;
            background: none;
            border: none;
            padding: 0;
            border-radius: 0;
            transition: color 0.3s ease;
        }

        .casino-features .feature-item:hover {
            color: var(--white);
        }

        .feature-check {
            width: 14px;
            height: 14px;
            margin-right: 8px;
            flex-shrink: 0;
        }

        .knockout-feature {
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 6px;
            padding: 8px 10px;
            margin-top: auto; 
            transition: all 0.3s ease;
        }

        .knockout-feature:hover {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
            transform: translateY(-1px);
        }

        .knockout-badge {
            margin-right: 8px;
        }


    
        .ko-icon {
            width: 20px;
            height: 20px;
        }

        .knockout-text {
            font-size: 11px;
            color: var(--gold);
            font-weight: 700;
        }

        
        .casino-actions {
            text-align: center;
            padding: 20px;
            height: 60px; 
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .visit-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            background: linear-gradient(135deg, var(--gold), #FFA500);
            color: var(--black);
            text-decoration: none;
            padding: 18px 15px;
            border-radius: 5px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 12px;
            margin-bottom: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .visit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: all 0.5s ease;
        }

        .visit-btn:hover::before {
            left: 100%;
        }

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

        .btn-arrow {
            width: 16px;
            height: 16px;
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .visit-btn:hover .btn-arrow {
            transform: translateX(3px);
        }

        .players-online {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            color: var(--green);
            font-weight: 600;
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background-color: var(--green);
            border-radius: 50%;
            margin-right: 6px;
            animation: pulse-animation 2s infinite;
        }

        @keyframes pulse-animation {
            0% {
                box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
            }
            70% {
                box-shadow: 0 0 0 8px rgba(76, 175, 80, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
            }
        }

     
        .ring-match {
            margin: 50px 0;
            background: var(--dark-gray);
            border-radius: 15px;
            padding: 30px;
            border: 2px solid var(--gold);
            position: relative;
            overflow: hidden;
        }

        .ring-corner {
            position: absolute;
            width: 40px;
            height: 40px;
            border: 3px solid var(--gold);
        }

        .top-left {
            top: 0;
            left: 0;
            border-right: none;
            border-bottom: none;
        }

        .top-right {
            top: 0;
            right: 0;
            border-left: none;
            border-bottom: none;
        }

        .bottom-left {
            bottom: 0;
            left: 0;
            border-right: none;
            border-top: none;
        }

        .bottom-right {
            bottom: 0;
            right: 0;
            border-left: none;
            border-top: none;
        }

        .ring-match-content {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .ring-match-text {
            flex: 1;
        }

        .ring-match h3 {
            font-size: 24px;
            color: var(--gold);
            margin-bottom: 15px;
            text-transform: uppercase;
            font-weight: 700;
        }

        .ring-match p {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 15px;
            opacity: 0.9;
            line-height: 1.6;
        }

        .ring-match-btn {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, var(--gold), #FFA500);
            color: var(--black);
            padding: 12px 24px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            transition: all 0.3s ease;
            font-size: 14px;
        }

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

        .ring-match-btn .btn-icon {
            margin-left: 8px;
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .ring-match-btn:hover .btn-icon {
            transform: translateX(3px);
        }

        .ring-match-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .boxing-vs {
            position: relative;
            width: 240px;
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .vs-badge {
            position: absolute;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--gold), #FFA500);
            color: var(--black);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 24px;
            z-index: 3;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
        }

        .glove {
            position: absolute;
            width: 120px;
            height: 120px;
            z-index: 2;
        }

        .glove img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
        }

        .left-glove {
            left: 0;
            transform: rotate(-15deg);
            animation: punch-left 3s ease-in-out infinite;
        }

        .right-glove {
            right: 0;
            transform: rotate(15deg);
            animation: punch-right 3s ease-in-out infinite;
        }

        @keyframes punch-left {
            0%, 100% {
                transform: rotate(-15deg) translateX(0);
            }
            50% {
                transform: rotate(-25deg) translateX(10px);
            }
        }

        @keyframes punch-right {
            0%, 100% {
                transform: rotate(15deg) translateX(0);
            }
            50% {
                transform: rotate(25deg) translateX(-10px);
            }
        }

        @media (min-width:767px) {
          .rating-features {
          display:none;
        }
        }

       
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
            }
            
            .hero-text, .hero-image {
                width: 100%;
            }
            
            .hero-image {
                margin: 20px 0;
            }
            
            .hero h2 {
                font-size: 28px;
            }
            
            .casino-cards-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .casino-card {
                min-height: 500px;
            }

            .ring-match-content {
                flex-direction: column;
                gap: 25px;
            }

            .ring-match-text, .ring-match-image {
                width: 100%;
            }
        }

        
        @media (max-width: 768px) {
            .hero {
                padding: 40px 0;
            }

            .features-list {
                display: flex;
                flex-wrap: wrap;
                gap: 15px;
                margin-bottom: 30px;
                flex-direction: row;
            }
            
            .hero-image {
                display: none;
            }
            
            .hero-text {
                width: 100%;
                text-align: center;
                position: relative;
            }

            
            .mobile-gloves {
                display: block;
                position: absolute;
                bottom: -20px;
                right: 20px;
                width: 60px;
                height: 60px;
                z-index: 5;
            }

            .mobile-glove {
                position: absolute;
                width: 40px;
                height: 40px;
                opacity: 0.7;
            }

            .mobile-glove img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                filter: drop-shadow(0 3px 6px rgba(0,0,0,0.3));
                display: none;
            }

            .mobile-left-glove {
                left: 0;
                transform: rotate(-20deg);
                animation: mobile-punch-left 2.5s ease-in-out infinite;
            }

            .mobile-right-glove {
                right: 0;
                transform: rotate(20deg);
                animation: mobile-punch-right 2.5s ease-in-out infinite;
                animation-delay: 1.25s;
            }

        
            .mobile-background-elements {
                display: block;
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 1;
                pointer-events: none;
            }

            .mobile-bg-element {
                position: absolute;
                opacity: 0.15;
                animation-fill-mode: both;
            }

          
            .mobile-bg-glove {
                width: 35px;
                height: 35px;
            }

            .mobile-bg-glove img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
            }

            .mobile-bg-glove-1 {
                top: 10%;
                left: 10%;
                transform: rotate(-30deg);
                animation: mobile-bg-float 4s ease-in-out infinite;
            }

            .mobile-bg-glove-2 {
                top: 60%;
                right: 15%;
                transform: rotate(45deg);
                animation: mobile-bg-float 5s ease-in-out infinite;
                animation-delay: 2s;
            }

            .mobile-bg-glove-3 {
                bottom: 20%;
                left: 20%;
                transform: rotate(-60deg);
                animation: mobile-bg-float 3.5s ease-in-out infinite;
                animation-delay: 1s;
            }

          
            .mobile-bg-coin {
                width: 25px;
                height: 25px;
            }

            .mobile-bg-coin img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }

            .mobile-bg-coin-1 {
                top: 25%;
                left: 70%;
                animation: mobile-bg-spin 8s linear infinite;
            }

            .mobile-bg-coin-2 {
                top: 70%;
                left: 60%;
                animation: mobile-bg-spin 6s linear infinite;
                animation-delay: 3s;
            }

            .mobile-bg-coin-3 {
                top: 45%;
                left: 5%;
                animation: mobile-bg-spin 10s linear infinite;
                animation-delay: 1.5s;
            }

          
            .mobile-bg-bonus {
                width: 40px;
                height: 40px;
                background: linear-gradient(135deg, var(--gold), #FFA500);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 8px;
                font-weight: 700;
                color: var(--black);
            }

            .mobile-bg-bonus-1 {
                top: 35%;
                right: 5%;
                animation: mobile-bg-pulse 3s ease-in-out infinite;
            }

            .mobile-bg-bonus-2 {
                bottom: 30%;
                right: 25%;
                animation: mobile-bg-pulse 4s ease-in-out infinite;
                animation-delay: 2s;
            }

           
            @keyframes mobile-bg-float {
                0%, 100% { 
                    transform: translateY(0) rotate(var(--initial-rotation, 0deg)); 
                    opacity: 0.1;
                }
                50% { 
                    transform: translateY(-20px) rotate(calc(var(--initial-rotation, 0deg) + 10deg)); 
                    opacity: 0.2;
                }
            }

            @keyframes mobile-bg-spin {
                0% { transform: rotateY(0deg); opacity: 0.1; }
                50% { opacity: 0.2; }
                100% { transform: rotateY(360deg); opacity: 0.1; }
            }

            @keyframes mobile-bg-pulse {
                0%, 100% { 
                    transform: scale(1); 
                    opacity: 0.1;
                }
                50% { 
                    transform: scale(1.1); 
                    opacity: 0.2;
                }
            }

            @keyframes mobile-punch-left {
                0%, 100% {
                    transform: rotate(-20deg) translateX(0);
                }
                50% {
                    transform: rotate(-30deg) translateX(5px);
                }
            }

            @keyframes mobile-punch-right {
                0%, 100% {
                    transform: rotate(20deg) translateX(0);
                }
                50% {
                    transform: rotate(30deg) translateX(-5px);
                }
            }
            
            .hero h1 {
                font-size: 28px;
            }
            
            .hero h2 {
                font-size: 24px;
            }
            
            .hero p {
                font-size: 16px;
                text-align: center;
                margin-left: 20px;
            }
            
            .features-list {
                justify-content: center;
                gap: 10px;
            }
            
            .feature-item {
                padding: 6px 12px;
            }
            
            .feature-item span {
                font-size: 12px;
            }
            
            .cta-buttons {
                flex-direction: column;
                width: 100%;
                gap: 12px;
                display: none;
            }
            
            .cta-button {
                width: 100%;
                justify-content: center;
                padding: 14px 20px;
            }

            .casino-cards-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

          
            .casino-card {
                height: auto;
                min-height: auto;
                border: 2px solid var(--gold);
                border-radius: 15px;
                overflow: hidden;
                background: var(--dark-gray);
                padding: 0;
            }

            .casino-rank {
                top: 15px;
                left: 15px;
                width: 35px;
                height: 35px;
                font-size: 16px;
                z-index: 10;
            }

         
            .casino-header {
                text-align: center;
                padding: 60px 20px 20px;
                background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
                position: relative;
                height: auto;
                margin-bottom: 0;
            }

            .casino-logo-link {
                display: inline-block;
                text-decoration: none;
                        display: flex
;
        flex-direction: column;
        align-items: center;
            }

          

            .casino-name {
           margin-top: 20px;
        font-size: 20px!important;
        font-weight: 700;
        color: var(--white);
        text-transform: uppercase;
        letter-spacing: 1px;
        text-align: center;
        display: flex;
        align-items: center;
            }

         
            .casino-bonus {
                padding: 25px 20px;
                background: var(--black);
                border-top: 1px solid rgba(255, 215, 0, 0.3);
                border-radius: 0;
                height: auto;
                margin-bottom: 0;
            }

            .bonus-title {
                font-size: 18px;
                font-weight: 700;
                color: var(--gold);
                margin-bottom: 10px;
                text-align: center;
                line-height: 1.3;
            }

            .bonus-badge {
                             top: -15px;
        right: 18px;
        font-size: 12px;
        padding: 4px 15px;
        border-radius: 12px;
            }

            .bonus-details {
                font-size: 12px;
                color: #ffffff;
                text-align: center;
                margin-top: -15px;
            }

          
            .casino-rating {
                padding: 15px 20px;
                background: var(--black);
                border-top: 1px solid rgba(255, 215, 0, 0.3);
                height: auto;
                margin-bottom: 0;
                text-align: left;
            }

            .rating-title {
                font-size: 10px;
                font-weight: 600;
                color: #ffffff;
                margin-bottom: 8px;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

            .rating-row {
                     display: flex
;
        justify-content: space-between;
        gap: 10px;
        flex-direction: column;
        align-items: center;
            }

            .rating-left {
                display: flex;
                align-items: center;
                gap: 8px;
                        margin-top: 10px;
            }

            .glove-rating {
                display: flex;
                gap: 2px;
                justify-content: flex-start;
                margin-bottom: 0;
            }

            .glove-icon {
                        width: 18px;
        height: 18px;
            }

            .rating-text {
                font-size: 12px;
                color: var(--gold);
                font-weight: 700;
                white-space: nowrap;
                margin-bottom: 0;
            }

            .rating-features {
                      display: flex;
        gap: 10px;
        font-size: 10px;
        color: var(--light-gray);
        flex-wrap: wrap;
        flex: 1;
        justify-content: center;
        text-align: center;
            }

            .rating-feature {
                white-space: nowrap;
            }

            .rating-meter {
                display: none;
            }

          
            .casino-features {
                display: none;
            }

            .casino-actions {
                padding: 20px;
                background: var(--black);
                height: auto;
                margin-top: 0;
            }

            .visit-btn {
                padding: 16px 20px;
                border-radius: 8px;
                font-size: 14px;
                text-transform: uppercase;
                position: relative;
                overflow: hidden;
            }

            .visit-btn::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
                transition: all 0.5s ease;
            }

            .visit-btn:hover::before {
                left: 100%;
            }

            .btn-arrow {
                width: 18px;
                height: 18px;
                margin-left: 8px;
            }

            .players-online {
                margin-top: 12px;
                font-size: 11px;
            }

            .section-header {
                flex-direction: column;
                text-align: center;
                gap: 20px;
                display: none;
            }

            .section-title::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .ring-match {
                padding: 20px;
                margin: 30px 0;
            }

            .ring-match h3 {
                font-size: 20px;
            }

            .boxing-vs {
                width: 200px;
                height: 150px;
            }

            .vs-badge {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .glove {
                width: 100px;
                height: 100px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 30px 0;
            }
            
            .container {
                padding: 0 15px;
            }
            
            .hero h1 {
                font-size: 24px;
            }
            
            .hero h2 {
                font-size: 20px;
            }
            
            .hero p {
                font-size: 14px;
            }
            
            .features-list {
                gap: 8px;
            }
            
            .feature-item {
                padding: 5px 10px;
            }
            
            .feature-item span {
                font-size: 11px;
            }
            
            .casino-rank {
            width: 30px;
        height: 30px;
        font-size: 14px;
        top: 10px;
        left: 25px;
            }

            .casino-header {
                padding: 20px 15px 15px;
            }

            .casino-logo {
                width: 120px;
                height: 60px;
            }

            .casino-name {
                font-size: 18px;
            }

            .bonus-title {
                font-size: 16px;
            }

            .casino-bonus {
                padding: 30px 0px 5px 0px;
            }

            .casino-rating {
                padding: 12px 5px;
            }

            .casino-actions {
                padding: 15px;
            }

            .ring-match {
                padding: 15px;
                margin: 20px 0;
            }

            .ring-match h3 {
                font-size: 18px;
            }

            .ring-match p {
                font-size: 14px;
            }

            .boxing-vs {
                width: 160px;
                height: 120px;
            }

            .vs-badge {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .glove {
                width: 80px;
                height: 80px;
            }

            .ring-corner {
                width: 30px;
                height: 30px;
                border-width: 2px;
            }
        }

/* Latest News Overrides */
    .latest-news .card-meta {
      margin-top: auto;
      padding-top: 12px;
    }
    .latest-news .article-stats {
      display: flex;
      align-items: center;
      gap: 15px;
      margin: 0;
    }
    .latest-news .stat-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: #888;
      background: none !important;
      border: none !important;
      padding: 0 !important;
      height: auto !important;
      flex-direction: row !important;
    }
    .latest-news .stat-item svg {
      width: 16px !important;
      height: 16px !important;
      opacity: 0.6;
      flex-shrink: 0;
    }
    .latest-news .reading-time {
      font-size: 13px;
      color: #888;
      padding-left: 12px;
      border-left: 1px solid rgba(255,255,255,0.15);
    }
    .latest-news .article-excerpt {
      font-size: 14px;
      color: #999;
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 15px;
    }
