html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

*, *:after, *:before {
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    min-height: 100vh;
}

/* Header Styles */
.header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo::before {
    content: '';
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #dc2626, #b91c1c);
    margin-right: 10px;
    border-radius: 4px;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-register {
    background: linear-gradient(45deg, #eab308, #f59e0b);
    color: black;
}

.btn-register:hover {
    background: linear-gradient(45deg, #f59e0b, #eab308);
    transform: translateY(-2px);
}

.btn-login {
    background: transparent;
    color: white;
    border: 2px solid #374151;
}

.btn-login:hover {
    background: #374151;
    border-color: #4b5563;
}

/* Navigation */
.nav-container {
    background: rgba(0, 0, 0, 0.7);
    border-top: 1px solid #374151;
    position: relative;
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 0 2rem;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #d1d5db;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;

    @media (max-width: 940px) {
        font-size: 14px;
        padding: 1rem 1.2rem;
    }
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-bottom-color: #dc2626;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    order: 2;
}

/* Mobile Auth Buttons in Menu */
.mobile-auth {
    display: none;
}

.btn-style {
    padding: 0.75rem 1.5rem !important;
    margin: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    display: block !important;
    text-align: center;
}

.btn-style.register {
    background: linear-gradient(45deg, #eab308, #f59e0b) !important;
    color: black !important;
    border-bottom: none !important;
}

.btn-style.login {
    background: transparent !important;
    color: white !important;
    border: 2px solid #374151 !important;
    border-bottom: 2px solid #374151 !important;
}

.hamburger {
    display: flex;
    flex-direction: column;
    width: 25px;
    height: 20px;
    justify-content: space-between;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Banner Styles */
.banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.banner::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="casino-pattern" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23casino-pattern)"/></svg>');
    opacity: 0.3;
}

.banner-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.banner-text {
    animation: slideInLeft 1s ease-out;
}

.banner-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #eab308, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: white;
}

.banner-description {
    font-size: 1.8rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.banner-cta {
    background: linear-gradient(45deg, #eab308, #f59e0b);
    color: black;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.banner-cta:hover {
    background: linear-gradient(45deg, #f59e0b, #eab308);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(234, 179, 8, 0.4);
}

.banner-image {
    background: url("../media/1723024642021_entrancesliderdesktop.webp") no-repeat 0 0;
    background-size: contain;
    background-position: center center;
    width: 200px;
    height: 350px;
}

/*.casino-visual {*/
/*    width: 100%;*/
/*    max-width: 400px;*/
/*    height: 300px;*/
/*    background: linear-gradient(45deg, #dc2626, #b91c1c);*/
/*    border-radius: 20px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);*/
/*}*/

/*.casino-visual::before {*/
/*    content: '🎰';*/
/*    font-size: 4rem;*/
/*    animation: bounce 2s infinite;*/
/*}*/

/*.casino-visual::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: -50%;*/
/*    left: -50%;*/
/*    width: 200%;*/
/*    height: 200%;*/
/*    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);*/
/*    animation: shine 3s infinite;*/
/*}*/

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes shine {
    0% {
        transform: rotate(45deg) translateX(-200%);
    }
    50% {
        transform: rotate(45deg) translateX(200%);
    }
    100% {
        transform: rotate(45deg) translateX(200%);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-top {
        padding: 1rem;
    }

    .logo {
        font-size: 1.5rem;
        order: 1;
    }

    .auth-buttons {
        display: none;
    }

    .mobile-toggle {
        display: block;
        order: 2;
    }

    .mobile-auth {
        display: block !important;
    }

    .nav {
        padding: 0 1rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border-top: 1px solid #374151;
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid #374151;
        text-align: center;
    }

    .nav-link:hover {
        border-bottom-color: #374151;
        background: rgba(220, 38, 38, 0.1);
    }

    .banner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
        text-align: center;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1.8rem;
    }

    .banner-description {
        font-size: 1.3rem;
    }

    .casino-visual {
        max-width: 300px;
        height: 250px;
    }

    .casino-visual::before {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 1.8rem;
    }

    .banner-subtitle {
        font-size: 1.5rem;
    }

    .banner-description {
        font-size: 1.1rem;
    }

    .casino-visual {
        max-width: 250px;
        height: 200px;
    }

    .casino-visual::before {
        font-size: 2.5rem;
    }
}

.promo-section {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 0 auto;
}

.promo-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.promo-card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-tag {
    color: #eab308;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.promo-title {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: white;
}

.promo-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid #374151;
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 6px;
    align-self: flex-start;
}

.promo-btn:hover {
    background: #374151;
    border-color: #4b5563;
    transform: translateY(-2px);
}

/* First Card - Players */
.promo-card.players {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    position: relative;
}

.promo-card.players::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 400 300"><defs><pattern id="players-pattern" patternUnits="userSpaceOnUse" width="50" height="50"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="400" height="300" fill="url(%23players-pattern)"/></svg>');
    opacity: 0.3;
}

.players-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 1rem;
}

.player-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f59e0b, #eab308);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: pulse 2s infinite alternate;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.player-avatar:nth-child(1) { animation-delay: 0s; }
.player-avatar:nth-child(2) { animation-delay: 0.2s; }
.player-avatar:nth-child(3) { animation-delay: 0.4s; }
.player-avatar:nth-child(4) { animation-delay: 0.6s; }
.player-avatar:nth-child(5) { animation-delay: 0.8s; }

/* Second Card - Trophy Cup */
.promo-card.trophy {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    position: relative;
}

.promo-card.trophy::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 400 300"><defs><pattern id="trophy-pattern" patternUnits="userSpaceOnUse" width="40" height="40"><text x="20" y="20" font-size="16" fill="rgba(255,255,255,0.1)" text-anchor="middle" dominant-baseline="middle">R</text></pattern></defs><rect width="400" height="300" fill="url(%23trophy-pattern)"/></svg>');
    opacity: 0.2;
}

.trophy-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.trophy-container {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.trophy-cup {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #f59e0b, #eab308);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.trophy-cup::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 15px;
    background: linear-gradient(45deg, #f59e0b, #eab308);
    border-radius: 15px 15px 0 0;
}

.trophy-cup::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: linear-gradient(45deg, #f59e0b, #eab308);
    border-radius: 10px;
}

.floating-coins {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.coin {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #f59e0b, #eab308);
    border-radius: 50%;
    opacity: 0;
    animation: floatUp 4s infinite;
}

.coin:nth-child(1) { left: 20%; animation-delay: 0s; }
.coin:nth-child(2) { left: 40%; animation-delay: 0.8s; }
.coin:nth-child(3) { left: 60%; animation-delay: 1.6s; }
.coin:nth-child(4) { left: 80%; animation-delay: 2.4s; }

.coin::before {
    content: '€';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    color: #000;
    font-weight: bold;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

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

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0);
    }
    20% {
        opacity: 1;
        transform: translateY(80px) scale(1);
    }
    80% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-40px) scale(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .promo-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .promo-card-content {
        padding: 1.5rem;
    }

    .promo-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .players-visual {
        width: 50%;
    }

    .player-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .trophy-cup {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .trophy-visual {
        width: 40%;
    }
}

@media (max-width: 480px) {
    .promo-title {
        font-size: 1.3rem;
    }

    .promo-card-content {
        padding: 1rem;
    }

    .player-avatar {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .trophy-cup {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

.gaming-section {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 40px auto 0;
}

.gaming-card {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gaming-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.gaming-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

/* Sport Card */
.gaming-card.sport {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.sport-bg {
    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 400 400"><defs><pattern id="stadium-pattern" patternUnits="userSpaceOnUse" width="80" height="80"><circle cx="40" cy="40" r="2" fill="rgba(255,255,255,0.1)"/><path d="M20,40 Q40,20 60,40 Q40,60 20,40" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="400" height="400" fill="url(%23stadium-pattern)"/></svg>');
    z-index: 1;
}

.sport-player {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 200px;
    height: 250px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    border-radius: 10px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    animation: kickBall 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sport-player::before {
    content: '⚽';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: bounceBall 1s ease-in-out infinite;
}

/* Casino Live Card */
.gaming-card.casino-live {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.casino-live-bg {
    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 400 400"><defs><pattern id="casino-live-pattern" patternUnits="userSpaceOnUse" width="60" height="60"><circle cx="30" cy="30" r="1" fill="rgba(220,38,38,0.3)"/><rect x="25" y="25" width="10" height="10" fill="rgba(234,179,8,0.2)" rx="2"/></pattern></defs><rect width="400" height="400" fill="url(%23casino-live-pattern)"/></svg>');
    z-index: 1;
}

.dealer-figure {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 180px;
    height: 220px;
    background: linear-gradient(45deg, #7c2d12, #451a03);
    border-radius: 10px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    animation: dealCards 4s ease-in-out infinite;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.dealer-figure::before {
    content: '🎰';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    animation: spin 2s linear infinite;
}

.dealer-figure::after {
    content: '♠♥♦♣';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    animation: shuffle 3s ease-in-out infinite;
}

/* Casino Card */
.gaming-card.casino {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.casino-bg {
    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 400 400"><defs><pattern id="western-pattern" patternUnits="userSpaceOnUse" width="100" height="100"><text x="50" y="50" font-size="20" fill="rgba(234,179,8,0.2)" text-anchor="middle" dominant-baseline="middle">★</text><circle cx="25" cy="25" r="3" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="400" height="400" fill="url(%23western-pattern)"/></svg>');
    z-index: 1;
}

.cowboy-figure {
    position: absolute;
    top: 5%;
    right: 8%;
    width: 200px;
    height: 280px;
    background: linear-gradient(45deg, #d97706, #92400e);
    border-radius: 10px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    animation: drawGun 5s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.cowboy-figure::before {
    content: '🤠';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
}

.cowboy-figure::after {
    content: '🔫';
    position: absolute;
    bottom: 30px;
    right: 20px;
    font-size: 1.5rem;
    animation: gunSpin 2s linear infinite;
}

/* Content Overlay */
.gaming-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 3;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.category-tag {
    display: inline-block;
    background: linear-gradient(45deg, #eab308, #f59e0b);
    color: black;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.gaming-title {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.gaming-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.gaming-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid white;
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.gaming-btn.primary {
    background: white;
    color: black;
}

.gaming-btn.primary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.gaming-btn.secondary:hover {
    background: white;
    color: black;
    transform: translateY(-2px);
}

.learn-more {
    color: white;
    text-decoration: underline;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #eab308;
}

/* Animations */
@keyframes kickBall {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-5deg); }
    50% { transform: translateY(-5px) rotate(2deg); }
    75% { transform: translateY(-15px) rotate(-3deg); }
}

@keyframes bounceBall {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes dealCards {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    25% { transform: translateY(-5px) rotateY(-5deg); }
    50% { transform: translateY(-10px) rotateY(5deg); }
    75% { transform: translateY(-5px) rotateY(-2deg); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shuffle {
    0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.7; transform: translateX(-50%) scale(1.1); }
}

@keyframes drawGun {
    0%, 100% { transform: translateY(0) rotateZ(0deg); }
    20% { transform: translateY(-8px) rotateZ(-2deg); }
    40% { transform: translateY(-5px) rotateZ(1deg); }
    60% { transform: translateY(-12px) rotateZ(-1deg); }
    80% { transform: translateY(-3px) rotateZ(2deg); }
}

@keyframes gunSpin {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(90deg); }
    50% { transform: rotate(180deg); }
    75% { transform: rotate(270deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .gaming-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gaming-card {
        height: 350px;
    }

    .sport-player,
    .dealer-figure,
    .cowboy-figure {
        width: 150px;
        height: 180px;
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .gaming-content {
        padding: 1.5rem;
    }

    .gaming-title {
        font-size: 1.5rem;
    }

    .gaming-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .sport-player,
    .dealer-figure,
    .cowboy-figure {
        width: 120px;
        height: 150px;
        font-size: 2.5rem;
    }

    .sport-player::before {
        font-size: 1.5rem;
    }

    .dealer-figure::before,
    .cowboy-figure::after {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .gaming-card {
        height: 300px;
    }

    .gaming-title {
        font-size: 1.3rem;
    }

    .gaming-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .sport-player,
    .dealer-figure,
    .cowboy-figure {
        width: 100px;
        height: 130px;
        font-size: 2rem;
    }
}

.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 60px 0 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-columns {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #bdc3c7;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-link {
    color: #95a5a6;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.8;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 8px;
}

.footer-link:hover {
    color: #f1c40f;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-disclaimer {
    color: #7f8c8d;
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copyright {
    color: #7f8c8d;
    font-size: 12px;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .footer-columns {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

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

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-column-title {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .footer-link {
        font-size: 13px;
        margin-bottom: 6px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column-title {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .footer-link {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .footer-disclaimer {
        font-size: 11px;
    }

    .footer-copyright {
        font-size: 11px;
    }
}

.content-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.content-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.content-section:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(234, 179, 8, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #eab308, #dc2626);
    border-radius: 20px 20px 0 0;
}

h2 {
    font-size: 2.2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #eab308, #f59e0b);
    border-radius: 2px;
}

h2 strong {
    background: linear-gradient(45deg, #eab308, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #d1d5db;
    text-align: justify;
}

p strong {
    color: white;
    font-weight: 600;
}

ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #d1d5db;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-left: 3px solid #eab308;
    transition: all 0.3s ease;
}

li:hover {
    background: rgba(234, 179, 8, 0.1);
    transform: translateX(5px);
}

li::before {
    content: '★';
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #eab308;
    font-size: 1rem;
    font-weight: bold;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    font-size: 1rem;
}

th {
    background: linear-gradient(45deg, #dc2626, #b91c1c);
    color: white;
    font-weight: bold;
    padding: 1.25rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #eab308;
}

th:first-child {
    border-top-left-radius: 12px;
}

th:last-child {
    border-top-right-radius: 12px;
}

td {
    padding: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #d1d5db;
    transition: background 0.3s ease;
}

tbody tr:hover td {
    background: rgba(234, 179, 8, 0.1);
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

tbody tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}

td strong {
    color: white;
    font-weight: 600;
}

/* Special emphasis for important content */
.highlight-text {
    background: linear-gradient(45deg, rgba(234, 179, 8, 0.2), rgba(245, 158, 11, 0.2));
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #eab308;
    margin: 2rem 0;
    font-size: 1.1rem;
}

.highlight-text p {
    margin-bottom: 0;
    color: white;
}

/* Section numbering */
.section-number {
    position: absolute;
    top: -15px;
    right: 2rem;
    background: linear-gradient(45deg, #dc2626, #b91c1c);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    border: 3px solid #0f1419;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 2rem 1rem;
    }

    .content-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    p, li {
        font-size: 1rem;
    }

    .table-container {
        margin: 1.5rem -1.5rem;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    table {
        min-width: 500px;
    }

    th, td {
        padding: 1rem 0.75rem;
    }

    th {
        font-size: 0.9rem;
    }

    .section-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 1.5rem 1rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    p, li {
        font-size: 0.95rem;
    }

    table {
        min-width: 450px;
    }

    th, td {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }
}

/* Scrollbar styling for tables */
.table-container::-webkit-scrollbar {
    height: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #dc2626, #eab308);
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #b91c1c, #f59e0b);
}

