/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow-x: hidden;
}

a {
	text-decoration: none;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ff6b35;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ff6b35;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.nav-link i {
    margin-right: 0.5rem;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.section-subtitle {
	text-align: center;
	color: #fff;
	margin-bottom: 20px;
	font-size: 1.5rem;
	font-weight: 700;
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.btn-outline-pr {
	color: #000;
	border: 2px solid #ff6b35;

}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #ff6b35;
}

.btn-outline:hover {
    background: #ff6b35;
    color: #fff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
		height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icons i {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.floating-icons i:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: -1s;
}

.floating-icons i:nth-child(2) {
    top: 60%;
    left: 15%;
    animation-delay: -2s;
}

.floating-icons i:nth-child(3) {
    top: 30%;
    right: 20%;
    animation-delay: -3s;
}

.floating-icons i:nth-child(4) {
    top: 70%;
    right: 10%;
    animation-delay: -4s;
}

.floating-icons i:nth-child(5) {
    top: 50%;
    left: 80%;
    animation-delay: -5s;
}

.floating-icons i:nth-child(6) {
    top: 80%;
    left: 50%;
    animation-delay: -6s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.feature i {
    font-size: 1.2rem;
    color: #ff6b35;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Sections */
.features,
.games-spotlight,
.tournaments,
.cta,
.promotions,
.testimonials {
    padding: 5rem 0;
    position: relative;
}

.features {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.games-spotlight {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.tournaments {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.cta {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.promotions {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.testimonials {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Feature Cards - Zigzag Layout */
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 100%;
}

.feature-card:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-card:nth-child(even) .feature-content {
    text-align: right;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 300px;
}

.feature-content {
    flex: 1;
}

.feature-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
    font-size: 2rem;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Games */
.games-categories {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.category.active,
.category:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.game-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-card h3 {
    padding: 1rem;
    font-size: 1.2rem;
    color: #333;
}

.game-card p {
    padding: 0 1rem 1rem;
    color: #666;
    font-size: 0.9rem;
}

.hidden {
    display: none !important;
}

/* Tournament Cards */
.tournament-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tournament-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tournament-card:hover {
    transform: translateY(-10px);
}

.tournament-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.tournament-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.tournament-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fa709a, #fee140);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.step h3 {
    color: #333;
    font-size: 1.2rem;
}

.cta-buttons {
    text-align: center;
}

/* Promo Cards */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.promo-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-10px);
}

.promo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #333;
    font-size: 2rem;
    animation: shake 3s infinite;
}

@keyframes shake {
    0%, 50%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-5deg);
    }
    20%, 40% {
        transform: rotate(5deg);
    }
}

.promo-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.promo-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.promo-code {
    display: block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    margin: 1rem 0;
    font-weight: bold;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.5rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #333;
    padding-top: 1rem;
}

.testimonial-author {
    text-align: right;
    color: #666;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ff6b35;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b35;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 2rem;
    color: #fff;
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: #ff6b35;
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.fab-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    animation: floatUp 3s ease-in-out infinite;
}

.fab-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.fab-button span {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: right 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-features {
        gap: 1rem;
    }

    .feature {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .games-categories {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .category {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .floating-buttons {
        right: 10px;
        bottom: 10px;
    }

    .fab-button span {
        display: none;
    }

    .fab-button {
        width: 50px;
        height: 50px;
        justify-content: center;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .features-grid,
    .games-grid,
    .tournament-grid,
    .steps-grid,
    .promo-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   DIVERSE LAYOUT STYLES FOR EACH PAGE  
   =================================== */

/* Timeline Layout for Tournaments */
.tournament-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.tournament-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #ff6b35, #f7931e);
    transform: translateX(-50%);
    border-radius: 2px;
}

.tournament-timeline .tournament-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    width: 100%;
}

.tournament-timeline .tournament-card:nth-child(odd) {
    justify-content: flex-start;
}

.tournament-timeline .tournament-card:nth-child(even) {
    justify-content: flex-end;
}

.tournament-timeline .tournament-card::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #ff6b35;
    border: 4px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.tournament-timeline .tournament-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 45%;
    transition: all 0.3s ease;
}

.tournament-timeline .tournament-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Steps Vertical Timeline */
.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #ff6b35, #f7931e);
    border-radius: 2px;
}

.steps-timeline .step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    padding-left: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem 2rem 2rem 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.steps-timeline .step:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.steps-timeline .step-number {
    position: absolute;
    left: -45px;
    top: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    border: 4px solid #fff;
}

/* Card Stack Layout for Promotions */
.promo-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    position: relative;
    perspective: 1000px;
}

.promo-stack .promo-card {
    position: absolute;
    width: 350px;
    height: 250px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.promo-stack .promo-card:nth-child(1) {
    transform: translateZ(0px) rotateY(0deg);
    z-index: 3;
}

.promo-stack .promo-card:nth-child(2) {
    transform: translateZ(-50px) rotateY(-5deg) translateX(-30px);
    z-index: 2;
}

.promo-stack .promo-card:nth-child(3) {
    transform: translateZ(-100px) rotateY(-10deg) translateX(-60px);
    z-index: 1;
}

.promo-stack .promo-card:hover {
    transform: translateZ(20px) rotateY(2deg) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Testimonials Slider */
.testimonials-slider {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonials-slider .testimonial-card {
    min-width: 350px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    scroll-snap-align: center;
    transition: all 0.3s ease;
}

.testimonials-slider .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Games Staggered Animation */
.games-staggered .game-card {
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.games-staggered .game-card:nth-child(1) { animation-delay: 0.1s; }
.games-staggered .game-card:nth-child(2) { animation-delay: 0.2s; }
.games-staggered .game-card:nth-child(3) { animation-delay: 0.3s; }
.games-staggered .game-card:nth-child(4) { animation-delay: 0.4s; }
.games-staggered .game-card:nth-child(5) { animation-delay: 0.5s; }
.games-staggered .game-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Winners Timeline Stories */
.winners-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.winners-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, #ff6b35, #f7931e, #43e97b);
    transform: translateX(-50%);
    border-radius: 3px;
}

.winners-timeline .winner-story {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.winners-timeline .winner-story:nth-child(odd) {
    justify-content: flex-start;
}

.winners-timeline .winner-story:nth-child(even) {
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.winners-timeline .winner-story::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 30px;
    height: 30px;
    background: #ff6b35;
    border: 6px solid #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.winners-timeline .winner-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.winners-timeline .winner-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.winners-timeline .winner-content::after {
    content: '';
    position: absolute;
    top: 2rem;
    width: 0;
    height: 0;
    border-style: solid;
}

.winners-timeline .winner-story:nth-child(odd) .winner-content::after {
    right: -15px;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.95);
}

.winners-timeline .winner-story:nth-child(even) .winner-content::after {
    left: -15px;
    border-width: 15px 15px 15px 0;
    border-color: transparent rgba(255, 255, 255, 0.95) transparent transparent;
}

/* Trending Games Leaderboard */
.trending-leaderboard {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.trending-leaderboard .leaderboard-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.trending-leaderboard .leaderboard-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.trending-leaderboard .leaderboard-item:nth-child(1) {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.trending-leaderboard .leaderboard-item:nth-child(2) {
    background: linear-gradient(135deg, #C0C0C0, #A9A9A9);
}

.trending-leaderboard .leaderboard-item:nth-child(3) {
    background: linear-gradient(135deg, #CD7F32, #B8860B);
}

.trending-leaderboard .leaderboard-item:nth-child(n+4) {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.trending-leaderboard .rank-number {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin-right: 2rem;
    min-width: 60px;
    text-align: center;
}

.trending-leaderboard .leaderboard-item:nth-child(n+4) .rank-number {
    color: #333;
}

/* Comparison Table Enhanced */
.comparison-enhanced {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.comparison-enhanced .table-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.comparison-enhanced .table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.comparison-enhanced .table-row:hover {
    background: rgba(255, 107, 53, 0.05);
    transform: translateX(5px);
}

.comparison-enhanced .winner-cell {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: white;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    font-weight: bold;
}

/* Payment Methods Cards Layout */
.payment-cards-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    perspective: 1000px;
}

.payment-cards-layout .payment-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    transform: rotateY(0deg);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.payment-cards-layout .payment-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.payment-cards-layout .payment-card:hover {
    transform: rotateY(5deg) translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* VIP Program Pyramid */
.vip-pyramid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    perspective: 1000px;
}

.vip-pyramid .vip-tier {
    width: 100%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.vip-pyramid .vip-tier:nth-child(1) { max-width: 600px; }
.vip-pyramid .vip-tier:nth-child(2) { max-width: 700px; }
.vip-pyramid .vip-tier:nth-child(3) { max-width: 800px; }
.vip-pyramid .vip-tier:nth-child(4) { max-width: 900px; }

.vip-pyramid .vip-tier:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.vip-pyramid .vip-tier.diamond {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.vip-pyramid .vip-tier.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
}

.vip-pyramid .vip-tier.silver {
    background: linear-gradient(135deg, #C0C0C0, #A9A9A9);
    color: white;
}

/* Bonus Calendar Grid */
.bonus-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.bonus-calendar-grid .day-card {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bonus-calendar-grid .day-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.4);
}

.bonus-calendar-grid .day-card.featured {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transform: scale(1.1);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion .faq-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-accordion .faq-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-accordion .faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    margin: 0;
}

.faq-accordion .faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion .faq-card.active .faq-answer {
    max-height: 200px;
    padding: 2rem;
}

/* Responsive Adjustments for New Layouts */
@media (max-width: 768px) {
    .tournament-timeline::before,
    .winners-timeline::before {
        left: 20px;
    }
    
    .tournament-timeline .tournament-card,
    .winners-timeline .winner-story {
        flex-direction: column !important;
        justify-content: flex-start !important;
    }
    
    .tournament-timeline .tournament-content,
    .winners-timeline .winner-content {
        width: 100% !important;
        margin-left: 40px;
    }
    
    .tournament-timeline .tournament-card::before,
    .winners-timeline .winner-story::before {
        left: 20px !important;
        transform: translateX(-50%) !important;
    }
    
    .steps-timeline::before {
        left: 15px;
    }
    
    .steps-timeline .step {
        padding-left: 60px;
    }
    
    .steps-timeline .step-number {
        left: -30px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

		.feature-card {
			flex-direction: column;
			align-items: center;
			justify-content: center;
			text-align: center;
		}
    
    .promo-stack .promo-card {
        position: static !important;
        transform: none !important;
        margin-bottom: 2rem;
        width: 100%;
        height: auto;
    }
    
    .bonus-calendar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
