:root {
    --primary-color: #4CAF50;
    --secondary-color: #8BC34A;
    --background-color: #1a1a1a;
    --text-color: #ffffff;
    --accent-color: #FFC107;
}

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

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

header {
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-left {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-right: auto;
}

.nav-right {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    margin-left: auto;
}

.logo {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.logo-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.3rem;
    margin-right: 2.5rem;
}

.logo-img {
    width: 80px;
    height: auto;
    display: block;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://wallpaperaccess.com/full/1267249.jpg');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-family: 'Press Start 2P', cursive;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

section {
    padding: 5rem 2rem;
}

.about, .tokenomics {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-family: 'Press Start 2P', cursive;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.game-section {
    background-color: #000;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.game-container {
    width: 900px;
    height: 600px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
}

iframe {
    width: 900px;
    height: 600px;
    border: none;
    border-radius: 0;
    display: block;
    background: transparent;
    overflow: hidden;
}

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

.token-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.token-info:hover {
    transform: translateY(-5px);
}

.token-info h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

footer {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.social-link {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-left, .nav-right {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin: 0;
    }

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

    .hero p {
        font-size: 1.2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 950px) {
    .game-container, iframe {
        width: 100vw;
        height: calc(100vw * 2 / 3);
        min-width: 320px;
        min-height: 213px;
        max-width: 900px;
        max-height: 600px;
    }
}

.hero .logo-img-container {
    margin-bottom: 1.5rem;
}
.hero .logo-img {
    width: 300px;
    height: auto;
}

.hero .copy-card {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.copy-card {
    display: block;
    padding: 1rem 2.5rem;
    background: #222;
    color: #fff;
    border-radius: 1.5rem;
    font-size: 1.3rem;
    font-family: 'Press Start 2P', cursive, Arial, sans-serif;
    box-shadow: 0 2px 12px #0003;
    cursor: pointer;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--primary-color);
    transition: background 0.2s, color 0.2s, border 0.2s;
    user-select: all;
    word-break: break-all;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    overflow-wrap: break-word;
}

.copy-card:hover {
    background: var(--primary-color);
    color: #fff;
    border: 2px solid var(--accent-color);
}

@media (max-width: 600px) {
    .copy-card {
        font-size: 0.9rem;
        padding: 0.7rem 0.5rem;
    }
} 