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: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
}

.header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.header-top {
    padding: 12px 20px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
}

.logo::before {
    content: "🎰";
    margin-right: 8px;
    font-size: 28px;
}

.logo .woo {
    color: #ff4757;
}

.logo .casino {
    color: #fff;
    margin-left: 2px;
}

.auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.btn-register {
    background: linear-gradient(135deg, #ff4757, #ff6b7a);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
}

.btn-login {
    background: linear-gradient(135deg, #3742fa, #5352ed);
    color: #fff;
    box-shadow: 0 4px 15px rgba(55, 66, 250, 0.3);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(55, 66, 250, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    flex-shrink: 0;
}

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

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

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

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

.nav-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 20px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 4px;
    backdrop-filter: blur(10px);
    min-width: max-content;
    justify-content: space-around;
}

.nav-item {
    position: relative;
    flex-shrink: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    gap: 8px;
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-1px);
}

.nav-link.active {
    background: linear-gradient(135deg, #ff4757, #ff6b7a);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.nav-link .icon {
    font-size: 16px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav {
    list-style: none;
    margin-bottom: 30px;
}

.mobile-nav .nav-item {
    margin-bottom: 8px;
}

.mobile-nav .nav-link {
    display: flex;
    align-items: center;
    padding: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.demo-content {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
    color: #fff;
}

.demo-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff4757, #ff6b7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demo-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tablet styles */
@media (max-width: 1024px) {
    .nav-link {
        padding: 12px 16px;
        font-size: 13px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Small tablet styles */
@media (max-width: 900px) {
    .nav-section {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .demo-content h1 {
        font-size: 2.5rem;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .header-top {
        padding: 12px 15px;
    }

    .nav-section,
    .auth-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-container {
        justify-content: space-between;
    }

    .logo {
        font-size: 20px;
    }

    .logo::before {
        font-size: 24px;
        margin-right: 6px;
    }

    .demo-content {
        padding: 0 15px;
    }

    .demo-content h1 {
        font-size: 2rem;
    }

    .demo-content p {
        font-size: 1rem;
    }

    .mobile-menu {
        width: 100%;
        max-width: 100%;
        padding: 80px 15px 20px;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .header-top {
        padding: 10px 12px;
    }

    .logo {
        font-size: 18px;
    }

    .logo::before {
        font-size: 22px;
        margin-right: 4px;
    }

    .demo-content {
        padding: 0 12px;
    }

    .demo-content h1 {
        font-size: 1.75rem;
    }

    .mobile-menu {
        padding: 70px 12px 20px;
    }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .mobile-menu {
        padding: 60px 15px 15px;
    }

    .mobile-nav .nav-link {
        padding: 12px;
    }

    .mobile-auth .btn {
        padding: 8px 16px;
    }
}

/* Scroll improvements */
.nav-container::-webkit-scrollbar {
    height: 4px;
}

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

.nav-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.nav-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.promo-banner {
    position: relative;
    min-height: 600px;
    background: radial-gradient(ellipse at center, #1a1a3e 0%, #0f0f2e 40%, #050517 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 15% 30%, rgba(138, 43, 226, 0.4) 0%, transparent 50%),
            radial-gradient(circle at 85% 70%, rgba(255, 69, 0, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 50% 20%, rgba(30, 144, 255, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 70% 80%, rgba(255, 20, 147, 0.3) 0%, transparent 50%);
    animation: cosmicGlow 8s ease-in-out infinite;
}

@keyframes cosmicGlow {
    0%, 100% { opacity: 0.7; }
    33% { opacity: 1; }
    66% { opacity: 0.8; }
}

.promo-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.promo-content {
    color: #fff;
}

.promo-main-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.promo-amount {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700, #ffed4a, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    position: relative;
    margin: 20px 0;
}

.promo-amount::before,
.promo-amount::after {
    content: '—';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: #ffd700;
}

.promo-amount::before {
    left: -60px;
}

.promo-amount::after {
    right: -60px;
}

.promo-bonus-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4ecdc4;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.promo-bonus-text::before {
    content: '+';
    font-size: 2.5rem;
    font-weight: 900;
}

.promo-cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 35px rgba(102, 126, 234, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.promo-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.promo-cta-button:hover::before {
    left: 100%;
}

.promo-cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.6);
}

.promo-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-animals-container {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.promo-wolf {
    position: absolute;
    top: 20%;
    right: 0;
    width: 300px;
    height: 250px;
    background: linear-gradient(135deg, #8B4513, #DEB887);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 0 0 30px rgba(139, 69, 19, 0.6);
    animation: wolfFloat 6s ease-in-out infinite;
}

.promo-wolf::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 20%;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #FFD700, #FFA500);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.promo-wolf::after {
    content: '';
    position: absolute;
    top: 30%;
    right: 20%;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #FFD700, #FFA500);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.promo-panther {
    position: absolute;
    bottom: 20%;
    left: 0;
    width: 250px;
    height: 200px;
    background: linear-gradient(135deg, #654321, #8B4513);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 0 0 25px rgba(101, 67, 33, 0.6);
    animation: pantherFloat 5s ease-in-out infinite 1s;
}

.promo-panther::before {
    content: '';
    position: absolute;
    top: 35%;
    left: 25%;
    width: 25px;
    height: 25px;
    background: radial-gradient(circle, #32CD32, #228B22);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(50, 205, 50, 0.8);
}

.promo-panther::after {
    content: '';
    position: absolute;
    top: 35%;
    right: 25%;
    width: 25px;
    height: 25px;
    background: radial-gradient(circle, #32CD32, #228B22);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(50, 205, 50, 0.8);
}

@keyframes wolfFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes pantherFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(-1deg);
    }
}

.promo-coins {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.promo-coin {
    position: absolute;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    border-radius: 50%;
    animation: coinFloat 4s linear infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.promo-coin:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.promo-coin:nth-child(2) { top: 20%; right: 15%; animation-delay: 0.5s; }
.promo-coin:nth-child(3) { bottom: 30%; left: 5%; animation-delay: 1s; }
.promo-coin:nth-child(4) { bottom: 15%; right: 10%; animation-delay: 1.5s; }
.promo-coin:nth-child(5) { top: 60%; left: 80%; animation-delay: 2s; }
.promo-coin:nth-child(6) { top: 80%; right: 70%; animation-delay: 2.5s; }
.promo-coin:nth-child(7) { top: 40%; left: 20%; animation-delay: 3s; }
.promo-coin:nth-child(8) { bottom: 50%; right: 30%; animation-delay: 3.5s; }

@keyframes coinFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-25px) rotate(180deg) scale(1.2);
        opacity: 1;
    }
}

.promo-sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.promo-sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: sparkleShine 3s linear infinite;
}

.promo-sparkle:nth-child(odd) {
    background: #4ecdc4;
    animation-duration: 4s;
}

.promo-sparkle:nth-child(1) { top: 15%; left: 25%; animation-delay: 0s; }
.promo-sparkle:nth-child(2) { top: 35%; right: 20%; animation-delay: 0.7s; }
.promo-sparkle:nth-child(3) { bottom: 45%; left: 10%; animation-delay: 1.4s; }
.promo-sparkle:nth-child(4) { bottom: 25%; right: 35%; animation-delay: 2.1s; }
.promo-sparkle:nth-child(5) { top: 70%; left: 85%; animation-delay: 2.8s; }
.promo-sparkle:nth-child(6) { top: 85%; right: 65%; animation-delay: 0.3s; }
.promo-sparkle:nth-child(7) { top: 50%; left: 30%; animation-delay: 1s; }
.promo-sparkle:nth-child(8) { bottom: 60%; right: 25%; animation-delay: 1.7s; }

@keyframes sparkleShine {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.5) rotate(180deg);
    }
}

/* Tablet styles */
@media (max-width: 1024px) {
    .promo-wrapper {
        gap: 60px;
        padding: 60px 20px;
    }

    .promo-main-title {
        font-size: 3.5rem;
    }

    .promo-amount {
        font-size: 4rem;
    }

    .promo-amount::before,
    .promo-amount::after {
        font-size: 2.5rem;
    }

    .promo-amount::before {
        left: -50px;
    }

    .promo-amount::after {
        right: -50px;
    }

    .promo-bonus-text {
        font-size: 1.6rem;
    }

    .promo-animals-container {
        width: 400px;
        height: 400px;
    }

    .promo-wolf {
        width: 250px;
        height: 200px;
    }

    .promo-panther {
        width: 200px;
        height: 160px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .promo-banner {
        min-height: 700px;
    }

    .promo-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
        padding: 50px 15px;
    }

    .promo-main-title {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }

    .promo-amount {
        font-size: 3.5rem;
        margin: 15px 0;
    }

    .promo-amount::before,
    .promo-amount::after {
        display: none;
    }

    .promo-bonus-text {
        font-size: 1.4rem;
        justify-content: center;
        margin-bottom: 30px;
    }

    .promo-cta-button {
        padding: 16px 35px;
        font-size: 16px;
        letter-spacing: 1px;
    }

    .promo-animals-container {
        width: 320px;
        height: 320px;
    }

    .promo-wolf {
        width: 200px;
        height: 160px;
    }

    .promo-panther {
        width: 160px;
        height: 130px;
    }

    .promo-coin {
        width: 20px;
        height: 20px;
    }

    .promo-sparkle {
        width: 4px;
        height: 4px;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .promo-banner {
        min-height: 600px;
    }

    .promo-wrapper {
        padding: 40px 12px;
        gap: 40px;
    }

    .promo-main-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .promo-amount {
        font-size: 3rem;
        margin: 12px 0;
    }

    .promo-bonus-text {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }

    .promo-bonus-text::before {
        font-size: 2rem;
    }

    .promo-cta-button {
        padding: 14px 30px;
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    .promo-animals-container {
        width: 260px;
        height: 260px;
    }

    .promo-wolf {
        width: 160px;
        height: 130px;
    }

    .promo-wolf::before,
    .promo-wolf::after {
        width: 20px;
        height: 20px;
    }

    .promo-panther {
        width: 130px;
        height: 100px;
    }

    .promo-panther::before,
    .promo-panther::after {
        width: 18px;
        height: 18px;
    }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .promo-banner {
        min-height: 500px;
    }

    .promo-wrapper {
        grid-template-columns: 1fr 1fr;
        padding: 30px 15px;
        gap: 40px;
    }

    .promo-main-title {
        font-size: 2.5rem;
    }

    .promo-amount {
        font-size: 3rem;
    }

    .promo-bonus-text {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
}

.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.card {
    position: absolute;
    width: 40px;
    height: 60px;
    background: linear-gradient(135deg, #fff, #f0f0f0);
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.card:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.card:nth-child(3) {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.card:nth-child(4) {
    bottom: 15%;
    right: 10%;
    animation-delay: 3s;
}

.card::before {
    content: '♠';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #000;
}

.card:nth-child(2)::before { content: '♥'; color: #ff0000; }
.card:nth-child(3)::before { content: '♦'; color: #ff0000; }
.card:nth-child(4)::before { content: '♣'; color: #000; }

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 1;
    }
}

.magic-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    animation: sparkle 3s linear infinite;
}

.particle:nth-child(odd) {
    background: #ff69b4;
    animation-duration: 4s;
}

.particle:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 30%; right: 25%; animation-delay: 0.5s; }
.particle:nth-child(3) { bottom: 40%; left: 15%; animation-delay: 1s; }
.particle:nth-child(4) { bottom: 20%; right: 30%; animation-delay: 1.5s; }
.particle:nth-child(5) { top: 60%; left: 80%; animation-delay: 2s; }
.particle:nth-child(6) { top: 80%; right: 60%; animation-delay: 2.5s; }

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

/* Tablet styles */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
        padding: 50px 20px;
    }

    .hero-title {
        font-size: 3rem;
    }

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

    .roulette-container {
        width: 350px;
        height: 350px;
    }

    .roulette-wheel {
        width: 250px;
        height: 250px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .hero-banner {
        min-height: 600px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 40px 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 15px;
    }

    .hero-subtitle::before,
    .hero-subtitle::after {
        width: 100px;
        align-self: center;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .roulette-container {
        width: 280px;
        height: 280px;
    }

    .roulette-wheel {
        width: 200px;
        height: 200px;
        border-width: 6px;
    }

    .card {
        width: 30px;
        height: 45px;
    }

    .card::before {
        font-size: 16px;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .hero-banner {
        min-height: 500px;
    }

    .hero-container {
        padding: 30px 12px;
        gap: 30px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-btn {
        padding: 10px 25px;
        font-size: 13px;
    }

    .roulette-container {
        width: 220px;
        height: 220px;
    }

    .roulette-wheel {
        width: 160px;
        height: 160px;
        border-width: 4px;
    }

    .roulette-wheel::before {
        width: 30px;
        height: 30px;
    }

    .roulette-wheel::after {
        border-left-width: 8px;
        border-right-width: 8px;
        border-top-width: 15px;
        top: -12px;
    }

    .card {
        width: 25px;
        height: 35px;
    }

    .card::before {
        font-size: 12px;
    }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-banner {
        min-height: 400px;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
        padding: 20px 15px;
        gap: 30px;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
}

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

.categories-container {
    position: relative;
}

.categories-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.categories-wrapper::-webkit-scrollbar {
    display: none;
}

.categories-grid {
    display: flex;
    gap: 15px;
    min-width: max-content;
    padding: 0 5px;
}

.category-item {
    flex: 0 0 auto;
    width: 140px;
    height: 100px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

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

.category-item:hover::before {
    left: 100%;
}

.category-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.category-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}

.category-name {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    opacity: 0.9;
}

/* Specific category styles */
.category-woo {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.category-woo .category-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.category-new {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.category-new .category-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.category-slots {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.category-slots .category-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.category-bonus {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.category-bonus .category-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.category-live {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.category-live .category-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.category-roulette {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.category-roulette .category-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.category-instant {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
}

.category-instant .category-icon {
    background: rgba(0, 0, 0, 0.2);
    color: #333;
}

.category-instant .category-name {
    color: #333;
}

.category-bitcoin {
    background: linear-gradient(135deg, #f7971e, #ffd200);
}

.category-bitcoin .category-icon {
    background: rgba(0, 0, 0, 0.2);
    color: #333;
}

.category-bitcoin .category-name {
    color: #333;
}

/* Scroll indicators */
.scroll-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scroll-indicator:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.scroll-left {
    left: -9px;
}

.scroll-right {
    right: -9px;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Responsive styles */
@media (min-width: 1400px) {
    .categories-grid {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        gap: 15px;
        min-width: auto;
    }

    .category-item {
        width: auto;
    }

    .scroll-indicator {
        display: none;
    }

    .categories-wrapper {
        overflow: visible;
    }
}

@media (max-width: 768px) {
    .categories-section {
        padding: 0 15px;
    }

    .category-item {
        width: 120px;
        height: 90px;
    }

    .category-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
        margin-bottom: 6px;
    }

    .category-name {
        font-size: 11px;
    }

    .categories-grid {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .categories-section {
        padding: 0 12px;
    }

    .category-item {
        width: 100px;
        height: 80px;
    }

    .category-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
        margin-bottom: 5px;
    }

    .category-name {
        font-size: 10px;
    }

    .categories-grid {
        gap: 10px;
    }

    .scroll-indicator {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Demo content */
.demo-content {
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 0 20px;
    text-align: center;
    color: #fff;
}

.demo-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.demo-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

.section-header {
    margin-bottom: 30px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.game-card {
    position: relative;
    background: #2c3e50;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    aspect-ratio: 16/9;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

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

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: #fff;
}

.game-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.game-provider {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hot-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff4757, #ff6b7a);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
    animation: pulse 2s infinite;
}

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.game-card:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Tablet styles */
@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 16px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .games-section {
        padding: 0 15px;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 12px;
    }

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

    .game-overlay {
        padding: 15px;
    }

    .game-title {
        font-size: 1rem;
    }

    .game-provider {
        font-size: 0.75rem;
    }

    .play-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .hot-badge {
        top: 8px;
        right: 8px;
        padding: 3px 6px;
        font-size: 0.65rem;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .games-section {
        padding: 0 12px;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 10px;
    }

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

    .game-overlay {
        padding: 12px;
    }

    .game-title {
        font-size: 0.9rem;
    }

    .game-provider {
        font-size: 0.7rem;
    }

    .play-button {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .games-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .game-overlay {
        padding: 10px;
    }

    .game-title {
        font-size: 0.8rem;
    }

    .game-provider {
        font-size: 0.65rem;
    }
}

/* Loading placeholder */
.game-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #34495e, #2c3e50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 48px;
}

.features-section {
    max-width: 1400px;
    margin: 0 auto 40px;
}

.features-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    color: #fff;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    position: relative;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c);
    border-radius: 50%;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

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

.feature-item:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

.feature-item:nth-child(1) .feature-icon::after {
    background: linear-gradient(45deg, #4ecdc4, #44a08d, #96e6a1, #d4fc79);
}

.feature-item:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #fa709a, #fee140);
    box-shadow: 0 8px 25px rgba(250, 112, 154, 0.3);
}

.feature-item:nth-child(2) .feature-icon::after {
    background: linear-gradient(45deg, #fa709a, #fee140, #ff9a9e, #fecfef);
}

.feature-item:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    box-shadow: 0 8px 25px rgba(168, 237, 234, 0.3);
    color: #333;
}

.feature-item:nth-child(3) .feature-icon::after {
    background: linear-gradient(45deg, #a8edea, #fed6e3, #ffecd2, #fcb69f);
}

.feature-item:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.feature-item:nth-child(4) .feature-icon::after {
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.3;
}

.feature-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    max-width: 280px;
    margin: 0 auto;
}

/* Icon specific styles */
.icon-wallet::before {
    content: "💳";
}

.icon-history::before {
    content: "📊";
}

.icon-lightning::before {
    content: "⚡";
}

.icon-security::before {
    content: "🔒";
}

/* Tablet styles */
@media (max-width: 1024px) {
    .features-container {
        padding: 30px;
    }

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

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 16px;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.85rem;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .features-section {
        padding: 0 15px;
    }

    .features-container {
        padding: 25px 20px;
        border-radius: 16px;
    }

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

    .feature-item {
        padding: 20px 15px;
        text-align: center;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .feature-title {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .feature-description {
        font-size: 0.8rem;
        max-width: 100%;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .features-section {
        padding: 0 12px;
    }

    .features-container {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .features-grid {
        gap: 20px;
    }

    .feature-item {
        padding: 18px 12px;
        border-radius: 12px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        margin-bottom: 12px;
    }

    .feature-title {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .feature-description {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

/* Two column layout for small tablets */
@media (min-width: 481px) and (max-width: 767px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .feature-item {
        padding: 15px;
    }

    .feature-description {
        font-size: 0.8rem;
    }
}

/* Landscape mobile optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .features-container {
        padding: 20px;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .feature-item {
        padding: 15px 10px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .feature-title {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .feature-description {
        font-size: 0.7rem;
    }
}

/* Animation delay for staggered effect */
.feature-item:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.feature-item:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.feature-item:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.feature-item:nth-child(4) {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer {
    background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 50%, #16213e 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

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

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

.footer-section {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-decoration: none;
    color: #fff;
}

.footer-logo::before {
    content: "🎰";
    margin-right: 10px;
    font-size: 2.5rem;
}

.footer-logo .woo {
    color: #ff4757;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff4757;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ff4757, transparent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
    color: #ff4757;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: #ff4757;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info li::before {
    margin-right: 10px;
    font-size: 1.1rem;
    color: #ff4757;
}

.contact-info .email::before { content: '📧'; }
.contact-info .phone::before { content: '📞'; }
.contact-info .location::before { content: '📍'; }
.contact-info .time::before { content: '🕐'; }

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

.payment-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.payment-method:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.footer-middle {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    margin-bottom: 30px;
}

.footer-middle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.feature-highlight {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.feature-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ff4757;
}

.responsible-gaming {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
}

.responsible-gaming h4 {
    color: #ff4757;
    margin-bottom: 10px;
    font-size: 1rem;
}

.responsible-gaming p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Mobile styles */
@media (max-width: 768px) {
    .footer-container {
        padding: 40px 15px 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 40px;
    }

    .footer-logo {
        font-size: 1.8rem;
        justify-content: center;
        text-align: center;
    }

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

    .footer-title {
        font-size: 1.1rem;
        text-align: center;
    }

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

    .social-links {
        justify-content: center;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-legal {
        justify-content: center;
        gap: 15px;
    }

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

/* Small mobile styles */
@media (max-width: 480px) {
    .footer-container {
        padding: 30px 12px 0;
    }

    .footer-top {
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-logo {
        font-size: 1.6rem;
    }

    .footer-title {
        font-size: 1rem;
    }

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

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

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

    .payment-method {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .responsible-gaming {
        padding: 15px;
        margin: 20px 0;
    }
}
.blog-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 55px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 40px;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 126, 95, 0.7), transparent);
}

.blog-section:nth-child(even) {
    background: linear-gradient(135deg, rgba(255, 126, 95, 0.05), rgba(255, 126, 95, 0.02));
}

.blog-section:nth-child(even)::before {
    background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.7), transparent);
}

.blog-title {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 40px;
    color: #fff;
    text-align: center;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: 0 3px 15px rgba(255, 126, 95, 0.4);
    letter-spacing: 1px;
}

.blog-title::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    border-radius: 3px;
    box-shadow: 0 3px 15px rgba(255, 126, 95, 0.5);
}

.blog-heading {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 50px 0 28px;
    color: #fff;
    position: relative;
    padding-left: 30px;
}

.blog-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 40px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(255, 126, 95, 0.6);
}

.blog-text {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.95);
    text-align: justify;
}

.blog-text strong {
    color: #ff7e5f;
    font-weight: 700;
}

.blog-intro {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 126, 95, 0.08);
    padding: 25px 30px;
    border-radius: 16px;
    border-left: 5px solid #ff7e5f;
    position: relative;
}

.blog-intro::before {
    content: '✨';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    opacity: 0.6;
}

.blog-emphasis {
    background: rgba(255, 126, 95, 0.1);
    border: 1px solid rgba(255, 126, 95, 0.3);
    border-radius: 18px;
    padding: 32px;
    margin: 38px 0;
    position: relative;
    overflow: hidden;
}

.blog-emphasis::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
}

.blog-emphasis h3 {
    color: #ff7e5f;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
}

.blog-emphasis p {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.8;
    font-size: 1.05rem;
}

.blog-callout {
    background: rgba(255, 255, 255, 0.06);
    border-left: 6px solid #ff7e5f;
    padding: 28px 35px;
    margin: 32px 0;
    border-radius: 0 18px 18px 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.92);
    position: relative;
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-callout::before {
    content: '"';
    position: absolute;
    top: -18px;
    left: 30px;
    font-size: 4.5rem;
    color: #ff7e5f;
    opacity: 0.3;
    font-family: serif;
}

.blog-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.blog-feature-item {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.blog-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 126, 95, 0.1), transparent);
    transition: left 0.6s;
}

.blog-feature-item:hover::before {
    left: 100%;
}

.blog-feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(255, 126, 95, 0.3);
    box-shadow: 0 8px 30px rgba(255, 126, 95, 0.2);
}

.blog-feature-item h4 {
    color: #ff7e5f;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
}

.blog-feature-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-faq-container {
    margin-top: 45px;
}

.blog-faq-item {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    margin-bottom: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.blog-faq-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 126, 95, 0.2);
}

.blog-faq-question {
    font-weight: 700;
    color: #ff7e5f;
    padding: 22px 25px;
    margin: 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-faq-answer {
    padding: 18px 25px 22px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
}

.blog-conclusion {
    background: linear-gradient(135deg, rgba(255, 126, 95, 0.1), rgba(254, 180, 123, 0.05));
    border: 2px solid rgba(255, 126, 95, 0.2);
    border-radius: 20px;
    padding: 35px;
    margin: 45px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-conclusion::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 126, 95, 0.1), transparent);
    animation: rotateGlow 8s linear infinite;
}

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

.blog-conclusion h3 {
    color: #ff7e5f;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.blog-conclusion p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
}

/* Mobile styles */
@media (max-width: 768px) {
    .blog-section {
        padding: 40px 15px;
        margin-bottom: 30px;
        border-radius: 24px;
    }

    .blog-title {
        font-size: 2.5rem;
        margin-bottom: 35px;
        letter-spacing: 0.5px;
    }

    .blog-title::after {
        width: 100px;
        height: 4px;
        bottom: -15px;
    }

    .blog-heading {
        font-size: 1.9rem;
        margin: 40px 0 22px;
        padding-left: 25px;
    }

    .blog-heading::before {
        width: 5px;
        height: 35px;
    }

    .blog-text {
        font-size: 1.05rem;
        margin-bottom: 24px;
        text-align: left;
    }

    .blog-intro {
        font-size: 1.1rem;
        padding: 20px 25px;
        margin-bottom: 30px;
    }

    .blog-emphasis {
        padding: 28px;
        margin: 32px 0;
    }

    .blog-callout {
        padding: 24px 30px;
        margin: 28px 0;
    }

    .blog-callout::before {
        font-size: 4rem;
        top: -15px;
        left: 25px;
    }

    .blog-feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 35px 0;
    }

    .blog-feature-item {
        padding: 24px;
    }

    .blog-faq-question {
        padding: 18px 20px;
        font-size: 1.05rem;
    }

    .blog-faq-answer {
        padding: 15px 20px 18px;
        font-size: 0.95rem;
    }

    .blog-conclusion {
        padding: 30px;
        margin: 40px 0;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .blog-section {
        padding: 30px 12px;
        margin-bottom: 25px;
        border-radius: 20px;
    }

    .blog-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .blog-title::after {
        width: 80px;
        height: 3px;
        bottom: -12px;
    }

    .blog-heading {
        font-size: 1.7rem;
        margin: 35px 0 20px;
        padding-left: 22px;
    }

    .blog-text {
        font-size: 1rem;
        margin-bottom: 22px;
    }

    .blog-intro {
        font-size: 1.05rem;
        padding: 18px 20px;
        margin-bottom: 28px;
    }

    .blog-emphasis {
        padding: 25px;
        margin: 30px 0;
    }

    .blog-callout {
        padding: 22px 25px;
        margin: 25px 0;
    }

    .blog-callout::before {
        font-size: 3.5rem;
        top: -12px;
        left: 22px;
    }

    .blog-feature-item {
        padding: 22px;
    }

    .blog-faq-question {
        padding: 16px 18px;
        font-size: 1rem;
    }

    .blog-faq-answer {
        padding: 14px 18px 16px;
        font-size: 0.9rem;
    }

    .blog-conclusion {
        padding: 25px;
        margin: 35px 0;
    }
}

/* Animation for sections */
.blog-section {
    opacity: 0;
    animation: fadeInSlide 1s ease-out forwards;
}

.blog-section:nth-child(1) { animation-delay: 0.2s; }
.blog-section:nth-child(2) { animation-delay: 0.4s; }

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