/* Modern Hero Section - Casino Centered Layout */
.hero-section {
    padding: 0;
    min-height: 100vh;
    background: 
        linear-gradient(135deg, #0a0a0f 0%, #1a1a25 50%, #0a0a0f 100%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 70% 30%, rgba(155, 89, 182, 0.1) 0%, transparent 30%),
        repeating-conic-gradient(
            from 0deg at 50% 50%,
            transparent 0deg,
            transparent 10deg,
            rgba(255, 215, 0, 0.01) 10deg,
            rgba(255, 215, 0, 0.01) 20deg
        );
    animation: rotate 60s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50px, -50px); }
}

@media (min-width: 768px) {
    .hero-section {
        padding: 100px 20px 140px;
    }
}

.section {
    padding: 40px 35px;
    max-width: 1200px;
    margin: 20px auto;
}

@media (min-width: 768px) {
    .section {
        padding: 80px 20px;
        margin: 60px auto;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 100px 30px;
    width: 100%;
}

@media (min-width: 1024px) {
    .hero-container {
        padding: 140px 40px;
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 28px;
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Cinzel', serif;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 50px rgba(255, 215, 0, 0.6); }
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 50px rgba(255, 215, 0, 0.5), 0 0 100px rgba(255, 215, 0, 0.3);
    letter-spacing: -2px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 80px;
        line-height: 1.05;
        margin-bottom: 35px;
    }
}

.hero-description {
    font-size: 18px;
    color: var(--color-text-body);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 22px;
        margin-bottom: 60px;
    }
}

.hero-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 22px 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #0a0a0f;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.6);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Cinzel', serif;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.6s;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-secondary {
    padding: 22px 60px;
    background: transparent;
    color: var(--color-primary);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 900;
    border: 2px solid var(--color-primary);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Cinzel', serif;
}

.btn-hero-primary:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 30px 70px rgba(255, 215, 0, 0.8);
}

.btn-hero-secondary:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #0a0a0f;
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 30px 70px rgba(255, 215, 0, 0.7);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 60%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite 1s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.3); opacity: 0.4; }
}

.hero-image-wrapper img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 60px 120px rgba(255, 215, 0, 0.4), 0 0 100px rgba(155, 89, 182, 0.3);
    display: block;
    animation: float 8s ease-in-out infinite;
    border: 4px solid rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 2;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(1deg); }
    50% { transform: translateY(-30px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.hero-shape {
    display: none;
}

/* Update previous banner wrapper to be hidden or replaced */
.banner-wrapper {
    display: none;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 50px;
    }
}

.section-prefix {
    font-size: 12px;
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
}

@media (min-width: 768px) {
    .section-prefix {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

.section-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.2;
    max-width: 600px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 42px;
    }
}

.title-dot {
    display: none;
}

.view-all {
    margin-top: 20px;
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-all:hover {
    gap: 12px;
}

/* Recommended Grid - Casino Horizontal Cards */
.recommended-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .recommended-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .recommended-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.recommended-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, #15151f 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.recommended-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
    opacity: 0;
    transition: var(--transition);
}

.recommended-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 40px 80px rgba(255, 215, 0, 0.25);
    border-color: var(--color-primary);
}

.recommended-card:hover::before {
    opacity: 1;
}

.recommended-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #0a0a0f;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 10;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Cinzel', serif;
    border: 2px solid rgba(255, 215, 0, 0.4);
}

.recommended-badge i {
    font-size: 10px;
}

.recommended-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a25 0%, #0a0a0f 100%);
}

.recommended-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

.recommended-card:hover .recommended-image img {
    transform: scale(1.15);
    filter: brightness(1);
}

.recommended-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 15, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: var(--transition);
}

.recommended-card:hover .recommended-overlay {
    opacity: 1;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 15, 0.9) 100%);
}

.btn-play {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0f;
    font-size: 32px;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    transform: scale(1);
    transition: var(--transition);
    border: 4px solid rgba(255, 215, 0, 0.4);
}

.recommended-card:hover .btn-play {
    transform: scale(1.15);
}

.btn-play:hover {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    transform: scale(1.25);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.8);
}

.recommended-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 215, 0, 0.05) 100%);
}

.recommended-category {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 11px;
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-family: 'Cinzel', serif;
}

.recommended-category i {
    font-size: 14px;
}

