/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #9d00ff;
    --gold-dark: #6a00b0;
    --gold-light: #c566ff;
    --black: #000000;
    --black-light: #1a1a1a;
    --white: #ffffff;
    --gradient-gold: linear-gradient(135deg, #9d00ff 0%, #c566ff 100%);
    --gradient-hero: linear-gradient(135deg, #240036 0%, #1a1a1a 50%, #000000 100%);
    --gradient-button: linear-gradient(135deg, #c566ff 0%, #9d00ff 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 60px; /* Space for fixed social bar */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: var(--black);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 80px;
    width: auto;
    animation: pulse 2s ease-in-out infinite;
    object-fit: contain;
    border-radius: 8px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.logo-text h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 2px;
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.7rem;
    color: var(--white);
    letter-spacing: 1px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--gradient-button);
    color: var(--black);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-cta {
    background: var(--gradient-button);
    color: var(--black);
    font-size: 1rem;
    padding: 1rem 2rem;
    margin-top: 1.5rem;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    margin-top: 1.5rem;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: var(--gradient-hero);
    padding: 4rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    position: relative;
    /* animation: fadeInLeft 1s ease-out; */
}

@keyframes fadeInLeft {
    from {
        /* opacity: 0;
        transform: translateX(-50px); */
    }
    to {
        /* opacity: 1;
        transform: translateX(0); */
    }
}

.welcome-banner {
    background: var(--gold-light);
    color: var(--black);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 1.5rem;
    /* animation: slideDown 0.8s ease-out; */
}

@keyframes slideDown {
    from {
        /* opacity: 0;
        transform: translateY(-20px); */
    }
    to {
        /* opacity: 1;
        transform: translateY(0); */
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title .highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 0 0.5rem;
    border-radius: 5px;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    /* animation: fadeInRight 1s ease-out; */
}

@keyframes fadeInRight {
    from {
        /* opacity: 0;
        transform: translateX(50px); */
    }
    to {
        /* opacity: 1;
        transform: translateX(0); */
    }
}

.hero-circle {
    width: 500px;
    height: 500px;
    border: 8px solid var(--gold);
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: rotate 20s linear infinite;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.circle-content {
    position: absolute;
    text-align: center;
    padding: 2rem;
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.circle-logo-img {
    width: 100px;
    height: auto;
    margin-bottom: 0.5rem;
    object-fit: contain;
    border-radius: 8px;
}

.circle-logo-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.3;
}

.circle-banner {
    background: var(--gold);
    color: var(--black);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.circle-subtitle {
    font-size: 0.75rem;
    color: var(--white);
    margin: 0.5rem 0;
}

.game-icons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.game-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
}

.game-icon span {
    font-size: 0.7rem;
    color: var(--white);
}

.circle-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-item {
    background: rgba(212, 175, 55, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    border: 1px solid var(--gold);
}

.feature-icon {
    font-size: 1.2rem;
}

.circle-stats {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    background: rgba(212, 175, 55, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-circle {
    background: var(--gold);
    color: var(--black);
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

.circle-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
}

.phone-icon {
    font-size: 1.2rem;
}

/* Platforms Section */
.platforms {
    padding: 5rem 0;
    background: var(--black-light);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.platform-card {
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.1);
}

.platform-logo {
    width: 150px;
    height: auto;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.platform-card h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.platform-details {
    margin-bottom: 2rem;
}

.platform-details p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.btn-platform {
    background: var(--gradient-button);
    color: var(--black);
    width: 100%;
    justify-content: center;
    font-weight: 700;
}

.btn-platform:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--black);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-left {
    position: relative;
}

.phone-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    z-index: 2;
    position: relative;
    object-fit: contain;
}

.floating-coins {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.coin {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--black);
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.coin-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.coin-2 {
    top: 30%;
    right: 15%;
    animation-delay: 0.5s;
}

.coin-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 1s;
}

.coin-4 {
    top: 50%;
    right: 25%;
    animation-delay: 1.5s;
}

.coin-5 {
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--white);
}

.about-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Games Section */
.games {
    padding: 5rem 0;
    background: var(--black-light);
}

.games-header {
    text-align: center;
    margin-bottom: 3rem;
}

.games-carousel {
    position: relative;
    padding: 0 60px;
}

.games-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.games-slider::-webkit-scrollbar {
    display: none;
}

.game-card {
    min-width: 200px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--gold) 0%, var(--black) 100%);
}

.game-card img[src=""],
.game-card img:not([src]) {
    background: linear-gradient(135deg, var(--gold) 0%, var(--black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-card img[src=""]::after,
.game-card img:not([src])::after {
    content: "Game Image";
    color: var(--white);
    font-size: 1.2rem;
}

.game-card h3 {
    padding: 1rem;
    text-align: center;
    font-size: 1.2rem;
    color: var(--gold);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--black);
}

.carousel-btn:hover {
    background: var(--gold-light);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* Payments Section */
.payments {
    padding: 5rem 0;
    background: var(--black);
}

.payments .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.payments-carousel {
    position: relative;
    padding: 0 60px;
}

.payments-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.payments-slider::-webkit-scrollbar {
    display: none;
}

.payment-item {
    min-width: 200px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.payment-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.payment-item span {
    color: var(--white);
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--black-light);
}

.testimonials .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2rem;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 100%;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    border: 2px solid var(--gold);
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--gold);
    font-size: 1.1rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold);
}

.dot:hover {
    transform: scale(1.2);
}

/* Footer */
.footer {
    background: var(--black);
    padding: 3rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-list {
    list-style: none;
    margin-top: 1rem;
}

.footer-list li {
    margin-bottom: 0.8rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-list a:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* Social Bar Section */
.social-bar {
    background-color: var(--black);
    padding: 0.5rem 0;
    border-top: 2px solid var(--gold);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.8);
}

.social-bar-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    gap: 0.5rem;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.social-item:hover {
    color: var(--gold);
}

.social-item svg {
    width: 24px;
    height: 24px;
}

/* Utility Classes */
.desktop-only {
    display: inline-flex;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block;
        margin-top: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        display: flex;
        flex-direction: column-reverse;
        gap: 2rem;
        text-align: center;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-circle, .hero-image-simple {
        margin: 0 auto;
        max-width: 300px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--black);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .nav-list.active {
        left: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-circle {
        width: 300px;
        height: 300px;
    }

    .circle-content {
        padding: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .games-carousel,
    .payments-carousel {
        padding: 0 50px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-circle {
        width: 250px;
        height: 250px;
    }

    .circle-logo-text {
        font-size: 0.7rem;
    }

    .game-icons {
        gap: 0.3rem;
    }

    .icon-circle {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .game-icon span {
        font-size: 0.6rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    animation: fadeIn 0.5s ease-in;
}

.hero-image-simple {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(157, 0, 255, 0.4);
    border: 2px solid var(--gold);
}

