/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Touch improvements for mobile */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input, textarea, button {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

body {
    font-family: 'Orbitron', monospace;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background with Image */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('public/img/landing/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(2px 2px at 20px 30px, #eee, transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
                radial-gradient(1px 1px at 90px 40px, #fff, transparent),
                radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
                radial-gradient(2px 2px at 160px 30px, #ddd, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: twinkle 20s linear infinite;
    opacity: 0.6;
}

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

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 20, 40, 0.7) 0%, 
        rgba(0, 40, 80, 0.5) 50%, 
        rgba(0, 20, 40, 0.7) 100%);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}


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

.logo-image {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.8));
    transition: filter 0.3s ease;
}

.logo-image:hover {
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 1));
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.6);
}

.nav-link:hover {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8), 0 0 20px rgba(0, 212, 255, 0.6);
}

.header-actions {
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #00d4ff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 80px 20px 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.mobile-nav-link:hover {
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 280px;
}

.btn-mobile {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
}


/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.5), 0 0 20px rgba(0, 212, 255, 0.3);
    border: 2px solid rgba(0, 212, 255, 0.8);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    border: 2px solid #00d4ff;
    backdrop-filter: blur(5px);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

.btn-secondary:hover {
    background: #00d4ff;
    color: #000;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Hero Carousel Section */
.hero-carousel {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px 50px;
}

.carousel-slide.active {
    opacity: 1;
}

/* Hero Section (now inside carousel) */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px 50px;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #00d4ff;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-visual {
    position: relative;
    height: 400px;
}

.spaceship-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.spaceship {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background-image: url('public/img/landing/ship.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 60px rgba(0, 212, 255, 0.6));
    transition: transform 0.3s ease;
}

.spaceship:hover {
    transform: translate(-50%, -50%) scale(1.1);
    filter: drop-shadow(0 0 100px rgba(0, 212, 255, 0.8));
}


@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
}

@keyframes float-tournament {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
}


@keyframes glow {
    0% { filter: drop-shadow(0 0 60px rgba(0, 212, 255, 0.6)); }
    100% { filter: drop-shadow(0 0 100px rgba(0, 212, 255, 0.9)); }
}

/* Tournament Image */
.tournament-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tournament-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    object-fit: contain;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 60px rgba(255, 215, 0, 0.6));
    animation: float-tournament 3s ease-in-out infinite, tournament-glow 2s ease-in-out infinite alternate;
    transition: transform 0.3s ease;
}

.tournament-image:hover {
    transform: translate(-50%, -50%) scale(1.1);
    filter: drop-shadow(0 0 100px rgba(255, 215, 0, 0.8));
}

@keyframes tournament-glow {
    0% { filter: drop-shadow(0 0 60px rgba(255, 215, 0, 0.6)); }
    100% { filter: drop-shadow(0 0 100px rgba(255, 215, 0, 0.9)); }
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.8);
    color: #000;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.carousel-btn:hover {
    background: rgba(0, 212, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

.carousel-btn.prev {
    margin-right: auto;
}

.carousel-btn.next {
    margin-left: auto;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #00d4ff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

/* Platforms */
.platforms {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    font-size: 14px;
}

.platform-icon {
    font-size: 24px;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #00d4ff;
}

.section-description {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: rgba(0, 20, 40, 0.6);
    backdrop-filter: blur(5px);
}

.about-buttons {
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(0, 0, 0, 0.7);
    padding: 0;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-card:nth-child(1) {
    background-image: url('public/img/landing/2.png');
}

.feature-card:nth-child(2) {
    background-image: url('public/img/landing/1.png');
}

.feature-card:nth-child(3) {
    background-image: url('public/img/landing/3.png');
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    border-radius: 0 0 15px 15px;
    z-index: 1;
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-title-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px 30px 20px 30px;
    z-index: 3;
    background: linear-gradient(rgba(0, 0, 0, 0.8), transparent);
    border-radius: 15px 15px 0 0;
}

.feature-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 30px 30px 30px;
    z-index: 3;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.feature-card:hover::before {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.feature-card:hover .feature-title-container {
    background: linear-gradient(rgba(0, 0, 0, 0.6), transparent);
}


.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #00d4ff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 212, 255, 0.5);
}

.feature-description {
    color: #cccccc;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* Ships Section */
.ships-section {
    background: rgba(0, 20, 40, 0.6);
    backdrop-filter: blur(5px);
}

.ships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.ship-card {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.ship-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.ship-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ship-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #00d4ff;
}

.ship-description {
    color: #cccccc;
    font-size: 0.9rem;
}

.ships-button {
    text-align: center;
}

/* Game Modes */
.modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mode-card {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.mode-card:hover {
    transform: translateY(-10px);
}

.mode-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mode-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #00d4ff;
}

.mode-description {
    color: #cccccc;
    line-height: 1.6;
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.1));
    text-align: center;
}

.download-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #00d4ff;
}

.download-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Newsletter */
.newsletter {
    background: rgba(0, 20, 40, 0.7);
    backdrop-filter: blur(5px);
    text-align: center;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #00d4ff;
}

.newsletter-description {
    color: #cccccc;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: 'Orbitron', monospace;
}

.newsletter-input::placeholder {
    color: #cccccc;
}

.newsletter-input:focus {
    outline: none;
    border-color: #00d4ff;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

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

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

.footer-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #00d4ff;
}

.footer-bottom {
    text-align: center;
    color: #888888;
    font-size: 14px;
}

/* Transition Overlay */
.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a, #001428);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.transition-overlay.active {
    display: flex;
}

