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: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

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

body {
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    background: #000;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 20px;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 20px;
    animation: pulse 2s infinite;
}

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

.logo-text {
    color: #ffffff;
}

.logo-text .highlight {
    color: #00ff88;
}

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

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff88;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: #00ff88;
    transform: scale(1.1);
}

.banner {
    min-height: 50vh;
    background: linear-gradient(135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(139, 69, 19, 0.6) 50%,
    rgba(0, 0, 0, 0.9) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="casino-pattern" x="0" y="0" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="100" cy="100" r="80" fill="none" stroke="rgba(255,215,0,0.1)" stroke-width="2"/><circle cx="50" cy="50" r="20" fill="rgba(255,0,0,0.1)"/><circle cx="150" cy="150" r="20" fill="rgba(0,0,0,0.3)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23casino-pattern)"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 0, 0, 0.15) 0%, transparent 50%);
    animation: backgroundMove 10s ease-in-out infinite;
}

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

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

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

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

.banner-title {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #00ff88;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(0, 255, 136, 0.5); }
    to { text-shadow: 0 0 30px rgba(0, 255, 136, 0.8); }
}

.banner-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    opacity: 0.9;
}

.banner-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
    position: relative;
    overflow: hidden;
}

.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.5s ease;
}

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.6);
}

.banner-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

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

.card-container {
    position: relative;
    width: 200px;
    height: 280px;
    transform-style: preserve-3d;
    animation: cardFloat 4s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(15deg); }
}

.playing-card {
    position: absolute;
    width: 140px;
    height: 200px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #000;
    border: 2px solid #ddd;
}

.card-1 {
    transform: rotate(-15deg) translateX(-20px);
    z-index: 1;
}

.card-2 {
    transform: rotate(15deg) translateX(20px);
    z-index: 2;
}

