* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0e27;
    color: #e0e0e0;
    overflow: hidden;
    height: 100vh;
}

/* Swiper Container */
.swiper {
    width: 100%;
    height: 100vh;
    margin-top: 0;
}

.swiper-slide {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(100, 200, 255, 0.1);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(135deg, #64c8ff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #64c8ff;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1001;
}

.menu-icon {
    width: 100%;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.menu-dot {
    fill: #64c8ff;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 0 4px rgba(100, 200, 255, 0.6));
}

.hamburger:hover .menu-dot {
    filter: drop-shadow(0 0 8px rgba(100, 200, 255, 1));
    r: 2.5;
}

.hamburger.active .menu-icon {
    transform: rotate(360deg) scale(1.15);
}

.hamburger.active .menu-dot:nth-child(1) {
    cy: 4;
    fill: #00d4ff;
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 1));
}

.hamburger.active .menu-dot:nth-child(2) {
    opacity: 0.3;
    r: 1;
}

.hamburger.active .menu-dot:nth-child(3) {
    cy: 20;
    fill: #00d4ff;
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 1));
}

.hamburger.active .menu-dot:nth-child(4) {
    opacity: 0.3;
    r: 1;
}

.hamburger.active .menu-dot:nth-child(5) {
    opacity: 0;
}

.hamburger.active .menu-dot:nth-child(6) {
    opacity: 0.3;
    r: 1;
}

.hamburger.active .menu-dot:nth-child(7) {
    cy: 20;
    fill: #00d4ff;
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 1));
}

.hamburger.active .menu-dot:nth-child(8) {
    cy: 20;
    opacity: 0.3;
    r: 1;
}

.hamburger.active .menu-dot:nth-child(9) {
    cy: 20;
    fill: #64c8ff;
    filter: drop-shadow(0 0 12px rgba(100, 200, 255, 1));
}

/* Vertical Slide Navigation Buttons */
.slide-nav-btn {
    position: fixed;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.15) 0%, rgba(0, 212, 255, 0.1) 100%);
    color: #64c8ff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 200, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.1);
}

.slide-nav-btn svg {
    display: flex;
    width: 32px;
    height: 32px;
    stroke: currentColor;
}

.slide-prev {
    top: calc(50% - 50px);
}

.slide-next {
    top: calc(50% + 30px);
}

.slide-nav-btn:hover {
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.3) 0%, rgba(0, 212, 255, 0.2) 100%);
    border-color: rgba(100, 200, 255, 0.6);
    box-shadow: 0 12px 40px rgba(100, 200, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: scale(1.15);
    color: #00d4ff;
}

.slide-nav-btn:active {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(100, 200, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Disabled state for nav buttons */
.slide-nav-btn.swiper-button-disabled {
    opacity: 0.2;
    cursor: not-allowed;
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.05) 0%, rgba(0, 212, 255, 0.03) 100%);
    border-color: rgba(100, 200, 255, 0.1);
    box-shadow: none;
}

.slide-nav-btn.swiper-button-disabled:hover {
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.05) 0%, rgba(0, 212, 255, 0.03) 100%);
    box-shadow: none;
    transform: none;
    border-color: rgba(100, 200, 255, 0.1);
}

/* Hero Section */
.hero-section {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 3;
    position: relative;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #64c8ff 0%, #00d4ff 50%, #40e0d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 40px;
    color: #a0c0ff;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.cta-button {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #64c8ff;
    background: rgba(100, 200, 255, 0.1);
    color: #64c8ff;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.cta-button:hover {
    background: #64c8ff;
    color: #0a0e27;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(100, 200, 255, 0.3);
}

/* Games Carousel Section */
.games-carousel-section {
    background: linear-gradient(135deg, #0f1a2e 0%, #1a1f3a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.games-carousel-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.games-carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 10;
    flex: 1;
    height: 100%;
}

.games-swiper-wrapper {
    flex: 1;
    max-width: 100%;
    width: 100%;
    height: 100%;
}

.gamesSwiper {
    width: 100%;
    height: 100%;
}

.game-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Checkerboard overlay for transition */
.checkerboard-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(6, 1fr);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
}

