/* CasinoHEX Exact Clone CSS - Screenshot Match */

/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #121212;
    color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    font-size: 13px;
}

a {
    color: #C10000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header Styles */
.site-header {
    background: #1a1a1a;
    border-bottom: 1px solid #333;
}

/* Top Bar */
.top-bar {
    background: #0f0f0f;
    border-bottom: 1px solid #222;
    padding: 8px 0;
    font-size: 11px;
}

.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.disclaimer-text {
    color: #888;
}

.age-restriction {
    background: #d32f2f;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: bold;
    font-size: 10px;
}

.trust-badges {
    display: flex;
    gap: 15px;
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #aaa;
    font-size: 10px;
}

.trust-badges .badge img {
    width: 12px;
    height: 12px;
}

/* Main Header */
.main-header {
    background: #1a1a1a;
    padding: 0;
    height: 128px;
}

.main-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 40px;
    height: 100%;
}

.logo-section .site-logo {
    font-size: 18px;
    font-weight: bold;
    color: #C10000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 100%;
}

.logo-section .site-logo:hover {
    text-decoration: none;
}

.logo-section .custom-logo-link img {
    width: auto;
}

/* Logo styling to match HEX design */
.logo-section .site-logo .logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1;
}

.logo-section .site-logo::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #C10000;
    border-radius: 3px;
    position: relative;
    margin-right: 6px;
}

/* Main Navigation */
.main-navigation {
    flex: 1;
}

.main-navigation .main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 35px;
}

.main-navigation .main-menu li {
    position: relative;
}

.main-navigation .main-menu li.menu-item-has-children > a::after {
    content: "▼";
    font-size: 8px;
    margin-left: 6px;
    color: #999;
    transition: color 0.3s ease;
    font-weight: normal;
}

.main-navigation .main-menu li.menu-item-has-children:hover > a::after {
    color: #C10000;
}

.main-navigation .main-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 17px 0;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    line-height: 1;
}

.main-navigation .main-menu a:hover {
    color: #C10000;
    text-decoration: none;
}

/* Dropdown menus */
.main-navigation .main-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 1px;
}

.main-navigation .main-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .main-menu .sub-menu li {
    width: 100%;
    border-bottom: 1px solid #444;
}

.main-navigation .main-menu .sub-menu li:last-child {
    border-bottom: none;
}

.main-navigation .main-menu .sub-menu a {
    padding: 15px 20px;
    font-size: 14px;
    text-transform: none;
    letter-spacing: normal;
    border-bottom: none;
    color: #ccc;
    font-weight: normal;
    transition: all 0.2s ease;
}

