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: #1a1a1a;
    padding: 20px 0;
}


/* Casino Navigation */
.casino-nav {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border-bottom: 2px solid #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.casino-logo {
    font-size: 28px;
    font-weight: bold;
    color: #ffc107;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.casino-logo::before {
    content: '♠';
    font-size: 32px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #ffc107;
    transform: translateY(-2px);
}

.nav-cta {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    padding: 12px 25px !important;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.nav-cta:hover {
    background: linear-gradient(135deg, #c82333 0%, #a71e2a 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffc107;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border-top: 1px solid #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 15px 20px;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mobile-menu a:hover {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    padding-left: 30px;
}

.mobile-menu .nav-cta {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    margin: 10px 20px 20px;
    text-align: center;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .casino-logo {
        font-size: 24px;
    }

    .casino-logo::before {
        font-size: 28px;
    }

    .nav-container {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .casino-logo {
        font-size: 20px;
    }

    .casino-logo::before {
        font-size: 24px;
    }
}

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

.promo-block {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
}

.promo-card {
    min-width: 420px;
    flex: 1;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(220, 53, 69, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.promo-card:hover::before {
    opacity: 1;
}

.card-header {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.welcome .card-header {
    background: rgba(255, 193, 7, 0.2);
}

.cashback .card-header {
    background: rgba(220, 53, 69, 0.2);
}

.highroller .card-header {
    background: rgba(40, 167, 69, 0.2);
}

.hero-card .card-header {
    background: rgba(138, 43, 226, 0.2);
}

.hero-title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    /*text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);*/
    /*background: linear-gradient(135deg, #ffc107 0%, #ff6b6b 50%, #4ecdc4 100%);*/
    /*-webkit-background-clip: text;*/
    /*-webkit-text-fill-color: transparent;*/
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.4;
}

.hero-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid #8a2be2;
}

.hero-card:hover {
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.4);
}

.card-content {
    position: relative;
    z-index: 2;
}

.main-offer {
    font-size: 28px;
    font-weight: bold;
    color: #ffc107;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.sub-offer {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    opacity: 0.9;
}

.promo-code {
    font-size: 14px;
    color: #ffc107;
    font-weight: bold;
    margin-bottom: 20px;
}

.sign-up-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1px;
}

.sign-up-btn:hover {
    background: linear-gradient(135deg, #218838 0%, #1ea589 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.card-image {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    opacity: 0.8;
}

.bonus-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    .promo-block {
        gap: 15px;
        padding-bottom: 20px;
    }

    .promo-block::-webkit-scrollbar {
        height: 6px;
    }

    .promo-block::-webkit-scrollbar-track {
        background: #333;
        border-radius: 3px;
    }

    .promo-block::-webkit-scrollbar-thumb {
        background: #ffc107;
        border-radius: 3px;
    }

    .promo-card {
        min-width: 360px;
        padding: 30px;
    }

    .hero-title {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .main-offer {
        font-size: 24px;
    }

    .card-image {
        width: 100px;
        height: 100px;
    }
}

/* Decorative elements */
.floating-coins {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: #ffc107;
    border-radius: 50%;
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
}

.floating-coins:nth-child(2) {
    top: 30px;
    right: 40px;
    animation-delay: -1s;
    width: 25px;
    height: 25px;
}

.floating-coins:nth-child(3) {
    top: 50px;
    right: 20px;
    animation-delay: -2s;
    width: 20px;
    height: 20px;
}

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


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

.trending-section {
    margin: 40px 0;
}

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

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    font-style: italic;
}

.view-all-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.view-all-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.view-all-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.view-all-btn::after {
    content: '112';
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.nav-arrows {
    display: flex;
    gap: 10px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.games-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
}

.game-card {
    min-width: 200px;
    flex: 0 0 200px;
    height: 280px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image {
    transform: scale(1.05);
}

.game-info {
    padding: 20px;
    text-align: center;
    position: relative;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-title {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.game-provider {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
}

.favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.favorite-btn:hover {
    background: rgba(220, 53, 69, 0.8);
    color: #fff;
    transform: scale(1.1);
}

/* Custom scrollbar */
.games-grid::-webkit-scrollbar {
    height: 6px;
}

.games-grid::-webkit-scrollbar-track {
    background: #333;
    border-radius: 3px;
}

.games-grid::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 3px;
}

.games-grid::-webkit-scrollbar-thumb:hover {
    background: #888;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .view-all-container {
        align-self: flex-end;
    }

    .game-card {
        min-width: 180px;
        flex: 0 0 180px;
        height: 260px;
    }

    .game-image {
        height: 180px;
    }

    .games-grid {
        gap: 15px;
        padding-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .game-card {
        min-width: 160px;
        flex: 0 0 160px;
        height: 240px;
    }

    .game-image {
        height: 160px;
    }
}


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

.top-games-wrapper {
    margin: 40px 0;
}

.top-games-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.top-games-title {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    font-style: italic;
}

.top-games-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-games-view-all {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.top-games-view-all:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.top-games-view-all::after {
    content: '46';
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.top-games-navigation {
    display: flex;
    gap: 10px;
}

.top-games-nav-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.top-games-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.top-games-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    grid-template-rows: repeat(2, 1fr);
}

.top-game-item {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid #333;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
}

.top-game-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.top-game-thumbnail {
    width: 100%;
    height: 70%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.top-game-item:hover .top-game-thumbnail {
    transform: scale(1.05);
}

.top-game-details {
    padding: 15px;
    text-align: center;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.top-game-name {
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    line-height: 1.2;
}

.top-game-studio {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top-game-favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.top-game-favorite:hover {
    background: rgba(220, 53, 69, 0.8);
    color: #fff;
    transform: scale(1.1);
}

/* Responsive design for mobile */
@media (max-width: 1200px) {
    .top-games-list {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .top-games-container {
        padding: 0 15px;
    }

    .top-games-title {
        font-size: 28px;
    }

    .top-games-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .top-games-controls {
        align-self: flex-end;
    }

    .top-games-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .top-game-item {
        aspect-ratio: 1.2 / 1;
    }

    .top-game-details {
        padding: 12px;
    }

    .top-game-name {
        font-size: 11px;
    }

    .top-game-studio {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .top-games-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .top-game-item {
        aspect-ratio: 1.1 / 1;
    }

    .top-game-details {
        padding: 10px;
    }

    .top-game-name {
        font-size: 10px;
        margin-bottom: 2px;
    }

    .top-game-studio {
        font-size: 8px;
    }

    .top-game-favorite {
        width: 30px;
        height: 30px;
        top: 8px;
        right: 8px;
    }
}

.casino-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #fff;
    padding: 60px 0 40px;
    border-top: 3px solid #333;
    margin-top: auto;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: bold;
    color: #ffc107;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffc107;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffc107;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-description {
    color: #aaa;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffc107;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffc107;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.payment-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.payment-method:hover {
    background: rgba(255, 193, 7, 0.2);
    border-color: #ffc107;
    color: #ffc107;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffc107;
}

.copyright {
    color: #666;
    font-size: 14px;
}

.licenses {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.license-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    color: #ccc;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.license-badge:hover {
    background: rgba(40, 167, 69, 0.2);
    border-color: #28a745;
    color: #28a745;
}

/* Responsive design */
@media (max-width: 768px) {
    .casino-footer {
        padding: 40px 0 30px;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-links a {
        font-size: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-bottom-links {
        gap: 20px;
    }

    .payment-methods {
        gap: 10px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 25px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .payment-methods {
        justify-content: center;
    }

    .licenses {
        justify-content: center;
        flex-wrap: wrap;
    }
}

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

.content-wrapper {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Typography */
.content-wrapper h2 {
    font-size: 32px;
    font-weight: bold;
    color: #ffc107;
    margin-bottom: 25px;
    margin-top: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    border-left: 4px solid #ffc107;
    padding-left: 20px;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    margin-top: 30px;
    position: relative;
}

.content-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #ffc107;
}

.content-wrapper p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-wrapper strong {
    /*color: #ffc107;*/
    font-weight: bold;
}

/* Lists */
.content-wrapper ul {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.content-wrapper ul li {
    position: relative;
    padding: 12px 0 12px 30px;
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.content-wrapper ul li::before {
    content: '🎰';
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 16px;
}

.content-wrapper ul li:hover {
    color: #ffc107;
    transform: translateX(5px);
}

/* Tables */
.table-wrapper {
    overflow-x: visible;
    margin: 30px 0;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
}

.content-wrapper table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, #333 0%, #2a2a2a 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.content-wrapper tbody tr:first-child td:first-child {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-wrapper tbody tr:first-child td {
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    font-weight: bold;
    color: #ffc107;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #ffc107;
}

.content-wrapper table td {
    padding: 18px 15px;
    font-size: 15px;
    color: #fff;
    border-bottom: 1px solid #444;
    transition: all 0.3s ease;
}

.content-wrapper table td p {
    color: inherit;
    margin: 0;
    font-size: inherit;
}

.content-wrapper table tbody tr:hover {
    background: rgba(255, 193, 7, 0.1);
}

.content-wrapper table tbody tr:hover td {
    color: #ffc107;
}

.content-wrapper table tbody tr:hover td:first-child,
.content-wrapper table tbody tr:first-child:hover td {
    color: #fff;
}

.content-wrapper table tbody tr:last-child td {
    border-bottom: none;
}

/* Special Content Blocks */
.highlight-box {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #ff9800, #ffc107);
}

.highlight-box p {
    color: #fff;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        padding: 40px 30px;
    }

    .content-wrapper h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .content-wrapper h3 {
        font-size: 22px;
        margin-bottom: 18px;
    }
}

@media (max-width: 768px) {
    .content-container {
        padding: 20px 15px;
    }

    .content-wrapper {
        padding: 30px 25px;
        border-radius: 15px;
    }

    .content-wrapper h2 {
        font-size: 24px;
        margin-bottom: 18px;
        padding-left: 15px;
    }

    .content-wrapper h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .content-wrapper p {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .content-wrapper ul li {
        font-size: 15px;
        padding: 10px 0 10px 25px;
    }

    /* Mobile Table Scroll */
    .table-wrapper {
        overflow-x: auto;
        margin: 25px -10px;
        padding: 5px 10px;
        -webkit-overflow-scrolling: touch;
    }

    .table-wrapper::-webkit-scrollbar {
        height: 6px;
    }

    .table-wrapper::-webkit-scrollbar-track {
        background: #333;
        border-radius: 3px;
    }

    .table-wrapper::-webkit-scrollbar-thumb {
        background: #ffc107;
        border-radius: 3px;
    }

    .content-wrapper table {
        min-width: 500px;
    }

    .content-wrapper table td {
        padding: 15px 12px;
        font-size: 14px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 25px 20px;
    }

    .content-wrapper h2 {
        font-size: 22px;
        padding-left: 12px;
    }

    .content-wrapper h3 {
        font-size: 18px;
    }

    .content-wrapper p {
        font-size: 14px;
    }

    .content-wrapper ul li {
        font-size: 14px;
        padding: 8px 0 8px 22px;
    }

    .table-wrapper {
        margin: 20px -15px;
        padding: 5px 15px;
    }

    .content-wrapper table {
        min-width: 450px;
    }

    .content-wrapper table td {
        padding: 12px 10px;
        font-size: 13px;
    }

    .highlight-box {
        padding: 20px;
        margin: 25px 0;
    }
}