.checkerboard-overlay.active {
    opacity: 1;
}

.checkerboard-tile {
    background: #000;
    transform-origin: center;
    animation: tileFlip 1.2s ease-out forwards;
    opacity: 1;
}

@keyframes tileFlip {
    0% {
        transform: rotateY(0deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: rotateY(90deg) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: rotateY(180deg) scale(1);
        opacity: 0;
    }
}

/* Checkerboard transition effect */
.game-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-conic-gradient(
            from 0deg at 25px 25px,
            rgba(255, 255, 255, 0.9) 0deg 90deg,
            rgba(0, 0, 0, 0.9) 90deg 180deg,
            rgba(255, 255, 255, 0.9) 180deg 270deg,
            rgba(0, 0, 0, 0.9) 270deg 360deg
        );
    background-size: 50px 50px;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
}

.game-slide.checkerboard-transition::before {
    animation: checkerboardReveal 0.6s ease-in-out forwards;
}

@keyframes checkerboardReveal {
    0% {
        opacity: 0;
        transform: scale(1.2);
    }
    30% {
        opacity: 1;
        transform: scale(1);
    }
    70% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 26, 46, 0.6) 0%, rgba(10, 14, 39, 0.7) 100%);
    z-index: 1;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.game-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #64c8ff;
    background: rgba(100, 200, 255, 0.1);
    color: #64c8ff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.game-nav-btn:hover {
    background: rgba(100, 200, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(100, 200, 255, 0.4);
}

.game-nav-btn:active {
    transform: scale(0.95);
}

.game-section {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: visible;
}

.game-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.game-card {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
}

.game-card:nth-child(1) {
    animation: slideInLeft 0.8s ease-out;
}

.game-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-icon {
    width: 100%;
    height: 100%;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    position: relative;
    overflow: visible;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.game-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(100, 200, 255, 0.2) 100%);
}

.ai-social {
}

.ai-chat {
}

.virtual-companion {
}

.game-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shine 3s infinite;
    z-index: 1;
}

.game-content {
    flex: 1;
    animation: slideInRight 0.8s ease-out;
    position: relative;
    z-index: 2;
    text-align: center;
    color: #e0e0e0;
}

/* Game Indicators */
.game-indicators {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 0;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(100, 200, 255, 0.3);
    border: 2px solid #64c8ff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(100, 200, 255, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: #64c8ff;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(100, 200, 255, 0.6);
}

.game-content h2 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #64c8ff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.game-content p {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #b0e0ff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.blueprint-label {
    display: inline-block;
    font-size: 16px !important;
    font-weight: 600;
    color: #ffd700 !important;
    background: rgba(255, 215, 0, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    margin-bottom: 20px !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8) !important;
}

.features {
    list-style: none;
}

.features li {
    padding: 10px 0;
    font-size: 18px;
    color: #a0c0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.75) 0%, rgba(26, 31, 58, 0.75) 100%),
                url('../images/1.webp') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
}