.chips {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.chip {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    color: #fff;
    animation: chipRotate 3s linear infinite;
}

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

.chip-red { background: linear-gradient(135deg, #ff4444, #cc0000); }
.chip-blue { background: linear-gradient(135deg, #4444ff, #0000cc); }
.chip-green { background: linear-gradient(135deg, #44ff44, #00cc00); }

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

.floating-element {
    position: absolute;
    opacity: 0.3;
    animation: float 8s linear infinite;
}

@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.floating-element:nth-child(1) { left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { left: 20%; animation-delay: 2s; }
.floating-element:nth-child(3) { left: 30%; animation-delay: 4s; }
.floating-element:nth-child(4) { left: 40%; animation-delay: 6s; }
.floating-element:nth-child(5) { left: 50%; animation-delay: 1s; }
.floating-element:nth-child(6) { left: 60%; animation-delay: 3s; }
.floating-element:nth-child(7) { left: 70%; animation-delay: 5s; }
.floating-element:nth-child(8) { left: 80%; animation-delay: 7s; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        transition: right 0.3s ease;
    }

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

    .nav-menu li {
        margin: 20px 0;
    }

    .nav-menu li a {
        font-size: 18px;
    }

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

    .banner-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 30px 20px;
    }

    .banner-title {
        font-size: 24px;
    }

    .banner-subtitle {
        font-size: 16px;
    }

    .banner-description {
        font-size: 14px;
    }

    .card-container {
        width: 150px;
        height: 200px;
    }

    .playing-card {
        width: 100px;
        height: 140px;
        font-size: 40px;
    }

    .chips {
        bottom: -30px;
    }

    .chip {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
}

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

    .logo {
        font-size: 20px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

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

    .banner-subtitle {
        font-size: 18px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
}

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

.section-title {
    font-size: 32px;
    font-weight: bold;
    color: #00ff88;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(0, 255, 136, 0.5); }
    to { text-shadow: 0 0 20px rgba(0, 255, 136, 0.8); }
}

.games-container {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 0 20px;
    scrollbar-width: thin;
    scrollbar-color: #00ff88 #1a1a1a;
}

.games-container::-webkit-scrollbar {
    height: 8px;
}

.games-container::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

.games-container::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #00ff88, #00cc6a);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.games-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #00cc6a, #00aa55);
}

.games-grid {
    display: flex;
    gap: 20px;
    padding: 0 10px;
    min-width: min-content;
}

.game-card {
    min-width: 200px;
    width: 200px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid #00ff88;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.game-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #00ffaa;
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
    position: relative;
    z-index: 0;
}

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

.game-info {
    padding: 15px;
    position: relative;
    z-index: 2;
}

.game-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 100%;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    border: none;
    padding: 12px 20px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    text-align: center;
}

.play-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.5s ease;
}

.game-card:hover .play-button::before {
    left: 100%;
}

.play-button:hover {
    background: linear-gradient(135deg, #00cc6a, #00aa55);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

.scroll-hint {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-top: 15px;
    animation: pulse 2s infinite;
}

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

/* Navigation arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 255, 136, 0.9);
    color: #000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.nav-arrow:hover {
    background: #00ff88;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.5);
}

.nav-arrow.prev {
    left: -20px;
}

.nav-arrow.next {
    right: -20px;
}

.nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

@media (max-width: 768px) {


    .section-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .game-card {
        min-width: 160px;
        width: 160px;
    }

    .game-image {
        height: 160px;
    }

    .game-info {
        padding: 12px;
    }

    .game-title {
        font-size: 12px;
        min-height: 30px;
    }

    .play-button {
        padding: 10px 15px;
        font-size: 12px;
    }

    .games-grid {
        gap: 15px;
        padding: 0 5px;
    }

    .nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .nav-arrow.prev {
        left: -15px;
    }

    .nav-arrow.next {
        right: -15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 22px;
    }

    .game-card {
        min-width: 140px;
        width: 140px;
    }

    .game-image {
        height: 140px;
    }

    .game-title {
        font-size: 11px;
        min-height: 28px;
    }

    .play-button {
        padding: 8px 12px;
        font-size: 11px;
    }

    .nav-arrow {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

.steps-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.steps-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #00ff88;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(0, 255, 136, 0.5); }
    to { text-shadow: 0 0 30px rgba(0, 255, 136, 0.8); }
}

.steps-subtitle {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    font-weight: 300;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

.step-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: #00ff88;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.step-title {
    font-size: 16px;
    font-weight: bold;
    color: #D4AF37;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.step-card:hover .step-title {
    color: #FFD700;
}

.step-description {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.step-card:hover .step-description {
    color: #ffffff;
}

/* Connection lines between steps */
.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -20px;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #00ff88, transparent);
    z-index: 1;
    animation: flowLine 3s ease-in-out infinite;
}

@keyframes flowLine {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Progress indicator */
.progress-bar {
    position: absolute;
    top: 25px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff88, #00cc6a);
    width: 0;
    animation: progressFill 4s ease-in-out infinite;
}

@keyframes progressFill {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Floating elements */
.floating-elements {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }

    .step-card:nth-child(5) {
        grid-column: span 1;
        max-width: none;
        justify-self: stretch;
    }

    .step-card {
        padding: 25px 20px;
        min-height: 180px;
        position: relative;
    }

    .step-card:not(:last-child)::after {
        display: none;
    }

    .progress-bar {
        display: none;
    }

    /* Connection indicator for tablets and mobile */
    .step-card:not(:last-child) {
        margin-bottom: 10px;
    }

    .step-card:not(:last-child)::after {
        content: '↓';
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        color: #00ff88;
        font-size: 20px;
        animation: bounce 2s infinite;
        display: block;
        width: auto;
        height: auto;
        background: none;
        z-index: 1;
    }

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

@media (max-width: 768px) {
    body {
        padding: 30px 15px;
    }

    .steps-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .steps-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .step-card {
        padding: 20px 15px;
        min-height: 160px;
    }
}

@media (max-width: 480px) {
    .steps-title {
        font-size: 24px;
    }

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

    .steps-grid {
        max-width: 300px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 15px;
    }

    .step-title {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .step-description {
        font-size: 13px;
    }
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; }
.step-card:nth-child(5) { animation-delay: 0.5s; }

.step-card {
    animation: slideInUp 0.6s ease-out both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    border-top: 2px solid #00ff88;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 30px;
    position: relative;
    z-index: 2;
}

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

.footer-section {
    position: relative;
}

.footer-title {
    font-size: 20px;
    font-weight: bold;
    color: #00ff88;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #00ff88, transparent);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    transition: all 0.3s ease;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 5px 0;
}

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

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

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

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

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

.social-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 2px solid #00ff88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff88;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
    color: #000;
}

.social-link span {
    position: relative;
    z-index: 1;
}

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

.payment-method {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 6px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-method:hover {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-logo-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 18px;
    animation: pulse 2s infinite;
}

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

.footer-logo-text .highlight {
    color: #00ff88;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-align: center;
}

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

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

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

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    top: 0;
    left: 0;
}

.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 15s linear infinite;
    font-size: 20px;
}

@keyframes float {
    0% { transform: translateY(100%) rotate(0deg); opacity: 0; }
    10% { opacity: 0.1; }
    90% { opacity: 0.1; }
    100% { transform: translateY(-100%) rotate(360deg); opacity: 0; }
}

.floating-element:nth-child(1) { left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { left: 20%; animation-delay: 3s; }
.floating-element:nth-child(3) { left: 30%; animation-delay: 6s; }
.floating-element:nth-child(4) { left: 40%; animation-delay: 9s; }
.floating-element:nth-child(5) { left: 50%; animation-delay: 12s; }
.floating-element:nth-child(6) { left: 60%; animation-delay: 2s; }
.floating-element:nth-child(7) { left: 70%; animation-delay: 5s; }
.floating-element:nth-child(8) { left: 80%; animation-delay: 8s; }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

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

    .footer-links {
        align-items: center;
        gap: 10px;
    }

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

    .social-links {
        justify-content: center;
        margin-top: 20px;
    }

    .payment-methods {
        justify-content: center;
        margin-top: 20px;
    }

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

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

    .footer-copyright {
        order: 3;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 30px 10px 20px;
    }

    .footer-title {
        font-size: 16px;
    }

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

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

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

    .footer-logo {
        font-size: 18px;
    }

    .footer-logo-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}


/* Content Sections Styles */
.content-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    opacity: 0.3;
}

.content-title {
    font-size: 32px;
    font-weight: bold;
    color: #00ff88;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    position: relative;
    display: inline-block;
}

.content-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, transparent);
    border-radius: 2px;
}

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

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

.content-text em {
    color: #00ff88;
    font-style: normal;
    font-weight: 600;
}

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

.content-list li {
    position: relative;
    padding: 8px 0 8px 25px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.content-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 8px;
    color: #00ff88;
    font-size: 12px;
    transition: all 0.3s ease;
}

.content-list li:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.content-list li:hover::before {
    color: #00ffaa;
    transform: scale(1.2);
}

.table-wrapper {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    scrollbar-width: thin;
    scrollbar-color: #00ff88 #1a1a1a;
}

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

.table-wrapper::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #00ff88, #00cc6a);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #00cc6a, #00aa55);
}

.content-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 12px;
    overflow: hidden;
}

.content-table thead {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
}

.content-table th {
    padding: 15px 12px;
    text-align: left;
    font-weight: bold;
    color: #000;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.content-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.content-table tbody tr:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: scale(1.01);
}

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

.content-table strong {
    color: #00ff88;
}

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

.ordered-list li {
    counter-increment: step-counter;
    position: relative;
    padding: 12px 0 12px 50px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 8px;
    border-left: 3px solid #00ff88;
    transition: all 0.3s ease;
}

.ordered-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
}

.ordered-list li:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateX(5px);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 106, 0.05));
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

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