.transition-content {
    text-align: center;
}

.transition-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.transition-logo img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8));
}

.transition-text {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.transition-progress {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    width: 0%;
    animation: progress 3s ease-in-out forwards;
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header Mobile */
    .header-content {
        padding: 0 15px;
    }
    
    .nav {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .logo-image {
        height: 45px;
    }
    
    /* Hero Content Mobile */
    .hero-content {
        max-width: 1200px;
        grid-template-columns: none !important;
        text-align: center;
        gap: 20px;
        padding: 0 15px;
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
    }
    
    .hero-text {
        text-align: center;
        order: 1;
        width: 100%;
        max-width: 600px;
    }
    
    .hero-visual {
        order: 3;
        height: 250px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-buttons {
        order: 2;
        width: 100%;
        max-width: 400px;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
        width: 100%;
        max-width: 280px;
    }
    
    /* Spaceship Mobile */
    .spaceship {
        width: 400px;
        height: 400px;
    }
    
    /* Tournament Image Mobile */
    .tournament-image {
        width: 350px;
        height: 350px;
    }
    
    /* Carousel Mobile */
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .carousel-nav {
        padding: 0 10px;
    }
    
    .carousel-indicators {
        bottom: 15px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    /* Platforms Mobile */
    .platforms {
        flex-direction: row;
        gap: 15px;
        bottom: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .platform-item {
        font-size: 12px;
    }
    
    .platform-icon {
        font-size: 18px;
    }
    
    /* Sections Mobile */
    section {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    /* Features Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        height: 400px;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    /* Ships Mobile */
    .ships-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .ship-card {
        padding: 20px;
    }
    
    .ship-image {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
    
    .ship-name {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .ship-description {
        font-size: 0.8rem;
    }
    
    /* Game Modes Mobile */
    .modes-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .mode-card {
        padding: 30px 20px;
    }
    
    .mode-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .mode-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .mode-description {
        font-size: 0.9rem;
    }
    
    /* Download Section Mobile */
    .download-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .download-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .download-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    /* Newsletter Mobile */
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-input {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        gap: 20px;
        justify-content: center;
    }
    
    /* SEO Content Mobile */
    .seo-text {
        padding: 0 15px;
    }
    
    .seo-text h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .seo-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .seo-text li {
        font-size: 0.9rem;
        padding: 10px 0;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .download-title {
        font-size: 1.6rem;
    }
    
    .ships-grid {
        grid-template-columns: 1fr;
    }
    
    .spaceship {
        width: 300px;
        height: 300px;
    }
    
    .tournament-image {
        width: 280px;
        height: 280px;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .platforms {
        gap: 10px;
    }
    
    .platform-item {
        font-size: 11px;
    }
    
    .platform-icon {
        font-size: 16px;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-carousel {
        min-height: 100vh;
    }
    
    .carousel-slide {
        padding: 60px 20px 30px;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        display: grid;
    }
    
    .hero-text {
        order: 1;
        text-align: left;
    }
    
    .hero-buttons {
        order: 2;
        justify-content: flex-start;
    }
    
    .hero-visual {
        order: 3;
        grid-column: 2;
        grid-row: 1 / 3;
        height: 250px;
    }
    
    .spaceship {
        width: 300px;
        height: 300px;
    }
    
    .tournament-image {
        width: 250px;
        height: 250px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }
    
    .btn-large {
        padding: 10px 20px;
        font-size: 14px;
        max-width: 150px;
    }
    
    .platforms {
        bottom: 10px;
    }
    
    .section {
        padding: 40px 0;
    }
}

/* Very small devices */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .spaceship {
        width: 250px;
        height: 250px;
    }
    
    .tournament-image {
        width: 200px;
        height: 200px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .hero-content {
        padding: 0 10px;
        gap: 15px;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-buttons {
        max-width: 100%;
    }
    
    .btn-large {
        padding: 10px 16px;
        font-size: 12px;
    }
}

/* Guide Page Styles */
.guide-section {
    padding: 80px 0;
    background: rgba(0, 20, 40, 0.4);
    backdrop-filter: blur(5px);
}

.guide-section:nth-child(even) {
    background: rgba(0, 0, 0, 0.2);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.guide-card {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.6);
}

.guide-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.guide-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #00d4ff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.guide-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.guide-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.guide-list li {
    color: #ffffff;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
    padding-left: 20px;
}

.guide-list li:before {
    content: "▶";
    color: #00d4ff;
    position: absolute;
    left: 0;
    top: 8px;
}

.guide-list li:last-child {
    border-bottom: none;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tip-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.4);
}

.tip-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.tip-text {
    color: #cccccc;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* SEO Content Section */
.seo-content {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.seo-text {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.seo-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #00d4ff;
    text-align: center;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.seo-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 25px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.seo-text ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.seo-text li {
    color: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
    padding-left: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.seo-text li:before {
    content: "▶";
    color: #00d4ff;
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 0.8rem;
}

.seo-text li:last-child {
    border-bottom: none;
}

.seo-text strong {
    color: #00d4ff;
    font-weight: 600;
}