.about-content {
    max-width: 900px;
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

.about-content h2 {
    font-size: 48px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #64c8ff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #b0b0b0;
}

.stats {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    padding: 30px;
    background: rgba(100, 200, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(100, 200, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(100, 200, 255, 0.15);
    border-color: rgba(100, 200, 255, 0.4);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #64c8ff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #a0c0ff;
}

.vision {
    font-size: 16px;
    color: #90b0e0;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, rgba(15, 26, 46, 0.75) 0%, rgba(26, 31, 58, 0.75) 100%),
                url('../images/Contact Background10.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.contact-container {
    max-width: 900px;
    width: 100%;
}

.contact-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #64c8ff;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.info-item {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-radius: 15px;
    border: 2px solid rgba(100, 200, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.info-item:hover {
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.2) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-color: rgba(100, 200, 255, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(100, 200, 255, 0.2);
}

.info-item:hover::before {
    opacity: 1;
}

.info-item h3 {
    color: #64c8ff;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.info-item p {
    color: #d0d0d0;
    font-size: 15px;
}

.info-item a {
    color: #64c8ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #00d4ff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(100, 200, 255, 0.2);
    border-radius: 8px;
    color: #e0e0e0;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: #64c8ff;
    box-shadow: 0 0 10px rgba(100, 200, 255, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #707080;
}

.submit-btn {
    padding: 15px 30px;
    background: linear-gradient(135deg, #64c8ff 0%, #00d4ff 100%);
    border: none;
    color: #0a0e27;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(100, 200, 255, 0.3);
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #0a0e27 0%, #0f1a2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.footer-content {
    text-align: center;
}

.footer-content p {
    margin: 10px 0;
    color: #b0b0b0;
}

.footer-content p:first-child {
    font-size: 16px;
    color: #64c8ff;
    font-weight: 600;
}

.footer-content p:nth-child(2) {
    font-size: 14px;
    font-style: italic;
    color: #a0a0a0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    color: #64c8ff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #00d4ff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, 30px);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .swiper-slide {
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 80px;
    }

    .navbar {
        padding: 15px 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(26, 31, 58, 0.98) 100%);
        width: 100%;
        text-align: center;
        transition: left 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        padding: 20px 0;
        gap: 0;
        backdrop-filter: blur(10px);
        border-bottom: 2px solid rgba(100, 200, 255, 0.2);
        box-shadow: 0 8px 32px rgba(100, 200, 255, 0.15);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(100, 200, 255, 0.1);
        transition: all 0.3s ease;
    }

    .nav-menu li:hover {
        background: rgba(100, 200, 255, 0.05);
        transform: translateX(10px);
    }

    .nav-menu a {
        display: block;
        font-size: 18px;
        color: #e0e0e0;
    }

    .nav-menu a:hover {
        color: #64c8ff;
        text-shadow: 0 0 10px rgba(100, 200, 255, 0.5);
    }

    .hero-section {
        background: #000;
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .games-carousel-container {
        flex-direction: column;
        gap: 0;
        width: 100%;
        height: 100vh;
        padding: 0;
    }

    .games-swiper-wrapper {
        width: 100%;
        height: 100vh;
    }

    .gamesSwiper {
        height: 100vh;
        width: 100%;
    }

    .game-slide {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 60px 20px 40px 20px;
        overflow: visible;
    }

    .game-overlay {
        background: linear-gradient(135deg, rgba(15, 26, 46, 0.8) 0%, rgba(10, 14, 39, 0.9) 100%);
    }

    .game-nav-btn {
        display: none !important;
    }

    .game-content {
        padding: 0 15px;
        max-width: 100%;
    }

    .game-content h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .game-content p {
        font-size: 14px;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .features li {
        font-size: 12px;
        padding: 4px 0;
    }

    .game-indicators {
        bottom: 20px;
    }

    .indicator {
        width: 8px;
        height: 8px;
        border: 1px solid #64c8ff;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats {
        flex-direction: column;
    }

    .about-section {
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 20px 40px 20px;
    }

    .about-content {
        width: 100%;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .contact-section {
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 20px 40px 20px;
    }
}

/* Swiper Pagination Styling */
.swiper-pagination {
    display: none !important;
}

.swiper-pagination-clickable {
    display: none !important;
}

.swiper-pagination-bullets {
    display: none !important;
}

.swiper-pagination-vertical {
    display: none !important;
}

.swiper-pagination-bullet {
    display: none !important;
}

.swiper-pagination-bullet:hover {
    display: none !important;
}

.swiper-pagination-bullet-active {
    display: none !important;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1.4);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.5);
    }
}