.recommended-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 12px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 52px;
    font-family: 'Playfair Display', serif;
}

.recommended-title a {
    color: var(--color-primary);
    transition: color 0.3s;
}

.recommended-title a:hover {
    color: var(--color-secondary);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.recommended-description {
    font-size: 14px;
    color: var(--color-text-body);
    line-height: 1.7;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.recommended-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.btn-primary-small,
.btn-secondary-small {
    flex: 1;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn-primary-small {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #0a0a0f;
    border: none;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-primary-small:hover {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

.btn-secondary-small {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary-small:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-color: var(--color-primary);
    color: #0a0a0f;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.btn-primary-small i,
.btn-secondary-small i {
    font-size: 12px;
}

/* Legacy vertical-games styles (kept for compatibility) */
.vertical-games {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.game-card {
    background-color: var(--bg-card);
    border-radius: 25px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    position: relative;
}

@media (min-width: 768px) {
    .game-card {
        flex-direction: row;
        align-items: stretch;
    }
}

.game-card:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--color-primary);
}

.game-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff4d4d, #f9ca24);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 77, 77, 0.3);
}

.game-card-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .game-card-image-wrapper {
        width: 350px;
        height: auto;
    }
}

.game-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-card:hover .game-card-image {
    transform: scale(1.08);
}

.game-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
}

@media (min-width: 768px) {
    .game-card-content {
        padding: 30px;
    }
}

.game-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .game-card-top {
        gap: 12px;
        margin-bottom: 20px;
    }
}

.domain-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background-color: var(--bg-section);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 14px;
}

.game-card-domain {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-heading);
    letter-spacing: 0.5px;
}

.game-card-info {
    font-size: 14px;
    color: var(--color-text-body);
    line-height: 1.6;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .game-card-info {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 30px;
    }
}

.game-card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 480px) {
    .game-card-actions {
        flex-direction: row;
        gap: 15px;
    }
}

.btn-card {
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    flex: 1;
}

@media (min-width: 1024px) {
    .btn-card {
        flex: 0 1 auto;
        min-width: 180px;
    }
}

.btn-card.visite {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn-card.contato {
    background-color: var(--bg-section);
    color: var(--color-text-heading);
    border: 1px solid var(--border-color);
}

.btn-card.visite:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
}

.btn-card.contato:hover {
    background-color: var(--border-color);
    transform: translateY(-3px);
}

/* Wins Table */
.wins-table-wrapper {
    background-color: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
    overflow-x: auto;
}

.wins-table {
    width: 100%;
    border-collapse: collapse;
}

.wins-table th {
    text-align: left;
    padding: 20px 15px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-heading);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 2px solid var(--bg-section);
}

.wins-table td {
    padding: 20px 15px;
    font-size: 15px;
    border-bottom: 1px solid var(--bg-section);
}

.wins-table tr:last-child td {
    border-bottom: none;
}

.val-lucro {
    color: var(--color-primary) !important;
    font-weight: 700;
}

.table-game-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

/* Popular Games Grid (Improved) */
.popular-games-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

@media (min-width: 640px) {
    .popular-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .popular-games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.popular-game-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, var(--bg-card) 0%, #15151f 100%);
}

.popular-game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.2);
    border-color: var(--color-primary);
}

.popular-game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.popular-game-card:hover img {
    filter: brightness(0.7);
}

.popular-game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.popular-game-card:hover .popular-game-overlay {
    opacity: 1;
    transform: translateY(0);
}

.popular-game-overlay h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    color: var(--color-primary);
}

.popular-game-overlay .btn-play-small {
    width: fit-content;
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #0a0a0f;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Cinzel', serif;
    border: 2px solid var(--color-primary);
}

/* Quick Links Grid - Casino Horizontal Cards */
.quick-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 640px) {
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .quick-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.quick-link-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, #15151f 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-height: 100px;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
    opacity: 0;
    transition: var(--transition);
}

.quick-link-card:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
    border-color: var(--color-primary);
}

.quick-link-card:hover::before {
    opacity: 1;
}

.quick-link-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0f;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.4);
    transition: var(--transition);
}

.quick-link-card:hover .quick-link-icon {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.6);
}

.quick-link-content {
    flex: 1;
    min-width: 0;
}

.quick-link-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
    font-family: 'Playfair Display', serif;
}