.winners-list {
    background: rgba(26, 26, 26, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 20px;
    margin: 20px 0;
}

.winners-list .content-list li {
    background: rgba(0, 255, 136, 0.05);
    border-radius: 6px;
    padding: 12px 12px 12px 35px;
    margin-bottom: 8px;
    border-left: 3px solid #00ff88;
}

.winners-list .content-list li::before {
    content: '🏆';
    font-size: 16px;
    left: 8px;
    top: 12px;
}

/* Mobile Responsive for Content */
@media (max-width: 768px) {
    .content-section {
        margin: 40px auto;
        padding: 0 15px;
    }

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

    .content-text {
        font-size: 15px;
    }

    .content-list li {
        font-size: 15px;
        padding: 6px 0 6px 20px;
    }

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

    .content-table {
        min-width: 500px;
        font-size: 12px;
    }

    .content-table th,
    .content-table td {
        padding: 8px 6px;
    }

    .ordered-list li {
        padding: 10px 0 10px 40px;
        font-size: 15px;
    }

    .ordered-list li::before {
        left: 10px;
        width: 20px;
        height: 20px;
        font-size: 11px;
    }

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

    .winners-list {
        padding: 15px;
        margin: 15px 0;
    }

    .winners-list .content-list li {
        padding: 10px 10px 10px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .content-title {
        font-size: 22px;
    }

    .content-text {
        font-size: 14px;
    }

    .content-list li {
        font-size: 14px;
    }

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

    .content-table th,
    .content-table td {
        padding: 6px 4px;
    }

    .ordered-list li {
        font-size: 14px;
        padding: 8px 0 8px 35px;
    }

    .table-wrapper {
        margin: 15px -15px;
    }
}

/* Scroll indicator for tables */
.table-wrapper::after {
    content: '← Scroll to see more →';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: rgba(0, 255, 136, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

@media (max-width: 768px) {
    .table-wrapper::after {
        opacity: 1;
    }
}