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);
}

.hero-banner {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3e 25%, #2d1b69 50%, #6a0572 75%, #a8005c 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 50%, rgba(138, 43, 226, 0.4) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(75, 0, 130, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 40% 80%, rgba(255, 20, 147, 0.2) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

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

.hero-content {
    color: #fff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    color: #ffd700;
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '';
    height: 2px;
    background: linear-gradient(90deg, #ffd700, transparent);
    flex: 1;
}

.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #3742fa, #5352ed);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 30px rgba(55, 66, 250, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(55, 66, 250, 0.5);
}

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

.roulette-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.roulette-wheel {
    width: 300px;
    height: 300px;
    border: 8px solid #ffd700;
    border-radius: 50%;
    background: conic-gradient(
            from 0deg,
            #ff0000 0deg 18deg,
            #000000 18deg 36deg,
            #ff0000 36deg 54deg,
            #000000 54deg 72deg,
            #ff0000 72deg 90deg,
            #000000 90deg 108deg,
            #ff0000 108deg 126deg,
            #000000 126deg 144deg,
            #ff0000 144deg 162deg,
            #000000 162deg 180deg,
            #ff0000 180deg 198deg,
            #000000 198deg 216deg,
            #ff0000 216deg 234deg,
            #000000 234deg 252deg,
            #ff0000 252deg 270deg,
            #000000 270deg 288deg,
            #ff0000 288deg 306deg,
            #000000 306deg 324deg,
            #ff0000 324deg 342deg,
            #000000 342deg 360deg
    );
    position: relative;
    animation: spin 8s linear infinite;
    box-shadow:
            0 0 30px rgba(255, 215, 0, 0.6),
            inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.roulette-wheel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, #ffd700, #ffed4e);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

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

.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;
    }
}
.content-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.content-section:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.content-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
    background: linear-gradient(135deg, #ff4757, #ff6b7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.content-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff4757, #ff6b7a);
    border-radius: 2px;
}

.content-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 40px 0 20px;
    color: #fff;
    position: relative;
    padding-left: 20px;
}

.content-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #ff4757, #ff6b7a);
    border-radius: 2px;
}

.content-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.content-text strong {
    color: #ff4757;
    font-weight: 600;
}

.content-list {
    margin: 20px 0;
    padding-left: 20px;
}

.content-list li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    list-style: none;
    padding-left: 25px;
}

.content-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ff4757;
    font-weight: bold;
}

.content-ordered-list {
    margin: 20px 0;
    padding-left: 20px;
    counter-reset: step-counter;
}

.content-ordered-list li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    list-style: none;
    padding-left: 40px;
    counter-increment: step-counter;
}

.content-ordered-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #ff4757, #ff6b7a);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.85rem;
}

.content-table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.content-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    overflow: hidden;
}

.content-table th {
    background: linear-gradient(135deg, #ff4757, #ff6b7a);
    color: #fff;
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
}

.content-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.content-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.content-table tr:hover {
    background: rgba(255, 255, 255, 0.08);
}

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

.content-highlight {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

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

.content-highlight h3 {
    color: #ff4757;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.content-highlight p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.content-quote {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #ff4757;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.content-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 3rem;
    color: #ff4757;
    opacity: 0.3;
}

.faq-section {
    margin-top: 40px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
    font-weight: 600;
    color: #ff4757;
    padding: 20px;
    margin: 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-answer {
    padding: 15px 20px 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

    .content-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .content-subtitle {
        font-size: 1.5rem;
        margin: 30px 0 15px;
        padding-left: 15px;
    }

    .content-subtitle::before {
        width: 3px;
        height: 25px;
    }

    .content-text {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }

    .content-list {
        padding-left: 15px;
    }

    .content-list li {
        padding-left: 20px;
        margin-bottom: 8px;
    }

    .content-ordered-list li {
        padding-left: 35px;
        margin-bottom: 10px;
    }

    .content-ordered-list li::before {
        width: 22px;
        height: 22px;
        font-size: 0.8rem;
    }

    .content-table-wrapper {
        margin: 25px -15px;
        padding: 15px;
        border-radius: 0;
    }

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

    .content-table th,
    .content-table td {
        padding: 12px 15px;
        font-size: 0.85rem;
    }

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

    .content-quote {
        padding: 15px 20px;
        margin: 20px 0;
    }

    .faq-question {
        padding: 15px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 12px 15px 15px;
        font-size: 0.9rem;
    }
}

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

    .content-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .content-title::after {
        width: 60px;
        height: 2px;
    }

    .content-subtitle {
        font-size: 1.3rem;
        margin: 25px 0 12px;
        padding-left: 12px;
    }

    .content-text {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .content-table-wrapper {
        margin: 20px -12px;
        padding: 12px;
    }

    .content-table {
        min-width: 400px;
    }

    .content-table th,
    .content-table td {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .content-highlight {
        padding: 15px;
        margin: 20px 0;
    }

    .content-quote {
        padding: 12px 15px;
        margin: 15px 0;
    }

    .content-quote::before {
        font-size: 2.5rem;
        top: -8px;
        left: 15px;
    }
}

/* Table scroll indicators */
.content-table-wrapper::-webkit-scrollbar {
    height: 8px;
}

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

.content-table-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 71, 87, 0.6);
    border-radius: 4px;
}

.content-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 71, 87, 0.8);
}

/* Animation for sections */
.content-section {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

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

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