.quick-link-title:hover {
    color: var(--color-secondary);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.quick-link-date {
    font-size: 12px;
    color: var(--color-muted);
    font-weight: 600;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-new {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 9px;
    font-weight: 900;
    color: #0a0a0f;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    font-family: 'Cinzel', serif;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

/* Legacy Links Box Styles (kept for compatibility) */
.links-box {
    background-color: var(--bg-section);
    border-radius: 20px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .links-box {
        grid-template-columns: repeat(2, 1fr);
    }
}

.link-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.link-text {
    font-weight: 600;
    color: var(--color-text-heading);
    flex-grow: 1;
}

.tag-new {
    font-size: 10px;
    font-weight: 800;
    color: #ffffff;
    background-color: var(--color-primary);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Latest News */
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, #15151f 100%);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
    border-color: var(--color-primary);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 25px;
}

.news-date {
    font-size: 12px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 12px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Cinzel', serif;
}

.news-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.news-content p {
    font-size: 14px;
    color: var(--color-text-body);
}

/* About Us Section */
.about-us {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 768px) {
    .about-us {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.about-content h2 {
    margin-bottom: 25px;
    color: var(--color-primary);
    font-family: 'Playfair Display', serif;
    font-weight: 900;
}

.about-content p {
    margin-bottom: 30px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item h4 {
    font-size: 28px;
    color: var(--color-primary);
    margin-bottom: 5px;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.stat-item p {
    font-size: 14px;
    font-weight: 600;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-item {
    padding: 40px;
    background: linear-gradient(145deg, var(--bg-card) 0%, #15151f 100%);
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.15);
    border-color: var(--color-primary);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #0a0a0f;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--color-primary);
    font-family: 'Playfair Display', serif;
}

.feature-item p {
    font-size: 14px;
}

/* Testimonials */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-item blockquote {
    font-size: 22px;
    font-weight: 500;
    font-style: italic;
    color: var(--color-text-body);
    margin-bottom: 30px;
    position: relative;
    font-family: 'Playfair Display', serif;
}

.testimonial-item blockquote::before {
    content: '"';
    font-size: 120px;
    color: var(--color-primary);
    opacity: 0.15;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.testimonial-author h5 {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-primary);
    font-family: 'Playfair Display', serif;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--color-muted);
}

/* Partners Row */
.partners-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    opacity: 0.5;
}

.partners-row img {
    height: 35px;
    filter: grayscale(1);
    transition: var(--transition);
}

.partners-row img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* How to Play / Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.process-item {
    text-align: center;
    position: relative;
}

.process-number {
    font-size: 100px;
    font-weight: 900;
    color: var(--color-primary);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: -50px;
    font-family: 'Playfair Display', serif;
}

.process-item h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 15px;
    position: relative;
    font-family: 'Playfair Display', serif;
}

.process-item p {
    font-size: 15px;
    color: var(--color-text-body);
}

/* Download App Section */
.app-download {
    background: linear-gradient(135deg, #1a1a25 0%, #0a0a0f 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    color: var(--color-text-body);
    position: relative;
    overflow: hidden;
}

.app-download::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

@media (min-width: 768px) {
    .app-download {
        grid-template-columns: 1.5fr 1fr;
        text-align: left;
    }
}

.app-content h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--color-primary);
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.app-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-app {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #0a0a0f;
    padding: 14px 30px;
    border-radius: 4px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    border: 2px solid var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Cinzel', serif;
}

.btn-app:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.app-image img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(255, 215, 0, 0.2));
    border-radius: 8px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

/* FAQ Section - Casino Accordion Style */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(145deg, var(--bg-card) 0%, #15151f 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
    opacity: 0;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item.active {
    border-color: var(--color-primary);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.faq-item.active::before {
    opacity: 1;
}

.faq-question {
    padding: 25px 35px 25px 40px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    color: var(--color-primary);
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    position: relative;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--color-secondary);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.faq-question::after {
    content: '+';
    font-size: 28px;
    color: var(--color-primary);
    font-weight: 900;
    transition: var(--transition);
    font-family: 'Cinzel', serif;
}

.faq-answer {
    padding: 0 40px 30px;
    font-size: 16px;
    color: var(--color-text-body);
    line-height: 1.8;
    display: none;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    margin-top: 15px;
    padding-top: 25px;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.active .faq-question::after {
    content: '−';
    color: var(--color-secondary);
    transform: rotate(180deg);
}

/* Footer Promo Update */
.footer-promo {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 50px 20px;
    border-radius: 8px;
    text-align: center;
    color: #0a0a0f;
    margin: 0 15px 60px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-promo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
    animation: patternMove 20s linear infinite;
    pointer-events: none;
}

@media (min-width: 768px) {
    .footer-promo {
        padding: 60px 40px;
        border-radius: 30px;
        margin: 0 20px 80px;
    }
}

.footer-promo h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .footer-promo h3 {
        font-size: 32px;
    }
}

.footer-promo p {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .footer-promo p {
        font-size: 18px;
    }
}

/* Latest News Feature Section */
.pb-5 {
    padding-bottom: 48px !important;
}

.d-flex {
    display: flex !important;
}

.flex-column {
    flex-direction: column !important;
}

.align-items-center {
    align-items: center !important;
}

.text-center {
    text-align: center !important;
}

.text-white {
    color: #ffffff !important;
}

.mb-2 {
    margin-bottom: 8px !important;
}

.m-0 {
    margin: 0 !important;
}

.border-0 {
    border: none !important;
}

.latest-news {
    padding: 0 10px;
}

.section-prefix {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.latest-news .section-title {
    font-size: 28px;
    margin-bottom: 30px;
    text-transform: none;
    font-weight: 800;
}

.news-grid.modern-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 15px;
}

.news-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 214, 0, 0.2);
}

.news-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.news-card:hover img {
    transform: scale(1.05);
}

.news-content {
    padding: 20px;
    background: var(--bg-card);
    position: relative;
    z-index: 2;
}

.news-date {
    font-size: 11px;
    color: var(--color-yellow);
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-content h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-content h3 a {
    /* color: var(--color-white); */
    transition: color 0.2s;
}

.news-content h3 a:hover {
    color: var(--color-yellow);
}

.news-content p {
    font-size: 13px;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tag-new {
    background-color: var(--color-green);
    color: var(--color-white);
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 4px;
    font-weight: bold;
}

/* Footer Box */
.footer-promo {
    margin: 20px 10px;
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 214, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.footer-promo:hover {
    background-color: #382416;
}

.footer-promo img {
    height: 60px;
    margin-bottom: 5px;
}

.footer-promo h3 {
    margin: 0;
    font-size: 18px;
    color: var(--color-yellow);
    font-weight: bold;
}

.footer-promo p {
    margin: 0;
    font-size: 14px;
    color: var(--color-muted);
}

/* Desktop Responsiveness - Full Width */
@media (min-width: 768px) {
    .vertical-games {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .small-games-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 15px;
    }

    .section {
        padding: 0 40px 30px;
    }

    .banner-wrapper {
        padding: 20px 40px;
    }

    .banner-wrapper img {
        height: 100px;
        /*object-fit: cover;*/
    }

    .wins-table-wrapper {
        padding: 15px 20px 20px;
    }

    .wins-table {
        font-size: 14px;
    }

    .wins-table th {
        font-size: 13px;
        padding: 15px 10px;
    }

    .wins-table td {
        padding: 15px 10px;
    }

    .link-row {
        font-size: 15px;
        padding: 18px 0;
    }

    .links-box {
        padding: 10px 25px;
    }

    .news-grid.modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .latest-news {
        padding: 0 40px;
    }

    .footer-promo {
        margin: 30px 40px;
        padding: 30px;
    }

    .footer-promo h3 {
        font-size: 22px;
    }

    .footer-promo p {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .vertical-games {
        grid-template-columns: repeat(4, 1fr);
    }

    .small-games-grid {
        grid-template-columns: repeat(10, 1fr);
    }

    .section {
        padding: 0 50px 40px;
    }

    .banner-wrapper {
        padding: 20px 50px;
    }

    .game-card-image {
        height: 220px;
    }

    .wins-table {
        font-size: 15px;
    }

    .wins-table th {
        font-size: 14px;
        padding: 18px 12px;
    }

    .wins-table td {
        padding: 18px 12px;
    }

    .table-game-icon {
        width: 40px;
        height: 40px;
    }

    .news-grid.modern-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .latest-news {
        padding: 0 50px;
    }

    .footer-promo {
        margin: 40px 50px;
    }
}