.main-navigation .main-menu .sub-menu a:hover {
    background: #C10000;
    color: #ffffff;
    padding-left: 25px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.sign-up-btn {
    background: #C10000;
    color: #000;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.sign-up-btn:hover {
    background: #C10000
;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 3px;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

/* Page Title Section */
.page-title-section {
    background: #1f1f1f;
    padding: 25px 0;
    border-bottom: 1px solid #333;
}

.page-title-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-title {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-align: center;
}

.casino-tools {
    display: flex;
    justify-content: center;
}

.sort-filter-tools {
    display: flex;
    gap: 20px;
    align-items: center;
}

.sort-control, .filter-control, .search-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-control img, .filter-control img, .search-control img {
    width: 16px;
    height: 16px;
}

.sort-control select {
    background: #333;
    color: #fff;
    border: 1px solid #555;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 12px;
}

.filter-btn {
    background: #333;
    color: #fff;
    border: 1px solid #555;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
}

.filter-btn:hover {
    background: #444;
}

.search-control input {
    background: #333;
    color: #fff;
    border: 1px solid #555;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 12px;
    width: 200px;
}

.search-control input::placeholder {
    color: #888;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .trust-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .header-content {
        gap: 20px;
        justify-content: space-between;
    }
    
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-section .site-logo .logo-text {
        font-size: 24px;
    }
    
    .logo-section .site-logo::before {
        width: 28px;
        height: 28px;
    }
    
    .page-title {
        font-size: 22px;
    }
    
    .sort-filter-tools {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-control input {
        width: 250px;
    }
}

/* Main Container */
.site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Page Content Section */
.page-content-section {
    margin-bottom: 30px;
}

.page-content-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-content {
    margin-bottom: 20px;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-content h1 {
    font-size: 28px;
}

.page-content h2 {
    font-size: 24px;
}

.page-content h3 {
    font-size: 20px;
}

.page-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #cccccc;
}

.page-content ul,
.page-content ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

.page-content li {
    margin-bottom: 5px;
    color: #cccccc;
}

.page-content strong {
    color: #ffffff;
}

.page-content a {
    color: #C10000;
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}

/* Wide Banner Section */
.wide-bans {
    margin-bottom: 40px;
}

.wide-bans .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.wide-bans-slider {
    position: relative;
}

.wide-bans-slide {
    background: linear-gradient(135deg, #1a4d3a 0%, #2d8a5f 50%, #C10000 100%);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* When background image is set, adjust height to 1200x327 aspect ratio */
.wide-bans-slide[style*="background-image"] {
    height: 327px;
    min-height: 327px;
    max-height: 327px;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* For different screen sizes, maintain 1200:327 aspect ratio */
@media (max-width: 1200px) {
    .wide-bans-slide[style*="background-image"] {
        height: calc(100vw * 327 / 1200);
        min-height: calc(100vw * 327 / 1200);
        max-height: calc(100vw * 327 / 1200);
    }
}

/* Minimum height constraint for very small screens */
@media (max-width: 600px) {
    .wide-bans-slide[style*="background-image"] {
        height: 163px;
        min-height: 163px;
        max-height: 163px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}


.wide-bans-sur-cont {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
}

.wide-bans-sur-ttl {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.banner-accent,
.wide-bans-accent {
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.wide-bans-sur-txt {
    font-size: 1.2rem;
    margin-bottom: 24px;
    opacity: 0.9;
    line-height: 1.4;
}

.wide-bans-sur-act {
    margin-top: 24px;
}

.user-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.user-btn.green {
    background: linear-gradient(45deg, #C10000, #C10000
);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 206, 87, 0.3);
}

.user-btn.green:hover {
    background: linear-gradient(45deg, #C10000
, #20c997);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 206, 87, 0.4);
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 12px;
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    background: linear-gradient(45deg, #C10000, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

/* Casino Listing */
.casino-listing {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.listing-itm {
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
    padding: 0;
}

.listing-itm:hover {
    border: 1px dashed #C10000;
}


/* Rank Number */
.listing-rank {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 32px;
    height: 32px;
    color: white;
    border-radius: 50%;
    border: 1px solid var(--Grey-border, #38383b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    z-index: 10;
}

.hex-img {
    aspect-ratio: 100/100;
   
   border-radius: 50%;
}
.listing-logo img, .logo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: contain;
    object-position: center center;
    display: block;
}

/* Main Content */


/* Top Section Layout */
.listing-top-section {
    display: grid;
    border-radius: 8px;
    grid-template-columns: 10% 15% 25% 20% 25%;
    gap: 10px;
    align-items: center;
    padding: 40px 20px 40px 20px;
    background: linear-gradient(147.74deg, #0C0C0C 2.14%, #61231A 179.35%);
    transition: border-radius 0.3s ease;
}

/* Top section with rounded bottom when collapsed */
.listing-itm:not(.expanded) .listing-top-section {
    border-radius: 8px;
}

/* Top section with square bottom when expanded */
.listing-itm.expanded .listing-top-section {
    border-radius: 8px 8px 0px 0px;
}

/* Casino Info */
.listing-info {
    min-height: 100px;
}

.listing-title {
    margin: 0 0 6px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.listing-title a {
    color: #ffffff;
    text-decoration: none;
}

.listing-title a:hover {
    color: #C10000;
}

.hex-verified {
    background: transparent;
    color: #38c727
;
    padding: 0;
    border-radius: 0;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 8px;
}
.hex-verified::before {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 20 20'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='url(%23b)' d='M18.617 8.04a3.4 3.4 0 0 1-.69-.615c.016-.328.082-.651.196-.959.215-.728.483-1.635-.033-2.345-.52-.715-1.471-.74-2.235-.759a3.3 3.3 0 0 1-.954-.102 3.2 3.2 0 0 1-.388-.868c-.255-.725-.572-1.629-1.422-1.905-.825-.268-1.566.241-2.219.69-.262.209-.556.374-.872.49a3.1 3.1 0 0 1-.872-.49C8.475.726 7.734.22 6.909.486c-.85.276-1.167 1.18-1.422 1.905a3.3 3.3 0 0 1-.384.864 3.2 3.2 0 0 1-.958.106c-.764.02-1.714.043-2.235.759-.516.71-.248 1.617-.033 2.345.113.306.18.627.197.953q-.301.36-.691.62C.767 8.51 0 9.096 0 10c0 .906.767 1.491 1.383 1.961q.387.261.69.615c-.016.328-.082.651-.196.959-.215.728-.484 1.635.033 2.345.52.715 1.471.74 2.235.759.321-.013.643.022.954.102.171.269.302.561.388.868.255.725.572 1.629 1.423 1.905q.227.075.466.074c.64 0 1.224-.401 1.752-.763.262-.21.557-.375.872-.49.315.114.61.28.873.49.652.448 1.393.955 2.218.689.85-.276 1.167-1.18 1.422-1.905.086-.305.215-.596.384-.864.312-.084.635-.12.958-.106.764-.02 1.715-.043 2.235-.759.517-.71.249-1.617.033-2.346a3.3 3.3 0 0 1-.197-.952c.2-.239.433-.448.691-.62C19.233 11.49 20 10.904 20 10s-.767-1.49-1.383-1.96m-4.903.466-4.166 4.166a.833.833 0 0 1-1.179 0L6.286 10.59a.833.833 0 1 1 1.178-1.178l1.494 1.494 3.578-3.578a.833.833 0 1 1 1.178 1.179'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='b' x1='-30.427' x2='11.07' y1='.413' y2='24.577' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23caff70'/%3E%3Cstop offset='1' stop-color='%232fc423'/%3E%3C/linearGradient%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h20v20H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") no-repeat 50%/contain;
    content: "";
    display: block;
    height: 20px;
    width: 20px;
    float: left;
    margin-right: 5px;
}
.casino-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #fff;
    margin-bottom: 12px;
}

.info-btn {
    background: none;
    border: none;
    color: #C10000;
    cursor: pointer;
    padding: 0;
    font-size: 14px;
    display: none;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 4px;
}

.star {
    color: #ffc107;
    font-size: 16px;
}

.rating-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.add-favorite {
    background: transparent;
    border: 1px solid #333333;
    color: #cccccc;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-favorite:hover {
    border-color: #C10000;
    color: #C10000;
}

/* Bonus Section */
.listing-bonus {
    text-align: center;
    padding: 12px;
    background: transparent;
    border: none;
    border-radius: 0;
}

.bonus-label {
    color: white;
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 400;
}

.bonus-value {
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    color: #FFB200
;
}

.bonus-value a {
    color: #FFB200
;
    text-decoration: none;
}

.bonus-value a:hover {
    color: #C10000;
}

/* Stats Section */
.listing-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #fff;
}

.stat-icon {
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.stat-item strong {
    color: #ffffff;
    font-weight: 500;
}

/* Action Section */
.listing-action {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.play-btn {
     --bg: var(--color-primary, #C10000);
    --bg-hover: var(--color-primary-accent, #da3131);
    color: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    background: var(--bg);
    border: 0;
    border-radius: 10px;
    -webkit-box-shadow: 0 3px 0 0 var(--shadow);
    box-shadow: 0 3px 0 0 var(--shadow);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    justify-content: center;
    line-height: normal;
    padding: 12px 24px;
    position: relative;
    text-align: center;
    text-shadow: none;
    text-transform: uppercase;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.play-btn:hover {
       background-color: #da3131;
   box-shadow: 0 1px 0 0 hsla(0, 0%, 100%, .1);
    text-decoration: none;
    transform: translateY(-1px);
}

.secure-link {
    color: #C10000
;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.review-link {
    color: #C10000;
    font-size: 13px;
    font-weight: 500;
}

/* Bottom Section Layout */
.listing-bottom-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
    align-items: start;
    padding: 0;
    border-top: 1px solid #2a2a2a;
    background-color: #2e2f33;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: height 0.5s ease, opacity 0.8s ease;
}

/* Expanded state for casino details */
.listing-itm.expanded .listing-bottom-section {
    height: auto;
    opacity: 1;
    padding: 20px;
}

/* Features */
.listing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list {
    padding: 20px;
    margin: 0;

}

.feature-list li {
    color: #cccccc;
    font-size: 13px;
}
::marker {
    color: #C10000;
    font-size: 18px;
    line-height: 0;
    vertical-align: middle;
}

.withdrawal-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #cccccc;
}

.withdrawal-info .icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.withdrawal-info strong {
    color: #C10000
;
    font-weight: 600;
}

/* Methods Section */
.methods-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.method-group {
    background: transparent;
    border-radius: 0;
    padding: 20px 0 0 0;
    border: none;
}

.method-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.method-header span {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

.show-all-btn {
    background: none;
    border: none;
    color: #ffc107;
    font-size: 11px;
    cursor: pointer;
    transition: color 0.3s ease;
    font-weight: 500;
}

.show-all-btn:hover {
    color: #ffda6a;
}

.show-all-btn.expanded {
    color: #ff6b35;
}

.show-all-btn.expanded:hover {
    color: #ff8c5a;
}

/* Developer Tags */
.developer-tags .tag {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.developer-tags .tag.developer-hidden {
    opacity: 0;
    transform: scale(0.8);
}

.developer-tags .tag.developer-hidden[style*="inline-block"] {
    opacity: 1;
    transform: scale(1);
}

.method-icons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.method-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.method-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
    border-color: #666666;
}

.method-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 2px;
}

.payment-method-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 2px;
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

.provider-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 2px;
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

.provider-icon:hover,
.payment-method-icon:hover {
    filter: brightness(1);
    transform: scale(1.05);
}

/* Ensure method icons have consistent sizing */


.developer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    background: #333333;
    color: #cccccc;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    border: 1px solid #404040;
    font-weight: 400;
    white-space: nowrap;
}

/* Developers Section */
.developers-section {
    background: transparent;
    border-radius: 0;
    padding: 20px 0 0 0;
    border: none;
}

.listing-main {
    border-radius: 20px;
    overflow: hidden;
}


/* Casino Details Button */
.casino-details {
   display: flex;
    padding: 8px 16px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
   border: 1px dashed;
    background: #242528;
    border-color: #C10000;
    color: #C10000;
    border-radius: var(--rounding, 10px);
    -webkit-box-shadow: 0 4px 16px 0 rgba(33, 33, 33, .6);
    box-shadow: 0 4px 16px 0 rgba(33, 33, 33, .6);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    gap: 8px;
    left: 50%;
    line-height: normal;
    position: absolute;
    top: 100%;
    cursor: pointer;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: all 0.3s ease;
    user-select: none;
}

.casino-details:hover {
    border-color: #da3131;
    color: #da3131;
    box-shadow: 0 6px 20px 0 rgba(33, 33, 33, .8);
}

.casino-details.expanded {
    background: #C10000;
    color: #ffffff;
    border-color: #C10000;
}

.casino-details.expanded:hover {
    background: #da3131;
    border-color: #da3131;
    color: #ffffff;
}
    .listing-itm .listing-top-section:after {
        background: #C10000;
        border-radius: 10px 0 0 10px;
        content: "";
        height: 110px;
        left: -5px;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 5px;
    }

/* Load More Button */
.load-more-section {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    /* Inherit all play-btn styles when both classes are applied */
    position: relative;
    overflow: hidden;
}

.load-more-btn:disabled {
    background: #ccc !important;
    box-shadow: 0 3px 0 0 #999 !important;
    cursor: not-allowed;
    transform: none !important;
}

.load-more-btn.loading {
    padding-left: 50px;
}

.load-more-btn.loading::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .listing-top-section {
        grid-template-columns: 1fr 180px 240px 140px;
        gap: 24px;
    }
    
    .listing-bottom-section {
        grid-template-columns: 220px 1fr 180px;
        gap: 20px;
    }
}

@media (max-width: 1200px) {
    .listing-top-section {
        grid-template-columns: 1fr 160px 200px 120px;
        gap: 20px;
    }
    
    .listing-bottom-section {
        grid-template-columns: 200px 1fr 160px;
        gap: 16px;
    }
    
    .listing-main {
        padding: 0;
    }
}

@media (max-width: 992px) {
    .listing-itm {
        border:none;
    }
    .listing-top-section {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .listing-itm:hover {
        border: none;
    }
    
    .listing-stats {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .listing-bottom-section {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .listing-action {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 6px;
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .site-main {
        padding: 16px;
    }
    
    /* Banner Responsive */
    .wide-bans-slide {
        padding: 30px 20px;
        min-height: 180px;
    }
    
    /* Banner with background image on tablet */
    .wide-bans-slide[style*="background-image"] {
        height: calc(100vw * 327 / 1200);
        min-height: calc(100vw * 327 / 1200);
        max-height: calc(100vw * 327 / 1200);
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    .wide-bans-sur-ttl {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .wide-bans-sur-txt {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .user-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .listing-top-section {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .listing-bottom-section {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .listing-main {
        padding: 0;
    }
    
    .listing-rank, .listing-logo {
        position: relative;
        display: block;
        margin-bottom: 16px;
    }
    
    /* Logo and Info side by side on mobile */
    .listing-top-section {
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
        padding: 20px 16px;
    }
    
    .listing-logo {
        margin-bottom: 0;
    }
    
    .listing-info {
        text-align: left;
        margin-bottom: 0;
    }
    
    .casino-details {
        position: relative;
        transform: none;
        margin: -16px auto 0 auto;
        left: auto;
        width: fit-content;
    }
}

@media (max-width: 480px) {
    /* Banner Mobile */
    .wide-bans-slide {
        padding: 24px 16px;
        min-height: 160px;
    }
    
    /* Banner with background image on mobile */
    .wide-bans-slide[style*="background-image"] {
        height: 163px;
        min-height: 163px;
        max-height: 163px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    .wide-bans-sur-ttl {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .wide-bans-sur-txt {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
    
    .user-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .hero-section {
        padding: 40px 16px;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section p {
        font-size: 0.9rem;
    }
    
    .tag {
        font-size: 11px;
        padding: 4px 8px;
    }
}

.hero-section {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--ch-bg-card);
    border-radius: 8px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 2.5rem;
    margin: 0 0 1rem 0;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--ch-text-grey);
    max-width: 800px;
    margin: 0 auto;
}


/* -------------------------
   3. Casino Listing Item
   ------------------------- */
.listing-itm {
    background-color: #121212;
    margin-bottom: 35px;
    position: relative;
    border-radius: 20px;

}

.listing-cont-top {
    display: grid;
    grid-template-columns: 40px 100px 1fr 1fr 1fr 180px;
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid var(--ch-border);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.listing-pos {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--ch-orange);
    justify-self: center;
}

.logo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #333;
}

.listing-ttl {
    font-size: 1.2rem;
    margin: 0 0 5px 0;
}

.brand-vrf {
    color: var(--ch-green);
    font-weight: bold;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.listing-rate-info {
    color: var(--ch-text-grey);
    margin-bottom: 10px;
}

.rate.average-rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
}
.rate-val.high b {
    color: var(--ch-yellow);
}

.uc-fav-card-btn {
    background: transparent;
    border: 1px solid var(--ch-border);
    color: var(--ch-text-grey);
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.listing-bonus-ttl {
    color: var(--ch-text-grey);
    margin-bottom: 5px;
}

.listing-bonus-val a {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--ch-orange);
}

.listing-meta-list li {
    margin-bottom: 5px;
    color: var(--ch-text-grey);
}
.listing-meta-list li span:last-child {
    color: var(--ch-text-light);
    font-weight: bold;
}
.listing-meta-list .icon {
    margin-right: 8px;
}

.listing-act-btn .btn {
    background-color: var(--ch-green);
    color: var(--ch-text-light);
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: bold;
    display: block;
    text-align: center;
    margin-bottom: 5px;
}
.secure-link {
    color: var(--ch-text-grey);
    font-size: 0.8rem;
    text-align: center;
}

.listing-rev {
    display: block;
    text-align: center;
    margin-top: 10px;
}

.listing-cont-btm {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.hex-list li {
    margin-bottom: 5px;
}
.hex-list li::before {
    content: '•';
    color: var(--ch-green);
    margin-right: 10px;
}

.listing-limits li {
     color: var(--ch-text-grey);
}
.listing-limits .icon {
    margin-right: 8px;
}
.listing-limits span:last-child {
    color: var(--ch-green);
    font-weight: bold;
}

.more-list-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.more-list-ttl {
    font-weight: bold;
}
.more-list-btn {
    background: none;
    border: none;
    color: var(--ch-blue);
    cursor: pointer;
}

.listing-b-i {
    background-color: var(--ch-green);
    padding: 5px 10px;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
}
.listing-b-i div {
    font-size: 0.8rem;
}

.listing-expand {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: transparent;
    border: 1px solid var(--ch-border);
    color: var(--ch-text-grey);
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}

/* -------------------------
   4. Responsive Adjustments
   ------------------------- */
@media (max-width: 1200px) {
    .listing-cont-top {
        grid-template-columns: 40px 1fr 1fr 1fr 180px;
    }
}

@media (max-width: 992px) {
    .listing-cont-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .listing-pos, .listing-meta { display: none; }
    .listing-act { grid-column: 1 / -1; }
    
    .listing-cont-btm {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .listing-cont-top, .listing-cont-btm {
        grid-template-columns: 1fr;
    }
    .listing-act { text-align: center; }
    .listing-act .btn { display: inline-block; }
    .listing-expand { position: static; margin-top: 20px; width: 100%; }
}

/* Hero Banner */
.hero-banner {
    padding: 35px 20px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(31, 31, 31, 0.26) 0%, rgba(97, 35, 26, 0.26) 100%);
    box-shadow: 5.64px 2.6px 32.52px -4.77px #871D00 inset;
    border-radius: 30px;
}

.hero-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.hero-left {
    flex: 1;
    position: relative;
    max-width: 40%;
}

.hero-character {
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
}

.hero-character img {
    max-height: 400px;
    width: auto;
    object-fit: contain;
}

.hero-text {

    position: relative;
    z-index: 2;
    padding-left: 200px;
}

.hero-text h1 {
    font-size: 27px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-right {
    flex: 1;
    max-width: 55%;
}

.hero-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-card {
    border: 3px solid;
    border-radius: 20px;
    padding: 25px 15px;
    text-align: center;
    width: 171px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-card:nth-child(1) {
    position: relative;
    border: none;
    border-radius: 20px;
    background: transparent;
}

.hero-card:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 4px;
    background: linear-gradient(180deg, #3D2700 0%, #875600 20.67%, #F6AC00 51.44%, #FFEBBD 61.06%, #492800 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
}

.hero-card:nth-child(2) {
    position: relative;
    border: none;
    border-radius: 20px;
    background: transparent;
}

.hero-card:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 4px;
    background: linear-gradient(180deg, #272727 0%, #4D4D4D 20.67%, #CECECE 45.67%, #FFFFFF 56.25%, #C8C8C8 69.23%, #1C1C1C 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
}

.hero-card:nth-child(3) {
    position: relative;
    border: none;
    border-radius: 20px;
    background: transparent;
}

.hero-card:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 4px;
    background: linear-gradient(180deg, #525252 0%, #403400 20.67%, #544320 36.06%, #FFFFFF 56.25%, #372807 84.62%, rgba(39, 33, 0, 0.74) 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
}

.hero-card-logo {
    margin-bottom: 15px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.hero-card-content {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    font-weight: 600;
}

.hero-card-action {
    margin-top: auto;
}

.hero-card-button {
    background: linear-gradient(145deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 12px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    text-decoration: none;
}

.hero-card-button:hover {
    background: linear-gradient(145deg, #ef4444 0%, #dc2626 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
    text-decoration: none;
}

/* Card hover effects */
.hero-card {
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.hero-card:hover::before {
    opacity: 1;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

/* Shine effect */
.hero-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    z-index: 2;
    pointer-events: none;
}

.hero-card:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
    transition: transform 0.6s ease;
}

/* Enhanced glow for different card types */
.hero-card:nth-child(1):hover {
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.4);
}

.hero-card:nth-child(2):hover {
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(192, 192, 192, 0.4);
}

.hero-card:nth-child(3):hover {
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(205, 127, 50, 0.4);
}

.hero-card-button .button-icon {
    font-size: 16px;
}

/* Responsive Design for Hero Banner */
@media (max-width: 1200px) {
    .hero-banner {
        padding: 30px 15px;
        margin: 0 15px;
    }
    
    .hero-text {
        padding-left: 150px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .hero-character img {
        max-height: 350px;
    }
    
    .hero-cards {
        gap: 15px;
    }
    
    .hero-card {
        width: 160px;
        padding: 20px 12px;
    }
}

@media (max-width: 1024px) {
    .hero-banner {
        padding: 25px 10px;
        border-radius: 25px;
    }
    
    .hero-banner-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-left {
        display: flex;
        align-items: center;
        gap: 20px;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-character {
        position: static;
        flex: 0 0 auto;
    }
    
    .hero-character img {
        max-height: 300px;
        width: auto;
    }
    
    .hero-text {
        flex: 1;
        padding-left: 20px;
        text-align: left;
    }
    
    .hero-text h1 {
        font-size: 32px;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .hero-right {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-cards {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .hero-card {
        width: 150px;
        padding: 15px 10px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 20px 10px;
        margin: 0 10px;
        border-radius: 20px;
    }
    
    .hero-banner-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-left {
        display: flex;
        align-items: center;
        gap: 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-character {
        position: static;
        flex: 0 0 auto;
    }
    
    .hero-character img {
        max-height: 220px;
        width: auto;
    }
    
    .hero-text {
        flex: 1;
        padding-left: 15px;
        text-align: left;
    }
    
    .hero-text h1 {
        font-size: 26px;
        line-height: 1.2;
    }
    
    .hero-right {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-cards {
        display: flex;
        justify-content: center;
        gap: 8px;
        flex-wrap: nowrap;
    }
    
    .hero-card {
        width: 140px;
        padding: 12px 8px;
    }
    
    .hero-card-content {
        font-size: 12px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .hero-card-button {
        padding: 8px 6px;
        font-size: 11px;
    }
    
    .hero-card-logo {
        height: 40px;
        margin-bottom: 8px;
    }
}

@media (max-width: 600px) {
    .hero-cards {
        display: flex;
        justify-content: center;
        gap: 6px;
        flex-wrap: nowrap;
    }
    
    .hero-card {
        width: 120px;
        padding: 10px 6px;
    }
    
    .hero-card-content {
        font-size: 11px;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .hero-card-button {
        padding: 6px 4px;
        font-size: 10px;
        font-weight: bold;
    }
    
    .hero-card-logo {
        height: 35px;
        margin-bottom: 6px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        padding: 15px 5px;
        margin: 0 5px;
        border-radius: 15px;
    }
    
    .hero-banner-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-left {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-character {
        position: static;
        flex: 0 0 auto;
    }
    
    .hero-character img {
        max-height: 160px;
        width: auto;
    }
    
    .hero-text {
        flex: 1;
        padding-left: 12px;
        text-align: left;
    }
    
    .hero-text h1 {
        font-size: 20px;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    
    .hero-right {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-cards {
        display: flex;
        justify-content: center;
        gap: 5px;
        flex-wrap: nowrap;
    }
    
    .hero-card {
        width: 100px;
        padding: 8px 4px;
    }
    
    .hero-card-content {
        font-size: 10px;
        line-height: 1.2;
        margin-bottom: 8px;
    }
    
    .hero-card-button {
        padding: 5px 3px;
        font-size: 9px;
        font-weight: bold;
    }
    
    .hero-card-logo {
        height: 30px;
        margin-bottom: 5px;
    }
}

@media (max-width: 360px) {
    .hero-banner {
        padding: 12px 3px;
        margin: 0 3px;
        border-radius: 12px;
    }
    
    .hero-banner-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-left {
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-character {
        position: static;
        flex: 0 0 auto;
    }
    
    .hero-character img {
        max-height: 120px;
        width: auto;
    }
    
    .hero-text {
        flex: 1;
        padding-left: 10px;
        text-align: left;
    }
    
    .hero-text h1 {
        font-size: 18px;
        line-height: 1.2;
    }
    
    .hero-right {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-cards {
        display: flex;
        justify-content: center;
        gap: 3px;
        flex-wrap: nowrap;
    }
    
    .hero-card {
        width: auto;
        padding: 6px 3px;
    }
    
    .hero-card-content {
        font-size: 9px;
        margin-bottom: 6px;
        line-height: 1.1;
    }
    
    .hero-card-button {
        padding: 4px 2px;
        font-size: 8px;
        font-weight: bold;
    }
    
    .hero-card-logo {
        height: 25px;
        margin-bottom: 4px;
    }
}

/* Section Title */
.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    text-align: center;
}

.section-title-wrapper::before,
.section-title-wrapper::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: #C10000;
}

.section-title-wrapper h2 {
    color: #fff;
    background-color: #222;
    border: 1px solid #C10000;
    border-radius: 25px;
    padding: 10px 80px;
    margin: 0px;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    z-index: 1;
}

/* Footer Styles */
.site-footer {
    background: #1a1a1a;
    margin-top: 60px;
    position: relative;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-main .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 60px;
    padding: 20px;
    align-items: start;
}

/* Footer Social Section */
.footer-social-section {
    display: flex;
    flex-direction: column;
}

.footer-social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.footer-social-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.footer-social-link:hover {
    color: #ffffff;
    text-decoration: none;
}

/* Footer Info Section */
.footer-info-section {
    display: flex;
    flex-direction: column;
    justify-self: end;
}

.footer-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.footer-info-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.footer-info-link:hover {
    color: #ffffff;
    text-decoration: none;
}

/* Footer Logo Section */
.footer-logo-section {
    display: flex;
    justify-content: flex-start;
    padding-top: 80px;
    margin-top: 40px;
    border-top: 2px solid #ff0000;
}

.footer-logo-elements {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-slot-machine {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.slot-machine {
    background: #ffffff;
    color: #000000;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 2px;
    border: 2px solid #cccccc;
}

.logo-character {
    font-size: 24px;
    background: linear-gradient(45deg, #ff0000, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-site-logo {
    display: flex;
    justify-content: center;
}

.footer-logo-link {
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.footer-logo-link:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.footer-logo-link img {
    max-height: 60px;
    width: auto;
    display: block;
}

.footer-site-name {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

/* Footer Widget Styles */
.footer-social-widget,
.footer-logo-widget {
    width: 100%;
}

.footer-info-widget {
    width: 100%;
}

.footer-social-widget .widget,
.footer-info-widget .widget,
.footer-logo-widget .widget {
    margin-bottom: 0;
}

.footer-social-title,
.footer-info-title,
.footer-logo-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Widget menu styles for footer */
.footer-social-widget .menu,
.footer-info-widget .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
}

.footer-social-widget .menu {
    grid-template-columns: repeat(3, 1fr);
}

.footer-info-widget .menu {
    grid-template-columns: repeat(2, 1fr);
}

.footer-social-widget .menu li,
.footer-info-widget .menu li {
    margin: 0;
}

.footer-social-widget .menu a,
.footer-info-widget .menu a {
    color: #cccccc;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
    display: block;
}

.footer-social-widget .menu a:hover,
.footer-info-widget .menu a:hover {
    color: #ffffff;
    text-decoration: none;
}

/* Text widget styles for footer */
.footer-social-widget .textwidget,
.footer-info-widget .textwidget,
.footer-logo-widget .textwidget {
    color: #cccccc;
    line-height: 1.6;
}

.footer-social-widget .textwidget a,
.footer-info-widget .textwidget a,
.footer-logo-widget .textwidget a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-social-widget .textwidget a:hover,
.footer-info-widget .textwidget a:hover,
.footer-logo-widget .textwidget a:hover {
    color: #ffffff;
}

/* Custom Footer Links Widget */
.custom-footer-links .footer-custom-link:hover {
    color: #ffffff !important;
}

.custom-footer-links .footer-custom-text {
    color: #cccccc;
}

/* Custom widget styling maintained */

/* Mobile responsive for custom widget */
@media (max-width: 768px) {
    .custom-footer-links {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        text-align: center;
    }
    
    .custom-footer-links .footer-custom-link,
    .custom-footer-links .footer-custom-text {
        font-size: 14px !important;
    }
}

/* Footer Bottom - Removed to match clean design */

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .site-footer {
        border-top: 3px solid #ff0000;
    }
    
    .footer-main {
        padding: 50px 0 35px;
    }
    
    .footer-main .container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }
    
    .footer-logo-section {
        justify-content: center;
        order: -1;
        padding: 20px;
        background: rgba(255, 0, 0, 0.05);
        border-radius: 15px;
        border: 1px solid rgba(255, 0, 0, 0.2);
    }
    
    .footer-social-section,
    .footer-info-section {
        padding: 25px 20px;
        background: rgba(26, 26, 26, 0.8);
        border-radius: 12px;
        border: 1px solid #333;
    }
    
    .footer-info-section {
        justify-self: auto;
    }
    
    .footer-social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 25px;
        justify-items: center;
    }
    
    .footer-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 25px;
        justify-items: center;
    }
    
    .footer-social-link,
    .footer-info-link {
        padding: 12px 8px;
        border-radius: 8px;
        transition: all 0.3s ease;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .footer-social-link:hover,
    .footer-info-link:hover {
        background: rgba(255, 0, 0, 0.1);
        border-color: rgba(255, 0, 0, 0.3);
        transform: translateY(-2px);
    }
    
    .footer-logo-elements {
        gap: 20px;
    }
    
    .footer-site-name {
        font-size: 22px;
    }
    
    .footer-logo-link img {
        max-height: 55px;
    }
    
    .slot-machine {
        font-size: 18px;
        padding: 8px 12px;
    }
    
    .logo-character {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 35px 0 25px;
    }
    
    .footer-main .container {
        padding: 0 15px;
    }
    
    .footer-content {
        gap: 35px;
    }
    
    .footer-social-section,
    .footer-info-section {
        padding: 20px 15px;
        margin: 0 -5px;
    }
    
    .footer-logo-section {
        padding: 15px;
        margin: 0 -5px;
    }
    
    .footer-social-grid,
    .footer-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-social-link,
    .footer-info-link {
        font-size: 16px;
        padding: 15px 12px;
        min-height: 48px;
        font-weight: 500;
    }
    
    .footer-logo-elements {
        gap: 15px;
    }
    
    .footer-site-name {
        font-size: 20px;
    }
    
    .footer-logo-link img {
        max-height: 50px;
    }
    
    .slot-machine {
        font-size: 16px;
        padding: 6px 10px;
    }
    
    .logo-character {
        font-size: 20px;
    }
    
    /* Mobile widget styles */
    .footer-social-widget .menu,
    .footer-info-widget .menu {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .footer-social-widget .menu a,
    .footer-info-widget .menu a {
        font-size: 16px;
        padding: 15px 12px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .footer-social-widget .menu a:hover,
    .footer-info-widget .menu a:hover {
        background: rgba(255, 0, 0, 0.1);
        border-color: rgba(255, 0, 0, 0.3);
        transform: translateY(-2px);
    }
}

/* Extra Small Mobile Optimization */
@media (max-width: 360px) {
    .footer-main {
        padding: 30px 0 20px;
    }
    
    .footer-main .container {
        padding: 0 10px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-social-section,
    .footer-info-section {
        padding: 15px 10px;
        border-radius: 10px;
    }
    
    .footer-logo-section {
        padding: 12px;
        border-radius: 10px;
    }
    
    .footer-social-link,
    .footer-info-link {
        font-size: 15px;
        padding: 12px 8px;
        min-height: 44px;
    }
    
    .footer-social-widget .menu a,
    .footer-info-widget .menu a {
        font-size: 15px;
        padding: 12px 8px;
        min-height: 44px;
    }
    
    .slot-machine {
        font-size: 14px;
        padding: 5px 8px;
    }
    
    .logo-character {
        font-size: 18px;
    }
    
    .footer-site-name {
        font-size: 18px;
    }
    
    .footer-logo-link img {
        max-height: 45px;
    }
}

/* Spinner Section Styles */
.spinners-section {
    background: #1a1a1a;
    padding: 60px 0;
    margin: 40px 0;
    border-top: 2px solid #ff6b35;
    border-bottom: 2px solid #ff6b35;
}

.spinners-section .section-title {
    text-align: center;
    font-size: 32px;
    color: #ffd700;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.spinner-item {
    margin-bottom: 60px;
    text-align: center;
}

.spinner-item:last-child {
    margin-bottom: 0;
}

.spinner-title {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: bold;
}

.spinner-description {
    color: #cccccc;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.spinner-shortcode-container {
    margin: 40px 0;
    text-align: center;
}

.spinner-shortcode-container .spinner-title {
    font-size: 28px;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* News Section Styles */
.news-section {
    margin: 40px 0 60px 0;
    padding: 0 20px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-item {
    background: linear-gradient(147.74deg, #0C0C0C 2.14%, #61231A 179.35%);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.news-image {
    position: relative;
    border-radius: 20px;
    height: 200px;
    overflow: hidden;
}

.news-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-thumbnail {
    transform: scale(1.05);
}

/* Shine effect for news images */
.news-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    z-index: 2;
    pointer-events: none;
}

.news-item:hover .news-image::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.news-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-icon {
    font-size: 48px;
    opacity: 0.5;
}

.news-content {
    padding: 20px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 11px;
    text-transform: uppercase;
}

.news-date {
    color: #999;
    font-weight: 500;
}

.news-category {
    background: #C10000;
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 10px;
}

.news-title {
    margin: 0 0 15px 0;
    font-size: 16px;
    line-height: 1.3;
}

.news-title a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #C10000;
    text-decoration: none;
}

.news-excerpt {
    color: #cccccc;
    line-height: 1.5;
    margin: 0 0 15px 0;
    font-size: 13px;
}

.news-read-more {
    font-size: 14px !important;
    padding: 10px 20px !important;
    margin-top: 5px;
    display: inline-block;
}

.no-news {
    text-align: center;
    color: #999;
    font-style: italic;
    grid-column: 1 / -1;
    padding: 40px 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .news-section {
        margin: 30px 0 40px 0;
        padding: 0 15px;
    }
    
    .news-image {
        height: 180px;
    }
    
    .news-content {
        padding: 15px;
    }
    
    .news-title {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .news-section {
        padding: 0 10px;
    }
    
    .news-image {
        height: 160px;
    }
}

/* Benefits Banner Styles */
.benefits-banner {
    position: relative;
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    height: 400px;
    margin: 60px 20px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.benefits-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(147.74deg, #0C0C0C 2.14%, #982d1c 179.35%);
    opacity: 0.75;
    z-index: 1;
}

.benefits-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 50px;
    gap: 40px;
}

.benefits-left {
    flex: 1;
    color: #ffffff;
    max-width: 500px;
}

.benefits-title {
    font-size: 55px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.benefits-description {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    margin: 0;
    max-width: 400px;
}

.benefits-description p {
    margin: 0 0 15px 0;
}

.benefits-right {
    flex: 0 0 auto;
    min-width: 340px;
}

.benefits-buttons {
    display: flex;
    gap: 15px;
    width: 100%;
    flex-direction: column;
}

.benefits-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px 20px;
    background: #4A0000;
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 340px;
}

.benefits-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 0, 0, 0.4);
    background: #5A0000;
    text-decoration: none;
    color: #ffffff;
}

.benefits-button-icon {
    width: 36px;
    height: 36px;
    margin-right: 10px;
    flex-shrink: 0;
    display: inline-block;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Makes any colored icon white */
}

.benefits-button-text {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Shine effect for benefits buttons */
.benefits-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    z-index: 1;
    pointer-events: none;
}

.benefits-button:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.benefits-button-icon,
.benefits-button-text {
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .benefits-banner-content {
        padding: 0 30px;
        gap: 30px;
    }
    
    .benefits-title {
        font-size: 48px;
    }
    
    .benefits-right {
        min-width: 300px;
    }
    
    .benefits-button {
        min-width: 300px;
    }
}

@media (max-width: 1024px) {
    .benefits-banner {
        height: 350px;
        margin: 50px 15px;
    }
    
    .benefits-banner-content {
        gap: 25px;
        padding: 0 25px;
    }
    
    .benefits-title {
        font-size: 42px;
    }
    
    .benefits-description {
        font-size: 15px;
    }
    
    .benefits-right {
        min-width: 280px;
    }
    
    .benefits-button {
        min-width: 280px;
        padding: 15px 18px;
    }
}

@media (max-width: 768px) {
    .benefits-banner {
        height: auto;
        min-height: 300px;
        margin: 40px 10px;
        padding: 40px 0;
        border-radius: 15px;
    }
    
    .benefits-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 20px;
    }
    
    .benefits-left {
        max-width: 100%;
    }
    
    .benefits-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .benefits-description {
        font-size: 14px;
        max-width: 100%;
    }
    
    .benefits-right {
        min-width: auto;
        width: 100%;
        max-width: 400px;
    }
    
    .benefits-buttons {
        gap: 12px;
    }
    
    .benefits-button {
        min-width: auto;
        width: 100%;
        justify-content: center;
        padding: 14px 16px;
        font-size: 13px;
    }
    
    .benefits-button-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .benefits-banner {
        margin: 30px 5px;
        padding: 30px 0;
        border-radius: 12px;
        min-height: 250px;
    }
    
    .benefits-banner-content {
        padding: 0 15px;
        gap: 25px;
    }
    
    .benefits-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .benefits-description {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .benefits-right {
        max-width: 100%;
    }
    
    .benefits-button {
        padding: 12px 14px;
        font-size: 12px;
        gap: 10px;
    }
    
    .benefits-button-icon {
        width: 20px;
        height: 20px;
    }
    
    .benefits-button-text {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .benefits-banner {
        margin: 20px 5px;
        padding: 25px 0;
    }
    
    .benefits-banner-content {
        padding: 0 10px;
    }
    
    .benefits-title {
        font-size: 24px;
    }
    
    .benefits-description {
        font-size: 12px;
    }
    
    .benefits-button {
        padding: 10px 12px;
        font-size: 11px;
    }
    
    .benefits-button-icon {
        width: 18px;
        height: 18px;
    }
}

/* Floating Buttons */
.floating-buttons-container {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-buttons-left {
    left: -5px;
}

.floating-buttons-right {
    right: -5px;
}

.floating-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    max-width: 250px;
    position: relative;
    overflow: hidden;
}

/* Left side buttons - flat left edge */
.floating-buttons-left .floating-button {
    border-radius: 0 25px 25px 0;
}

/* Right side buttons - flat right edge */
.floating-buttons-right .floating-button {
    border-radius: 25px 0 0 25px;
}

.floating-button:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    color: white;
}

.floating-buttons-left .floating-button:hover {
    transform: translateX(5px);
}

.floating-button-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 4px;
}

.floating-button-title {
    color: #ffffff;
    flex: 1;
    text-align: left;
}

/* Pulse animation for floating buttons */
.floating-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: inherit;
    transform: scale(0);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.floating-button:hover::before {
    transform: scale(1);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* Responsive floating buttons */
@media (max-width: 768px) {
    .floating-buttons-container {
        position: fixed;
        bottom: 20px;
        top: auto;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        flex-direction: row;
        justify-content: space-around;
        gap: 8px;
        width: auto;
        max-width: calc(100vw - 40px);
        overflow-x: auto;
        padding: 0 10px;
    }
    
    .floating-buttons-left,
    .floating-buttons-right {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    
    .floating-button {
        padding: 10px 14px;
        font-size: 13px;
        gap: 8px;
        border-radius: 20px;
        min-width: auto;
        flex-shrink: 0;
    }
    
    /* Mobile - all buttons get full rounded corners */
    .floating-buttons-left .floating-button,
    .floating-buttons-right .floating-button {
        border-radius: 20px;
    }
    
    .floating-button:hover {
        transform: translateY(-3px);
    }
    
    .floating-buttons-left .floating-button:hover {
        transform: translateY(-3px);
    }
    
    .floating-button-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Red background for mobile social floating buttons section */
    .floating-buttons-container {
        width: 100%;
        background: linear-gradient(147.74deg, rgb(23 22 22) 2.14%, rgb(163 32 13) 179.35%);
        padding: 15px 20px;
    }
    
    /* Ensure buttons have good contrast on red background */
    .floating-button {
        background: rgba(255, 255, 255, 0.95);
        color: #333;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .floating-button:hover {
        background: rgba(255, 255, 255, 1);
        color: #e74c3c;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
    
    .floating-button-title {
        font-size: 12px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .floating-buttons-container {
        bottom: 0px;
        gap: 6px;
        max-width: 100vw;
    }
    
    .floating-button {
        padding: 8px 12px;
        font-size: 12px;
        gap: 6px;
        border-radius: 15px;
    }
    
    /* Mobile 480px - maintain full rounded corners */
    .floating-buttons-left .floating-button,
    .floating-buttons-right .floating-button {
        border-radius: 15px;
    }
    
    .floating-button-icon {
        width: 18px;
        height: 18px;
    }
    
    .floating-button-title {
        font-size: 11px;
    }
}

@media (max-width: 360px) {
    .floating-buttons-container {
        bottom: 10px;
        gap: 4px;
        max-width: calc(100vw - 20px);
    }
    
    .floating-button {
        padding: 6px 10px;
        font-size: 11px;
        gap: 4px;
        border-radius: 12px;
    }
    
    /* Mobile 360px - maintain full rounded corners */
    .floating-buttons-left .floating-button,
    .floating-buttons-right .floating-button {
        border-radius: 12px;
    }
    
    .floating-button-icon {
        width: 16px;
        height: 16px;
    }
    
    .floating-button-title {
        font-size: 10px;
    }
}

/* Casino Modal */
.casino-modal-overlay {
    position: fixed;
    background-color: #000000cc;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.casino-modal-container {
    background: #2a2a2a;
    border-radius: 20px;
    padding: 0;
    position: relative;
    max-width: 1200px;
    max-height: 90vh;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.casino-modal-close {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #2a2a2a;
    border: none;
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.casino-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.casino-modal-content {
    padding: 30px;
    max-height: 90vh;
    overflow-y: auto;
}

.casino-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-items: center;
}

.casino-modal-card {
    background: linear-gradient(147.74deg, rgb(12, 12, 12) 2.14%, rgb(97, 35, 26) 179.35%);
    border-radius: 15px;
    padding: 25px 20px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.casino-modal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.casino-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.casino-card-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.casino-card-info {
    flex: 1;
    text-align: left;
}

.casino-card-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.casino-card-rating {
    color: #cccccc;
    font-size: 12px;
    opacity: 0.8;
}

.casino-card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #444 50%, transparent 100%);
    margin: 15px 0;
}

.casino-card-bonus {
    margin-bottom: 15px;
}

.bonus-label {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 8px;
}

.bonus-value {
    color: #FFB200;
    font-size: 18px;
    font-weight: bold;
}

.casino-card-deposit {
    margin-bottom: 15px;
}

.deposit-label {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 8px;
}

.deposit-value {
    color: #FFB200;
    font-size: 16px;
    font-weight: bold;
}

.casino-card-payment {
    margin-bottom: 20px;
}

.payment-label {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-method-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 4px;
   
    transition: all 0.3s ease;
}

.payment-method-icon:hover {
    transform: scale(1.1);
}

.casino-card-action {
    margin-top: 20px;
}

.casino-modal-play-btn {
    display: inline-block;
    background: linear-gradient(145deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    border: none;
    cursor: pointer;
    width: 100%;
}

.casino-modal-play-btn:hover {
    background: linear-gradient(145deg, #ef4444 0%, #dc2626 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
    text-decoration: none;
    color: white;
}

/* Modal Responsive Design */
@media (max-width: 1024px) {
    .casino-modal-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .casino-modal-content {
        padding: 50px 20px 20px;
    }
    
    .casino-modal-card {
        max-width: 280px;
        padding: 20px 15px;
    }
}

@media (max-width: 768px) {
    .casino-modal-overlay {
        padding: 10px;
    }
    
    .casino-modal-container {
        border-radius: 15px;
    }
    
    .casino-modal-content {
        padding: 45px 15px 15px;
    }
    
    .casino-modal-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 12px;
    }
    
    .casino-modal-card {
        max-width: 260px;
        padding: 18px 12px;
    }
    
    .casino-card-header {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .casino-card-logo {
        width: 50px;
        height: 50px;
    }
    
    .casino-card-name {
        font-size: 14px;
    }
    
    .bonus-value {
        font-size: 16px;
    }
    
    .deposit-value {
        font-size: 14px;
    }
    
    .payment-method-icon {
        width: 28px;
        height: 28px;
    }
    
    .casino-modal-play-btn {
        padding: 10px 24px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .casino-modal-overlay {
        padding: 5px;
    }
    
    .casino-modal-container {
        border-radius: 12px;
        max-height: 95vh;
    }
    
    .casino-modal-content {
        padding: 40px 12px 12px;
    }
    
    .casino-modal-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .casino-modal-card {
        max-width: 100%;
        padding: 15px 10px;
    }
    
    .casino-card-header {
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .casino-card-logo {
        width: 45px;
        height: 45px;
    }
    
    .casino-card-name {
        font-size: 13px;
    }
    
    .bonus-label,
    .deposit-label,
    .payment-label {
        font-size: 12px;
    }
    
    .bonus-value {
        font-size: 14px;
    }
    
    .deposit-value {
        font-size: 13px;
    }
    
    .payment-method-icon {
        width: 24px;
        height: 24px;
    }
    
    .casino-modal-play-btn {
        padding: 8px 20px;
        font-size: 12px;
    }
    
    .casino-modal-close {
        top: -20px;
        right: -20px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
}

@media (max-width: 360px) {
    .casino-modal-content {
        padding: 35px 8px 8px;
    }
    
    .casino-modal-card {
        padding: 12px 8px;
    }
    
    .casino-card-logo {
        width: 40px;
        height: 40px;
    }
    
    .casino-card-name {
        font-size: 12px;
    }
    
    .payment-method-icon {
        width: 20px;
        height: 20px;
    }
}

/* Modal Animation */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


.casino-modal-container {
    animation: modalFadeIn 0.4s ease-out 0.1s both;
}

/* Contact Form Styles */
.contact-form-section {
   background: linear-gradient(180deg, rgba(31, 31, 31, 0.26) 0%, rgba(97, 35, 26, 0.26) 100%);
    box-shadow: 5.64px 2.6px 32.52px -4.77px #871D00 inset;
    border-radius: 30px;
    padding: 60px 0;
    margin: 40px 0;
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.contact-form-wrapper {
    max-width: 1200px;
    padding: 20px 40px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-left {
    padding-right: 20px;
}

.contact-form-right {
    padding-left: 20px;
}

.contact-form-content {
    text-align: left;
}

.contact-form-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.contact-form-content p {
    font-size: 1.1rem;
    color: #cccccc;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.contact-form-image {
    margin: 20px 0 30px 0;
    text-align: left;
}

.contact-form-image img {
    max-width: 100%;
    height: auto;

}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--casino-primary, #1e90ff) 0%, var(--casino-accent, #00c853) 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 5px 0;
}

.feature-text p {
    font-size: 0.95rem;
    color: #aaaaaa;
    margin: 0;
    line-height: 1.4;
}

.casino-contact-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 15px;
    font-size: 1rem;
    color: #ffffff;
    transition: all 0.3s ease;
}


.form-group input::placeholder {
    color: #aaaaaa;
}

.form-group select option {
    background: #2d2d2d;
    color: #ffffff;
}

.file-upload-group {
    margin-bottom: 25px;
}

.file-upload-wrapper {
    position: relative;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-wrapper:hover {
    border-color: var(--casino-primary, #1e90ff);
    background: rgba(30, 144, 255, 0.1);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.upload-icon {
    font-size: 2rem;
}

.upload-label {
    font-size: 1.1rem;
    color: #cccccc;
    font-weight: 500;
}

.file-preview {
    margin-top: 15px;
    position: relative;
    display: inline-block;
}

.file-preview img {
    max-width: 200px;
    max-height: 150px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.remove-file {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.2s ease;
}

.remove-file:hover {
    background: #cc3333;
    transform: scale(1.1);
}

.submit-group {
    text-align: center;
    margin-top: 30px;
}


.play-btn:active {
    transform: translateY(0);
}

.play-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: rgba(0, 200, 83, 0.2);
    border: 1px solid var(--casino-accent, #00c853);
    color: var(--casino-accent, #00c853);
}

.form-message.error {
    background: rgba(255, 68, 68, 0.2);
    border: 1px solid #ff4444;
    color: #ff4444;
}

/* Success and Error State Styles */
.contact-success-wrapper,
.contact-error-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-success-content,
.contact-error-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.success-icon,
.error-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.contact-success-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--casino-accent, #00c853);
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.contact-error-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff4444;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.contact-success-content p,
.contact-error-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.countdown-text {
    font-size: 1rem;
    color: #aaaaaa;
    margin-top: 20px;
    font-style: italic;
}

.countdown-text span {
    color: var(--casino-primary, #1e90ff);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 40px 0;
        margin: 20px 0;
    }
    
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 0 15px;
    }
    
    .contact-form-left,
    .contact-form-right {
        padding: 0;
    }
    
    .contact-form-content {
        text-align: center;
    }
    
    .contact-features {
        gap: 20px;
    }
    
    .casino-contact-form {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .contact-form-content h2 {
        font-size: 2rem;
    }
    
    .file-upload-wrapper {
        padding: 20px;
    }
    
    .play-btn {
        width: 100%;
        padding: 16px;
    }
    
    .contact-success-content,
    .contact-error-content {
        padding: 40px 25px;
        margin: 0 15px;
    }
    
    .contact-success-content h2,
    .contact-error-content h2 {
        font-size: 2rem;
    }
    
    .success-icon,
    .error-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        gap: 30px;
        margin: 0 10px;
    }
    
    .contact-form-content h2 {
        font-size: 1.75rem;
    }
    
    .contact-feature {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .feature-icon {
        align-self: center;
    }
    
    .casino-contact-form {
        padding: 20px;
    }
    
    .form-group input,
    .form-group select {
        padding: 12px;
    }
}

/* ===== SINGLE POST STYLES ===== */
.site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

article {
    background: transparent;
    padding: 0;
    margin-bottom: 40px;
}

.entry-header {
    margin-bottom: 30px;
    text-align: left;
    border-bottom: 3px solid #C10000;
    padding-bottom: 15px;
}

.entry-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    line-height: 1.2;
}

.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: #999;
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.entry-meta .author {
    color: #C10000;
    font-weight: 500;
}

.entry-meta .cat-links a {
    color: #C10000;
    font-weight: 500;
}

.post-thumbnail {
    float: left;
    margin: 0 30px 20px 0;
    max-width: 400px;
    width: 40%;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    margin: 0;
    text-align: justify;
}

.entry-content::after {
    content: "";
    display: table;
    clear: both;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: #ffffff;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.entry-content h1,
.entry-content h2 {
    clear: left;
}

.entry-content h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid #444;
    padding-bottom: 8px;
}

.entry-content h3 {
    font-size: 1.4rem;
    color: #C10000;
}

.entry-content p {
    margin: 0 0 18px 0;
    text-indent: 0;
}

.entry-content p:first-of-type {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.entry-content li {
    margin: 8px 0;
}

/* Featured Casinos in Posts */
.post-featured-casinos {
    margin: 60px 0;
    clear: both;
}

.post-featured-casinos .section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    text-align: center;
}

.post-featured-casinos .section-title-wrapper::before,
.post-featured-casinos .section-title-wrapper::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: #C10000;
}

.post-featured-casinos .section-title-wrapper h2 {
    color: #fff;
    background-color: #222;
    border: 1px solid #C10000;
    border-radius: 25px;
    padding: 10px 80px;
    margin: 0px;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-main {
        padding: 15px;
    }
    
    .entry-title {
        font-size: 2rem;
    }
    
    .post-thumbnail {
        float: none;
        margin: 20px 0;
        max-width: 100%;
        width: 100%;
        text-align: center;
    }
    
    .entry-content {
        font-size: 1rem;
        text-align: left;
    }
    
    .entry-content p:first-of-type {
        font-size: 1.1rem;
    }
    
    .entry-content h2 {
        font-size: 1.5rem;
    }
    
    .post-featured-casinos .section-title-wrapper h2 {
        font-size: 20px;
        padding: 8px 40px;
    }
}

@media (max-width: 480px) {
    .entry-title {
        font-size: 1.7rem;
    }
    
    .entry-content {
        font-size: 0.95rem;
    }
    
    .entry-content p:first-of-type {
        font-size: 1rem;
    }
}
