* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #0a0a0a;
    color: #fff;
}

/* Header Styles */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 0, 0.9);
    position: flex;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    padding: 10px;
}

.logo-image {
    max-height: 50px;
    width: auto;
    display: block;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #ff4655;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.new-user-btn {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
}

.account-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.account-btn svg {
    fill: #fff;
}

/* Hero Section */
.hero-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 61vh;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    width: 100%;
    height: 60vh;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0.2) 41%,
        rgba(0,0,0,0.2) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    max-width: 600px;
    text-align: left;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: hsl(0, 0%, 100%);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0);
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #ff6b78;
    text-transform: uppercase;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0);
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: hsl(0, 0%, 100%);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0);
    max-width: 500px;
    font-weight: 500;
    margin-top: 1rem;
}

.hero-buttons {
    position: absolute;
    bottom: 40px;
    right: 4rem;
    display: flex;
    gap: 1rem;
    z-index: 2;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ff4655;
    color: #fff;
}

.btn-primary:hover {
    background: #ff2837;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.nav-buttons {
    position: absolute;
    bottom: 40px;
    left: 4rem;
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.nav-btn {
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ff4655;
}

/* Slider Section */
.slider-section {
    position: relative;
    height: vh;
    width: 100%;
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
    z-index: 1;
    margin-top: 0;
}

.nav-buttons {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
}

.nav-btn {
    padding: 10px 20px;
    cursor: pointer;
    background: #fff;
    border: none;
    border-radius: 5px;
}

.nav-btn.hover-nav {
    position: relative;
}

.section-nav {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.hover-nav:hover .section-nav {
    display: block;
}

/* Image Section */
.image-section {
    height: 300px;
    background-color: #87ceeb;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-button {
    padding: 20px 40px;
    background: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.center-button:hover {
    transform: scale(1.1);
}

/* Info Section */
.info-section {
    padding: 2rem;
    background-color: #4169e1;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
}

.bg-image-area {
    background: #fff;
    height: 200px;
}

.info-content {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    gap: 10px;
}

.info-slot {
    background: #fff;
    padding: 1rem;
}

/* Footer */
.main-footer {
    background: #000;
    padding: 2rem 2rem 2rem;
    color: #fff;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.community-section h2 {
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 2rem;
    color: #fff;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.social-link {
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    color: #ff4655;
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Section Titles */
.section-title {
    text-align: center;
    padding: 4rem 0 2rem;
}

.section-title h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #fff;
}

.section-title .subtitle {
    color: #ff4655;
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* Features Section */
.features-section {
    background: #111;
    padding: 2rem 4rem 6rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-image {
    height: 400px;
    background-size: cover;
    background-position: center;
}

.feature-card h3 {
    color: #fff;
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    text-transform: uppercase;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* News Section */
.news-section {
    background: #0a0a0a;
    padding: 2rem 4rem 6rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.news-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #ff4655;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ff2837;
}

/* Responsive adjustments */
@media screen and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        padding: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .main-header {
        padding: 0.75rem 1rem;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(0, 0, 0, 0.9);
        padding: 20px;
        transition: left 0.3s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .main-nav li {
        margin: 15px 0;
        padding: 0 5px;
    }

    .hamburger {
        display: flex;
        cursor: pointer;
        
        padding: 10px;
        z-index: 1000;
    }

    .hamburger span {
        display: flex;
        width: 25px;
        height: 3px;
        margin: 5px 0;
        background-color: #797979;
        transition: all 0.3s ease;
    }

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

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

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

    .features-grid,
    .news-grid,
    .games-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1.5rem;
    }

    .section-title {
        padding: 3rem 1rem 1.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .hero-content,
    .slider-content {
        bottom: 30px;
        left: 30px;
        max-width: 90%;
    }

    .hero-content h1,
    .slider-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p,
    .slider-content p {
        font-size: 1rem;
    }

    .game-logo h1 {
        font-size: 2.5rem;
        word-wrap: break-word;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .community-section h2 {
        font-size: 1.75rem;
    }
    
    .games-card {
        height: 350px;
    }
}

@media screen and (max-width: 480px) {
    .main-header {
        padding: 0.5rem 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero-content,
    .slider-content {
        bottom: 20px;
        left: 20px;
    }

    .hero-content h1,
    .slider-content h2 {
        font-size: 2rem;
    }

    .game-logo h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .feature-card,
    .news-card,
    .games-card {
        margin: 0 1rem;
        height: 300px;
    }

    .feature-image,
    .news-image {
        height: 180px;
    }

    .feature-card h3,
    .news-content h3 {
        font-size: 1.1rem;
    }

    .header-actions {
        gap: 0.5rem;
    }

    .new-user-btn {
        font-size: 0.8rem;
    }

    .account-btn {
        width: 28px;
        height: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .community-section h2 {
        font-size: 1.5rem;
    }
    
    .main-nav {
        font-size: 14px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
    }
}

/* Hamburger Menu Styles */
.hamburger {
    display: flex;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Mobile Navigation Styles */
@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        padding: 20px;
        transition: left 0.3s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .main-nav li {
        margin: 15px 0;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

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

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

/* Game Preview Section */
.game-preview-section {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.preview-background {
    width: 100%;
    height: 100%;
    background-image: url('image/640.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.preview-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.preview-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100%;
    padding-bottom: 4rem;
    margin: 0 auto;
}

.preview-content h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.preview-description {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.preview-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    position: relative;
}

.preview-button-container::after {
    content: 'KNOW MORE';
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 10;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    white-space: nowrap;
}

.preview-button.hexagon {
    position: center;
    width: 240px;
    height: 100px;
    background: transparent;
    border: none;
    cursor: pointer;
    perspective: 1200px;
    transform-style: preserve-3d;
    display: flex;
    align-items:first baseline;
    justify-content: center;
    margin-bottom: 2rem;
}

.hex-container {
    position: relative;
    width: 30%;
    height: 30%;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 8s linear infinite;
    margin-bottom: 12rem;
}

.hex-face {
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: rgba(128, 128, 128, 0);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: visible;
    transform-origin: center center;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    border: 2px solid rgba(255, 255, 255, 0);
    transform-style: preserve-3d;
    left: 50%;
    top: 50%;
    margin-left: -60px;
    margin-top: -60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0);
}

.preview-button.hexagon::after {
    content: 'KNOW MORE';
    position: absolute;
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 10;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    white-space: nowrap;
    transform: translateY(20px) scale(0.9);
}

.preview-button.hexagon:hover::after {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 0.5s ease;
}

.preview-button.hexagon:hover .hex-face {
    opacity: 0;
    transform: translate3d(0, 0, 75px) rotateX(20deg) scale(0.8);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Initial positions for faces - with background image support */
.face-1 { 
    transform: translate3d(0, 0, 120px) rotateX(20deg);
    background-image: url('image/104.png');
}
.face-2 { 
    transform: rotateY(60deg) translate3d(0, 0, 120px) rotateX(20deg); 
    background-image: url('image/104.png');
}
.face-3 { 
    transform: rotateY(120deg) translate3d(0, 0, 120px) rotateX(20deg); 
    background-image: url('image/104.png');
}
.face-4 { 
    transform: rotateY(180deg) translate3d(0, 0, 120px) rotateX(20deg); 
    background-image: url('image/104.png');
}
.face-5 { 
    transform: rotateY(240deg) translate3d(0, 0, 120px) rotateX(20deg); 
    background-image: url('image/104.png');
}
.face-6 { 
    transform: rotateY(300deg) translate3d(0, 0, 120px) rotateX(20deg); 
    background-image: url('image/104.png');
}

/* Add overlay to make images darker and maintain visibility */
.hex-face::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

/* Responsive adjustments for game preview section */
@media screen and (max-width: 768px) {
    .preview-content h2 {
        font-size: 2.5rem;
    }

    .preview-description {
        font-size: 1rem;
    }

    .preview-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .preview-content h2 {
        font-size: 2rem;
    }

    .game-preview-section {
        height: 60vh;
    }
}

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

.preview-button.hexagon:hover .hex-container {
    animation: spin 2s linear infinite;
}

.preview-button.hexagon:hover .hex-face {
    opacity: 0;
    transform: translate3d(0, 0, 75px) rotateX(20deg) scale(0.8);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.preview-button.hexagon::after {
    content: 'KNOW MORE';
    position: absolute;
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 10;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 10px 20px; 
    white-space: nowrap;
    transform: translateY(20px) scale(0.9);
}

.preview-button.hexagon:hover::after {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 0.5s ease;
}

.store-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.store-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: center;
    overflow: hidden;
    width: 56px;
}

.store-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 160px;
}

.store-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.store-button:hover .store-icon {
    transform: translateX(-4px);
}

.store-button::after {
    content: 'Download';
    position: absolute;
    left: 52px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    z-index: 1;
    letter-spacing: 0.5px;
}

.store-button:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.store-button.ios {
    background: rgba(26, 115, 232, 0.25);
}

.store-button.android {
    background: rgba(0, 200, 83, 0.25);
}

@media screen and (max-width: 768px) {
    .store-buttons {
        margin-top: 1.5rem;
    }
    
    .store-icon {
        width: 35px;
        height: 35px;
    }
    
    .store-button {
        padding: 0.8rem;
        width: 48px;
    }

    .store-button:hover {
        width: 140px;
    }
    
    .store-button::after {
        font-size: 14px;
        left: 44px;
    }
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: white;
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2.5;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

.slider-arrow.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        border-radius: 6px;
    }

    .slider-arrow svg {
        width: 20px;
        height: 20px;
    }

    .prev-arrow {
        left: 10px;
    }

    .next-arrow {
        right: 10px;
    }
}

/* FAQ Page Styles */
.faq-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.faq-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 12px;
    margin-bottom: 3rem;
}

.faq-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.faq-hero p {
    font-size: 1.2rem;
    color: #cccccc;
}

.faq-categories {
    margin-bottom: 3rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: #2a2a2a;
    color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #3a3a3a;
}

.tab-btn.active {
    background: #4a4a4a;
    box-shadow: 0 0 15px rgba(74, 74, 74, 0.3);
}

.faq-section {
    display: none;
}

.faq-section.active {
    display: block;
}

.faq-item {
    background: #2a2a2a;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #3a3a3a;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #ffffff;
}

.toggle-icon {
    font-size: 1.5rem;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: #cccccc;
    line-height: 1.6;
}

.contact-support {
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 3rem;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 12px;
}

.contact-support h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-support p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.support-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #4a4a4a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.support-btn:hover {
    background: #5a5a5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .faq-page {
        padding: 1rem;
    }

    .faq-hero {
        padding: 3rem 1rem;
    }

    .faq-hero h1 {
        font-size: 2rem;
    }

    .category-tabs {
        gap: 0.5rem;
    }

    .tab-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

/* About Page Styles */
.about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 50px;
}

.about-hero {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 70, 85, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-radius: 10px;
    margin-bottom: 50px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.about-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.about-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ff4655;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.values-list li:before {
    content: "•";
    color: #ff4655;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.contact-section {
    text-align: center;
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 70, 85, 0.1) 100%);
    border-radius: 10px;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.contact-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ff4655;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #ff5f6d;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 70, 85, 0.3);
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .about-section h2 {
        font-size: 1.5rem;
    }
    
    .about-section p, .values-list li {
        font-size: 1rem;
    }
    
    .contact-section h2 {
        font-size: 1.8rem;
    }
    
    .contact-section p {
        font-size: 1rem;
    }
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 100px auto;
    padding: 2rem;
    min-height: calc(100vh - 200px);
    align-items: center;
    justify-content: center;
    
}

.games-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.games-card:hover {
    transform: translateY(-5px);
}

.games-card .feature-image {
    height: 516px;
    width: 355px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.games-card h3 {
    color: #fff;
    font-size: 1.3rem;
    text-transform: uppercase;
   
}

.games-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;

}

@media screen and (max-width: 768px) {
    .games-card {
        padding: 1rem;
    }
    
    .games-card .feature-image {
        height: 516px;
        width: 355px;
    }
    
    .games-card h3 {
        font-size: 1.5rem;
    }
}

.games-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
    min-height: 100vh;
    padding-top: 80px;
}

/* Common Text Hover Effect */
.hero-content h1,
.hero-content p,
.section-title h2,
.section-title .subtitle,
.feature-card h3,
.feature-card p,
.news-card h3,
.news-card p,
.about-section h2,
.about-section p,
.about-section li,
.faq-question h3,
.faq-answer p,
.community-section h2,
.community-section p,
.products-hero h1,
.products-hero p,
.product-info h3,
.product-info p,
.footer-section h3,
.footer-section p,
.footer-section li a {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding: 5px 0;
}

.hero-content h1::before,
.hero-content p::before,
.section-title h2::before,
.section-title .subtitle::before,
.feature-card h3::before,
.feature-card p::before,
.news-card h3::before,
.news-card p::before,
.about-section h2::before,
.about-section p::before,
.about-section li::before,
.faq-question h3::before,
.faq-answer p::before,
.community-section h2::before,
.community-section p::before,
.products-hero h1::before,
.products-hero p::before,
.product-info h3::before,
.product-info p::before,
.footer-section h3::before,
.footer-section p::before,
.footer-section li a::before,
.hero-content h1::after,
.hero-content p::after,
.section-title h2::after,
.section-title .subtitle::after,
.feature-card h3::after,
.feature-card p::after,
.news-card h3::after,
.news-card p::after,
.about-section h2::after,
.about-section p::after,
.about-section li::after,
.faq-question h3::after,
.faq-answer p::after,
.community-section h2::after,
.community-section p::after,
.products-hero h1::after,
.products-hero p::after,
.product-info h3::after,
.product-info p::after,
.footer-section h3::after,
.footer-section p::after,
.footer-section li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    background: currentColor;
}

.hero-content h1::before,
.hero-content p::before,
.section-title h2::before,
.section-title .subtitle::before,
.feature-card h3::before,
.feature-card p::before,
.news-card h3::before,
.news-card p::before,
.about-section h2::before,
.about-section p::before,
.about-section li::before,
.faq-question h3::before,
.faq-answer p::before,
.community-section h2::before,
.community-section p::before,
.products-hero h1::before,
.products-hero p::before,
.product-info h3::before,
.product-info p::before,
.footer-section h3::before,
.footer-section p::before,
.footer-section li a::before {
    left: -2.5px;
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-content h1::after,
.hero-content p::after,
.section-title h2::after,
.section-title .subtitle::after,
.feature-card h3::after,
.feature-card p::after,
.news-card h3::after,
.news-card p::after,
.about-section h2::after,
.about-section p::after,
.about-section li::after,
.faq-question h3::after,
.faq-answer p::after,
.community-section h2::after,
.community-section p::after,
.products-hero h1::after,
.products-hero p::after,
.product-info h3::after,
.product-info p::after,
.footer-section h3::after,
.footer-section p::after,
.footer-section li a::after {
    right: 2.5px;
    background: currentColor;
    transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-content h1:hover::before,
.hero-content p:hover::before,
.section-title h2:hover::before,
.section-title .subtitle:hover::before,
.feature-card h3:hover::before,
.feature-card p:hover::before,
.news-card h3:hover::before,
.news-card p:hover::before,
.about-section h2:hover::before,
.about-section p:hover::before,
.about-section li:hover::before,
.faq-question h3:hover::before,
.faq-answer p:hover::before,
.community-section h2:hover::before,
.community-section p:hover::before,
.products-hero h1:hover::before,
.products-hero p:hover::before,
.product-info h3:hover::before,
.product-info p:hover::before,
.footer-section h3:hover::before,
.footer-section p:hover::before,
.footer-section li a:hover::before {
    width: 100%;
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-content h1:hover::after,
.hero-content p:hover::after,
.section-title h2:hover::after,
.section-title .subtitle:hover::after,
.feature-card h3:hover::after,
.feature-card p:hover::after,
.news-card h3:hover::after,
.news-card p:hover::after,
.about-section h2:hover::after,
.about-section p:hover::after,
.about-section li:hover::after,
.faq-question h3:hover::after,
.faq-answer p:hover::after,
.community-section h2:hover::after,
.community-section p:hover::after,
.products-hero h1:hover::after,
.products-hero p:hover::after,
.product-info h3:hover::after,
.product-info p:hover::after,
.footer-section h3:hover::after,
.footer-section p:hover::after,
.footer-section li a:hover::after {
    background: transparent;
    width: 100%;
    transition: 0s;
}

/* Add some spacing to prevent overlap */
.hero-content h1,
.hero-content p,
.section-title h2,
.section-title .subtitle,
.feature-card h3,
.feature-card p,
.news-card h3,
.news-card p,
.about-section h2,
.about-section p,
.about-section li,
.faq-question h3,
.faq-answer p,
.community-section h2,
.community-section p,
.products-hero h1,
.products-hero p,
.product-info h3,
.product-info p,
.footer-section h3,
.footer-section p,
.footer-section li a {
    margin-bottom: 5px;
}

/* Ensure text remains readable */
.hero-content h1:hover,
.hero-content p:hover,
.section-title h2:hover,
.section-title .subtitle:hover,
.feature-card h3:hover,
.feature-card p:hover,
.news-card h3:hover,
.news-card p:hover,
.about-section h2:hover,
.about-section p:hover,
.about-section li:hover,
.faq-question h3:hover,
.faq-answer p:hover,
.community-section h2:hover,
.community-section p:hover,
.products-hero h1:hover,
.products-hero p:hover,
.product-info h3:hover,
.product-info p:hover,
.footer-section h3:hover,
.footer-section p:hover,
.footer-section li a:hover {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

/* Update slider content positioning */
.slider-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    max-width: 1000px;
    text-align: left;
}

.slider-content h2 {
    font-size: 3.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0);
    letter-spacing: 1px;
}

.slider-content p {
    font-size: 1.2rem;
    color: #ff6b78;
    text-transform: uppercase;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .hero-content,
    .slider-content {
        bottom: 30px;
        left: 30px;
        max-width: 90%;
    }

    .hero-content h1,
    .slider-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p,
    .slider-content p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-content,
    .slider-content {
        bottom: 20px;
        left: 20px;
    }

    .hero-content h1,
    .slider-content h2 {
        font-size: 2rem;
    }
}

/* Hero Section for index.html */
.index-page .hero-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    max-width: 600px;
    text-align: left;
}

.index-page .hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.index-page .hero-content p {
    font-size: 1.2rem;
    color: #ff6b78;
    text-transform: uppercase;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    letter-spacing: 1px;
}

.index-page .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    font-weight: 500;
    margin-top: 1rem;
}

/* Slider content for index.html */
.index-page .slider-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    max-width: 600px;
    text-align: left;
}

.index-page .slider-content h2 {
    font-size: 3.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.index-page .slider-content p {
    font-size: 1.2rem;
    color: #ff6b78;
    text-transform: uppercase;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Responsive adjustments for index.html */
@media screen and (max-width: 768px) {
    .index-page .hero-content,
    .index-page .slider-content {
        bottom: 30px;
        left: 30px;
        max-width: 90%;
    }

    .index-page .hero-content h1,
    .index-page .slider-content h2 {
        font-size: 2.5rem;
    }

    .index-page .hero-content p,
    .index-page .slider-content p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .index-page .hero-content,
    .index-page .slider-content {
        bottom: 20px;
        left: 20px;
    }

    .index-page .hero-content h1,
    .index-page .slider-content h2 {
        font-size: 2rem;
    }
} 

/* Download button management styles */
.download-section a,
.store-badges a {
    display: inline-block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.download-section a:hover,
.store-badges a:hover {
    transform: scale(1.05);
}

/* Ensure buttons can be hidden when needed */
.download-section a[style*="display: none"],
.store-badges a[style*="display: none"] {
    display: none !important;
}

/* Responsive adjustments for download buttons */
@media screen and (max-width: 768px) {
    .download-section .image-slots,
    .store-badges {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .download-section a img,
    .store-badges a img {
        max-height: 60px;
        width: auto;
    }
}

@media screen and (max-width: 480px) {
    .download-section a img,
    .store-badges a img {
        max-height: 50px;
    }
} 