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

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


body {
    font-family: 'Arial', sans-serif;
    background: #1a1a2e;
}

.header {
    background: linear-gradient(135deg, #2d1b69 0%, #1a1a2e 100%);
    padding: 0 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.1) 50%, transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.rocket-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

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

.rocket-icon::before {
    content: '🚀';
    font-size: 20px;
}

.brand-text {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-text .play {
    color: #f7931e;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 2;
}

.nav-item {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-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;
}

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

.nav-item:hover {
    color: #f7931e;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(255, 51, 102, 0.5); }
    100% { box-shadow: 0 0 20px rgba(255, 51, 102, 0.8); }
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

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

.btn-login:hover {
    background: #fff;
    color: #2d1b69;
    transform: scale(1.05);
}

.btn-signup {
    background: linear-gradient(45deg, #f7931e, #ff6b35);
    color: #fff;
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.3);
}

.btn-signup:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(247, 147, 30, 0.5);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transition: all 0.3s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.btn:hover::before {
    width: 200px;
    height: 200px;
}

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

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

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

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

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #2d1b69 0%, #1a1a2e 100%);
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 80px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

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

.mobile-nav-item {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-item:hover {
    color: #f7931e;
    padding-left: 10px;
}

.mobile-nav-item.hot {
    background: linear-gradient(45deg, #ff3366, #ff6b35);
    padding: 15px;
    border-radius: 10px;
    margin: 10px 0;
    border: none;
    position: relative;
}

.mobile-nav-item.hot::after {
    content: 'HOT';
    position: absolute;
    top: 5px;
    right: 10px;
    background: #ff0033;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: bold;
}

.mobile-auth {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-auth .btn {
    width: 100%;
    text-align: center;
    padding: 15px;
}

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

/* Media Queries */

/* 1400px */
@media (max-width: 1400px) {
    .nav-menu {
        gap: 20px;
    }
    .nav-item {
        font-size: 13px;
        padding: 7px 14px;
    }
}

/* 1200px */
@media (max-width: 1200px) {
    .header {
        padding: 0 15px;
    }
    .nav-menu {
        gap: 20px;
    }
    .nav-item {
        font-size: 12px;
        padding: 6px 10px;
    }
    .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* 1100px */
@media (max-width: 1100px) {
    .nav-menu {
        gap: 15px;
    }
    .nav-item {
        font-size: 11px;
        padding: 5px 8px;
    }
    .btn {
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* 990px */
@media (max-width: 990px) {
    .nav-menu,
    .auth-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .brand-text {
        font-size: 22px;
    }
    .rocket-icon {
        width: 35px;
        height: 35px;
    }
    .rocket-icon::before {
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    .nav-menu,
    .auth-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header {
        padding: 0 15px;
    }

    .brand-text {
        font-size: 20px;
    }

    .rocket-icon {
        width: 35px;
        height: 35px;
    }

    .rocket-icon::before {
        font-size: 18px;
    }
}

/* 640px */
@media (max-width: 640px) {
    .header {
        padding: 0 12px;
        height: 65px;
    }

    .brand-text {
        font-size: 18px;
        letter-spacing: 0.5px;
    }

    .rocket-icon {
        width: 30px;
        height: 30px;
    }

    .rocket-icon::before {
        font-size: 16px;
    }

    .mobile-menu {
        width: 280px;
        padding: 70px 25px 25px;
    }

    .mobile-nav-item {
        font-size: 15px;
        padding: 12px 0;
    }
}

/* 480px and below */
@media (max-width: 480px) {
    .header {
        padding: 0 10px;
        height: 60px;
    }

    .brand-text {
        font-size: 16px;
    }

    .rocket-icon {
        width: 28px;
        height: 28px;
    }

    .rocket-icon::before {
        font-size: 14px;
    }

    .mobile-menu {
        width: 100%;
        padding: 70px 20px 20px;
    }
}

.hero-banner {
    background: linear-gradient(135deg, #0f0c29 0%, #24243e 50%, #2d1b69 100%);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(247, 147, 30, 0.2) 0%, transparent 50%);
    animation: backgroundShift 8s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(5px) translateY(-5px); }
    50% { transform: translateX(-5px) translateY(5px); }
    75% { transform: translateX(5px) translateY(5px); }
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(2px 2px at 20px 30px, #fff, transparent),
            radial-gradient(2px 2px at 40px 70px, rgba(255, 107, 53, 0.8), transparent),
            radial-gradient(1px 1px at 90px 40px, rgba(247, 147, 30, 0.6), transparent),
            radial-gradient(1px 1px at 130px 80px, #fff, transparent),
            radial-gradient(2px 2px at 160px 30px, rgba(255, 107, 53, 0.6), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 15s linear infinite;
    opacity: 0.6;
}

@keyframes sparkle {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); }
    100% { text-shadow: 0 4px 30px rgba(255, 107, 53, 0.3), 0 0 40px rgba(247, 147, 30, 0.2); }
}

.gradient-text {
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.play-text {
    color: #fff;
    position: relative;
}

.play-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f7931e, #ff6b35);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes underlineGlow {
    0% { box-shadow: 0 0 5px rgba(247, 147, 30, 0.5); }
    100% { box-shadow: 0 0 15px rgba(247, 147, 30, 0.8); }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 300;
    max-width: 450px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, #f7931e 0%, #ff6b35 50%, #ff4757 100%);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 30px rgba(247, 147, 30, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.hero-btn::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;
}

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

.hero-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(247, 147, 30, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    font-size: 1.5rem;
    animation: rocketFloat 2s ease-in-out infinite;
}

@keyframes rocketFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 300px;
}

.rocket-animation {
    position: relative;
    z-index: 3;
}

.rocket {
    font-size: 6rem;
    animation: rocketFly 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
}

@keyframes rocketFly {
    0%, 100% {
        transform: translateY(0) rotate(-10deg);
    }
    25% {
        transform: translateY(-20px) rotate(-5deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.trail {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 60px;
    background: linear-gradient(to bottom,
    rgba(255, 107, 53, 0.8) 0%,
    rgba(247, 147, 30, 0.6) 50%,
    transparent 100%);
    border-radius: 2px;
    animation: trailPulse 4s ease-in-out infinite;

    @media(max-width: 648px) {
        display: none;
    }
}

@keyframes trailPulse {
    0%, 100% { height: 60px; opacity: 0.8; }
    50% { height: 80px; opacity: 1; }
}

.floating-coins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.coin {
    position: absolute;
    font-size: 2rem;
    animation: coinFloat 6s ease-in-out infinite;
}

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

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

.coin:nth-child(3) {
    top: 30%;
    right: 10%;
    animation-delay: 2s;
}

.coin:nth-child(4) {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.coin:nth-child(5) {
    bottom: 60%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes coinFloat {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-15px) rotateY(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-30px) rotateY(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-15px) rotateY(270deg);
        opacity: 1;
    }
}

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

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 30px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
        max-width: none;
    }

    .hero-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .hero-visual {
        min-height: 200px;
        width: 250px;
    }

    .rocket {
        font-size: 3rem;
    }

    .coin {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 350px;
    }

    .hero-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

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

    .hero-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        gap: 10px;
    }

    .rocket {
        font-size: 2.5rem;
    }

    .hero-visual {
        min-height: 150px;
    }
}

/* Extra animations for engagement */
.hero-banner {
    animation: bannerIntro 1s ease-out;
}

@keyframes bannerIntro {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    animation: titleSlide 1.2s ease-out 0.3s both;
}

@keyframes titleSlide {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    animation: subtitleFade 1.2s ease-out 0.6s both;
}

@keyframes subtitleFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-btn {
    animation: buttonPop 1.2s ease-out 0.9s both;
}

@keyframes buttonPop {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.tournaments-section {
    background: linear-gradient(135deg, #1e1e3f 0%, #2a2a4a 100%);
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.tournaments-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 10% 20%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 90% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.tournaments-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.tournaments-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.show-all-btn {
    background: transparent;
    color: #f7931e;
    border: 2px solid #f7931e;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.show-all-btn:hover {
    background: #f7931e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.3);
}

.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.tournament-card {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #1e3a8a 100%);
    border-radius: 12px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.tournament-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    pointer-events: none;
}

.tournament-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.tournament-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.tournament-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(37, 99, 235, 0.8));
}

.tournament-image.pirate {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="40" fill="white">🏴‍☠️</text></svg>');
    background-size: cover, 60px;
    background-position: center, 20% 30%;
    background-repeat: no-repeat, no-repeat;
}

.tournament-image.poseidon {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="40" fill="white">🔱</text></svg>');
    background-size: cover, 60px;
    background-position: center, 20% 30%;
    background-repeat: no-repeat, no-repeat;
}

.tournament-image.coral {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="40" fill="white">🐠</text></svg>');
    background-size: cover, 60px;
    background-position: center, 20% 30%;
    background-repeat: no-repeat, no-repeat;
}

.tournament-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    z-index: 3;
}

.tournament-badge {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-real-cash {
    background: linear-gradient(45deg, #16a085, #27ae60);
}

.badge-aquanova {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.badge-multipliers {
    background: linear-gradient(45deg, #f39c12, #e67e22);
}

.badge-bets {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
}

.tournament-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.tournament-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.tournament-title-text {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tournament-btn {
    background: linear-gradient(45deg, #f7931e, #ff6b35);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}

.tournament-btn::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;
}

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

.tournament-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 147, 30, 0.4);
}

/* Floating bubbles animation */
.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: bubbleFloat 6s infinite ease-in-out;
    pointer-events: none;
}

.bubble:nth-child(1) {
    width: 20px;
    height: 20px;
    left: 10%;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 15px;
    height: 15px;
    left: 50%;
    animation-delay: 2s;
}

.bubble:nth-child(3) {
    width: 25px;
    height: 25px;
    left: 80%;
    animation-delay: 4s;
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(100px) scale(0);
        opacity: 0;
    }
    50% {
        transform: translateY(-20px) scale(1);
        opacity: 0.6;
    }
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .tournaments-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 15px;
    }
}

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

    .tournaments-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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

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

    .tournament-card {
        min-height: 300px;
    }

    .tournament-image {
        height: 160px;
    }

    .tournament-content {
        padding: 15px;
    }

    .tournament-title-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .tournaments-section {
        padding: 20px 10px;
    }

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

    .show-all-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .tournament-card {
        min-height: 280px;
    }

    .tournament-image {
        height: 140px;
    }

    .tournament-content {
        padding: 12px;
    }

    .tournament-title-text {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .tournament-btn {
        padding: 10px 20px;
        font-size: 12px;
        width: 100%;
    }

    .tournament-badges {
        top: 10px;
        left: 10px;
    }

    .tournament-badge {
        font-size: 8px;
        padding: 3px 6px;
    }
}

/* Loading animation */
.tournament-card {
    animation: cardSlideUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

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

@keyframes cardSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer {
    background: linear-gradient(135deg, #0f0c29 0%, #1a1a2e 50%, #24243e 100%);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 20%, rgba(247, 147, 30, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
            linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

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

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3); }
    100% { box-shadow: 0 4px 30px rgba(255, 107, 53, 0.5); }
}

.footer-logo-icon::before {
    content: '🚀';
    font-size: 24px;
}

.footer-brand-text {
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-brand-text .play {
    color: #f7931e;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 14px;
    max-width: 300px;
}

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

.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: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: linear-gradient(45deg, #f7931e, #ff6b35);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(247, 147, 30, 0.4);
}

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

.footer-title {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #f7931e, #ff6b35);
    border-radius: 1px;
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #f7931e;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #f7931e;
    padding-left: 15px;
}

.footer-link:hover::before {
    width: 8px;
}

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

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

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

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

.footer-bottom-link:hover {
    color: #f7931e;
}

.footer-payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.payment-method {
    width: 40px;
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.newsletter-signup {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.newsletter-title {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    background: linear-gradient(45deg, #f7931e, #ff6b35);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.4);
}

/* Floating particles */
.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(1px 1px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
            radial-gradient(1px 1px at 40px 70px, rgba(247, 147, 30, 0.4), transparent),
            radial-gradient(1px 1px at 90px 40px, rgba(255, 107, 53, 0.3), transparent),
            radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.2), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: particleFloat 20s linear infinite;
    opacity: 0.6;
}

@keyframes particleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

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

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

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

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

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-description {
        max-width: none;
        text-align: center;
    }

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

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

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

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        align-self: stretch;
    }
}

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

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

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

    .footer-brand-text {
        font-size: 24px;
    }

    .footer-logo-icon {
        width: 40px;
        height: 40px;
    }

    .footer-logo-icon::before {
        font-size: 20px;
    }

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

    .footer-links {
        gap: 10px;
    }

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

    .footer-social {
        gap: 10px;
    }

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

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

    .payment-method {
        width: 35px;
        height: 22px;
        font-size: 10px;
    }
}

/* Games Section Styles */
.section {
    background: linear-gradient(135deg, #1e1e3f 0%, #2a2a4a 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 30%, rgba(120, 119, 198, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.section-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-icon {
    font-size: 2rem;
    animation: iconPulse 2s ease-in-out infinite;
}

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

.show-all-btn {
    background: transparent;
    color: #f7931e;
    border: 2px solid #f7931e;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.show-all-btn:hover {
    background: #f7931e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.3);
}

.games-scroll {
    display: flex;
    gap: 20px;
    padding: 0 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #f7931e rgba(255, 255, 255, 0.1);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

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

.games-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #f7931e, #ff6b35);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.games-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #ff6b35, #f7931e);
}

.game-card {
    flex: 0 0 auto;
    width: 220px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(247, 147, 30, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 12px;
}

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

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

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

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

.game-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
    z-index: 3;
}

.badge {
    background: rgba(0, 0, 0, 0.8);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge.hot {
    background: linear-gradient(45deg, #ff4757, #ff6b35);
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
    0% { box-shadow: 0 0 5px rgba(255, 71, 87, 0.5); }
    100% { box-shadow: 0 0 15px rgba(255, 71, 87, 0.8); }
}

.provider-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    z-index: 3;
}

.provider-badge {
    background: rgba(0, 0, 0, 0.8);
    padding: 6px;
    border-radius: 50%;
    font-size: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.provider-badge:hover {
    background: rgba(247, 147, 30, 0.8);
    transform: scale(1.1);
}

.game-info {
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    backdrop-filter: blur(10px);
}

.game-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.game-provider {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Scroll indicators */
.games-scroll::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to left, rgba(30, 30, 63, 0.8), transparent);
    pointer-events: none;
    z-index: 1;
}

/* Animation for cards on load */
.game-card {
    animation: cardSlideIn 0.6s ease-out forwards;
    opacity: 0;
    transform: translateX(30px);
}

.game-card:nth-child(1) { animation-delay: 0.1s; }
.game-card:nth-child(2) { animation-delay: 0.2s; }
.game-card:nth-child(3) { animation-delay: 0.3s; }
.game-card:nth-child(4) { animation-delay: 0.4s; }
.game-card:nth-child(5) { animation-delay: 0.5s; }
.game-card:nth-child(6) { animation-delay: 0.6s; }
.game-card:nth-child(7) { animation-delay: 0.7s; }
.game-card:nth-child(8) { animation-delay: 0.8s; }

@keyframes cardSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

    .section-header {
        padding: 0 15px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin-bottom: 25px;
    }

    .section-title {
        font-size: 2rem;
        gap: 10px;
    }

    .top-icon {
        font-size: 1.5rem;
    }

    .show-all-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

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

    .game-card {
        width: 180px;
    }

    .game-image {
        height: 220px;
    }

    .game-info {
        padding: 12px;
    }

    .game-title {
        font-size: 13px;
    }

    .game-provider {
        font-size: 11px;
    }

    .game-badges {
        top: 8px;
        left: 8px;
    }

    .provider-badges {
        top: 8px;
        right: 8px;
    }

    .provider-badge {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .badge {
        padding: 3px 6px;
        font-size: 11px;
    }
}

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

    .section-header {
        padding: 0 10px;
        margin-bottom: 20px;
    }

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

    .top-icon {
        font-size: 1.2rem;
    }

    .show-all-btn {
        padding: 8px 16px;
        font-size: 11px;
    }

    .games-scroll {
        padding: 0 10px;
        gap: 12px;
    }

    .game-card {
        width: 160px;
    }

    .game-image {
        height: 200px;
    }

    .game-info {
        padding: 10px;
    }

    .game-title {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .game-provider {
        font-size: 10px;
    }

    .provider-badge {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .games-scroll::-webkit-scrollbar {
        height: 6px;
    }
}

/* Touch scroll enhancement for mobile */
@media (hover: none) and (pointer: coarse) {
    .games-scroll {
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .game-card {
        scroll-snap-align: start;
    }

    .game-card:hover {
        transform: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
}

/* Focus states for accessibility */
.game-card:focus {
    outline: 2px solid #f7931e;
    outline-offset: 2px;
}

.show-all-btn:focus {
    outline: 2px solid #f7931e;
    outline-offset: 2px;
}
.content-section {
    background: linear-gradient(135deg, #1e1e3f 0%, #2a2a4a 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 15% 30%, rgba(120, 119, 198, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 85% 70%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

/* Typography */
.content-section h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

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

.content-section h3 {
    color: #f7931e;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 30px 0 15px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.content-section p strong {
    color: #fff;
    font-weight: 600;
}

/* Lists */
.content-section ul,
.content-section ol {
    margin: 20px 0;
    padding-left: 0;
}

.content-section ul li,
.content-section ol li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-weight: 300;
}

.content-section ul li::before {
    content: '🚀';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    color: #f7931e;
}

.content-section ol {
    counter-reset: custom-counter;
}

.content-section ol li {
    counter-increment: custom-counter;
}

.content-section ol li::before {
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(45deg, #f7931e, #ff6b35);
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Tables */
.table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.table-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #f7931e, #ff6b35);
    border-radius: 4px;
}

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

.content-section table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.content-section table th,
.content-section table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content-section table th {
    background: linear-gradient(135deg, #2d1b69, #1a1a2e);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.content-section table td {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 300;
}

.content-section table td strong {
    color: #fff;
    font-weight: 600;
}

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

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

/* Content spacing between sections */
.content-section:nth-child(even) {
    background: linear-gradient(135deg, #24243e 0%, #1e1e3f 100%);
}

.content-section:nth-child(even)::before {
    background:
            radial-gradient(circle at 85% 30%, rgba(120, 119, 198, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 15% 70%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
}

/* Links within content */
.content-section a {
    color: #f7931e;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.content-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f7931e, #ff6b35);
    transition: width 0.3s ease;
}

.content-section a:hover {
    color: #ff6b35;
}

.content-section a:hover::after {
    width: 100%;
}

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

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

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

    .content-section h3 {
        font-size: 1.2rem;
        margin: 25px 0 12px;
    }

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

    .content-section ul li,
    .content-section ol li {
        font-size: 15px;
        margin-bottom: 10px;
        padding-left: 25px;
    }

    .content-section ul li::before {
        font-size: 12px;
    }

    .content-section ol li::before {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }

    .content-section table th,
    .content-section table td {
        padding: 12px 8px;
        font-size: 13px;
    }

    .content-section table th {
        font-size: 12px;
    }

    /* Force table scroll on mobile */
    .table-wrapper {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }

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

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

    .content-container {
        padding: 0 10px;
    }

    .content-section h2 {
        font-size: 1.5rem;
        margin-bottom: 18px;
    }

    .content-section h2::after {
        width: 40px;
        height: 2px;
    }

    .content-section h3 {
        font-size: 1.1rem;
        margin: 20px 0 10px;
    }

    .content-section p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .content-section ul li,
    .content-section ol li {
        font-size: 14px;
        margin-bottom: 8px;
        padding-left: 22px;
    }

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

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