/* Modern X8Pool Website Styles */
:root {
    --primary-color: #00ff88;
    --secondary-color: #ff6b35;
    --accent-color: #ffd700;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-text: #ffffff;
    --gray-text: #cccccc;
    --pool-green: #0d5f2a;
    --neon-blue: #00d4ff;
    --purple-accent: #8b5cf6;
    --gradient-primary: linear-gradient(135deg, #00ff88, #00d4ff);
    --gradient-secondary: linear-gradient(135deg, #ff6b35, #ffd700);
    --gradient-dark: linear-gradient(135deg, #0a0a0a, #1a1a2e);
    --shadow-neon: 0 0 20px rgba(0, 255, 136, 0.3);
    --shadow-glow: 0 0 40px rgba(0, 255, 136, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Roboto', sans-serif;
    background: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* Hide default cursor for custom cursor */
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.custom-cursor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 32px;
    background: linear-gradient(to bottom, #8B4513 0%, #D2691E 30%, #8B4513 100%);
    border-radius: 4px;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(139, 69, 19, 0.5);
}

.custom-cursor::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #654321, #8B4513);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(101, 67, 33, 0.7);
}

.custom-cursor.clicking {
    transform: scale(1.2) rotate(15deg);
}

.custom-cursor.hovering {
    transform: scale(1.3);
}

.custom-cursor.hovering::before {
    background: linear-gradient(to bottom, #FFD700 0%, #FFA500 30%, #FFD700 100%);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

/* Enhanced Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(5, 5, 5, 0.98);
    box-shadow: var(--shadow-neon);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-neon);
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
    padding: 0;
    margin: 0;
}

.nav-menu a {
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: var(--gray-text);
    text-decoration: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    z-index: 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition);
    z-index: -1;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    left: 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--dark-bg);
    transform: translateY(-2px);
}


/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.lang-btn.active,
.lang-btn:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    box-shadow: var(--shadow-neon);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.hamburger:hover {
    background: rgba(0, 255, 136, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* Enhanced Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('../images/y7i319.jpg') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 212, 255, 0.1));
}

@keyframes floatSinuca {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(2deg);
    }
    50% {
        transform: translateY(5px) rotate(-2deg);
    }
    75% {
        transform: translateY(-5px) rotate(1deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.floating-balls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.ball {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    font-size: 20px;
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    animation: floatSinuca 6s ease-in-out infinite;
}

/* Bolas individuais com cor e delay */
.ball:nth-child(1) {
    width: 60px;
    height: 60px;
    background: #ffff00;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.ball:nth-child(2) {
    width: 70px;
    height: 70px;
    background: #ff0000;
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.ball:nth-child(3) {
    width: 55px;
    height: 55px;
    background: #0000cc;
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.ball:nth-child(4) {
    width: 65px;
    height: 65px;
    background: #008000;
    top: 40%;
    left: 5%;
    animation-delay: 2s;
}

.ball:nth-child(5) {
    width: 60px;
    height: 60px;
    background: #8B4513;
    top: 70%;
    right: 25%;
    animation-delay: 0.8s;
}

.ball::before {
    content: attr(data-number);
    position: absolute;
    color: white;
    background: black;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 0 5px rgba(0,0,0,0.6);
}


.hero-content {
    text-align: center;
    z-index: 3;
    position: relative;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.5));
    }

    to {
        filter: drop-shadow(0 0 40px rgba(0, 255, 136, 0.8));
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--gray-text);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: bold;

}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* === Enhanced Countdown UI === */
.countdown-container {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 0 25px var(--primary-color);
    position: relative;
    overflow: hidden;
}

.countdown-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    z-index: -1;
    filter: blur(10px);
    animation: borderGlow 2.5s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.countdown-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 0 0 12px var(--primary-color);
    font-weight: bold;

}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.countdown-item {
    background: rgba(0, 255, 136, 0.08);
    border-radius: 16px;
    padding: 1.25rem;
    border: 1px solid rgba(0, 255, 136, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
    text-align: center;
}

.countdown-item:hover {
    transform: translateY(-6px) scale(1.03);
    background: rgba(0, 255, 136, 0.2);
}

.countdown-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    text-shadow: 0 0 30px var(--primary-color);
    font-weight: bold;

}

.countdown-label {
    font-size: 0.85rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.5rem;
    font-weight: bold;

}


/* Section Styling */
section {
    padding: 6rem 0;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
    font-weight: bold;

}

/* About Section */
.about {
    background: var(--gradient-dark);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: bold;
    color: var(--gray-text);
}

.about-text h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: bold;

}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-neon);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: bold;

}

.feature h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: bold;

}

.feature p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* Game Section */
.game {
    background: var(--darker-bg);
}

.game-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.game-canvas-container {
    background: rgba(0, 0, 0, 0.8);
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: var(--shadow-glow);
}

#gameCanvas {
    width: 100%;
    border-radius: 15px;
    display: block;
}

.game-controls {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.game-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    font-family: 'Orbitron', monospace;
}

.game-info div {
    text-align: center;
}

.game-info span {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.game-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.game-buttons button {
    padding: 1rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.game-buttons button:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.game-buttons button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.how-to-play {
    margin-top: 2rem;
}

.how-to-play h4 {
    font-family: 'Orbitron', monospace;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.how-to-play ul {
    list-style: none;
    padding: 0;
}

.how-to-play li {
    padding: 0.5rem 0;
    color: var(--gray-text);
    position: relative;
    padding-left: 1.5rem;
}

.how-to-play li::before {
    content: '▶';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Tokenomics Section */
.tokenomics {
    background: var(--gradient-dark);
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.token-details {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.token-details h3 {
    font-family: 'Orbitron', monospace;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: bold;

}

.token-info {
    display: grid;
    gap: 1rem;
}

.token-info-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(0, 255, 136, 0.1);
    border-radius: var(--border-radius);
}

.token-info-item strong {
    color: var(--primary-color);
}

.contract-address {
    font-family: monospace;
    font-size: 0.9rem;
    word-break: break-all;
    cursor: pointer;
    transition: var(--transition);
    font-weight: bold;

}

.contract-address:hover {
    color: var(--primary-color);
}

.token-distribution h3 {
    font-family: 'Orbitron', monospace;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: bold;

}

.chart-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
}

.chart-bar {
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 10px;
    margin-right: 1rem;
    transition: width 1s ease-in-out;
}

.chart-label {
    color: var(--gray-text);
    font-weight: 500;
}

/* Roadmap Section */
.roadmap {
    background: var(--darker-bg);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 2rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 2rem;
}

.timeline-content {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 10px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -20px;
    border-left-color: rgba(0, 255, 136, 0.3);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -20px;
    border-right-color: rgba(0, 255, 136, 0.3);
}

.timeline-date {
    font-family: 'Orbitron', monospace;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-title {
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 1rem;
    font-weight: bold;

}

.timeline-description {
    color: var(--gray-text);
    line-height: 1.6;
}

.timeline-marker {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 20px var(--primary-color);
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -10px;
}

/* Team Section */
.team {
    background: var(--gradient-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-neon);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    margin: 0 auto 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-neon);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: bold;

}

.team-role {
    color: var(--gray-text);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
    font-weight: bold;

}

.team-social a:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}

/* Presale Section */
.presale {
    background: var(--darker-bg);
}

.presale-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.presale-info {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.presale-info h3 {
    font-family: 'Orbitron', monospace;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: bold;

}

.presale-details {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.presale-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(0, 255, 136, 0.1);
    border-radius: var(--border-radius);
}

.presale-detail-item strong {
    color: var(--primary-color);
}

.spacepix-guide {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.spacepix-guide h3 {
    font-family: 'Orbitron', monospace;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: bold;

}

.guide-steps {
    list-style: none;
    padding: 0;
}

.guide-steps li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(0, 255, 136, 0.1);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    color: var(--gray-text);
    line-height: 1.6;
}

.guide-steps li strong {
    color: var(--primary-color);
}

.spacepix-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.spacepix-feature {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 255, 136, 0.1);
    border-radius: var(--border-radius);
}

.spacepix-feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: bold;

}

.spacepix-feature h4 {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: bold;

}

.spacepix-feature p {
    color: var(--gray-text);
    font-size: 0.8rem;
    font-weight: bold;

}

.presale-action {
    text-align: center;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Orbitron', monospace;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: var(--gray-text);
    text-decoration: none;
    line-height: 1.6;
    transition: var(--transition);
    font-weight: bold;
    font-size: 0.85rem;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
    font-weight: bold;

}

.social-links a:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    font-size: 0.95rem;
    color: var(--light-text, #ccc);
    padding: 20px 0;
}

.spacepix-link {
    color: var(--primary-color, #00ff88);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.spacepix-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        border-top: 1px solid rgba(0, 255, 136, 0.2);
        padding: 2rem 0;
    }

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

    .hamburger {
        display: flex;
    }

    .language-switcher {
        margin-left: 0;
        margin-top: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .about-content,
    .tokenomics-content,
    .presale-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .game-container {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 3rem !important;
        padding-right: 0 !important;
    }

    .timeline-item .timeline-marker {
        left: 10px !important;
        right: auto !important;
    }

    .timeline-content::before {
        left: -20px !important;
        right: auto !important;
        border-right-color: rgba(0, 255, 136, 0.3) !important;
        border-left-color: transparent !important;
    }

    .features-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .spacepix-features {
        grid-template-columns: 1fr;
    }

    .custom-cursor {
        display: none;
        /* Hide custom cursor on mobile */
    }

    body {
        cursor: auto;
        /* Show default cursor on mobile */
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .countdown-grid {
        grid-template-columns: 1fr;
    }

    .countdown-item {
        padding: 1rem;
    }

    .countdown-number {
        font-size: 2rem;
        font-weight: bold;

    }

    .hero-title {
        font-size: 2rem;
        font-weight: bold;

    }

    .section-title {
        font-size: 2rem;
        font-weight: bold;

    }
}