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

body {
    font-family: 'Arial', sans-serif;
    background: #000;
    color: #b8c8c8;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(180, 200, 190, 0.2);
}

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

.logo {
    font-size: 32px;
    font-weight: bold;
    color: #b8c8c8;
    text-shadow: 0 0 20px rgba(180, 200, 190, 0.6);
}

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

.nav-links a {
    color: #8fa5a5;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #b8c8c8;
}

/* Menu Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #b8c8c8;
    margin: 4px 0;
    transition: all 0.3s;
    border-radius: 2px;
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.x-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    opacity: 0.15;
}

.x-beam {
    position: absolute;
    width: 200px;
    height: 1400px;
    top: 50%;
    left: 50%;
    transform-origin: center center;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(100, 130, 120, 0.3) 30%,
        rgba(160, 190, 180, 0.5) 50%,
        rgba(100, 130, 120, 0.3) 70%,
        transparent 100%
    );
    filter: blur(4px);
}

.x-beam:nth-child(1) {
    transform: translate(-50%, -50%) rotate(30deg);
}

.x-beam:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-30deg);
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 72px;
    font-weight: bold;
    color: #b8c8c8;
    text-shadow: 0 0 30px rgba(180, 200, 190, 0.6);
    margin-bottom: 20px;
    letter-spacing: 8px;
}

.hero-tagline {
    font-size: 32px;
    color: #8fa5a5;
    margin-bottom: 40px;
    letter-spacing: 3px;
}

.hero-description {
    font-size: 18px;
    color: #6fa5a5;
    line-height: 1.8;
    margin-bottom: 50px;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: transparent;
    border: 2px solid #ff4444;
    color: #ff4444;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.3);
    cursor: pointer;
}

.cta-button:hover {
    background: #ff4444;
    color: #000;
    box-shadow: 0 0 40px rgba(255, 68, 68, 0.6);
}

.game-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
}

.game-container {
    max-width: 900px;
    margin: 80px auto;
    background: linear-gradient(180deg, #0d1f1f 0%, #000 100%);
    border: 2px solid rgba(180, 200, 190, 0.3);
    border-radius: 10px;
    padding: 40px;
    position: relative;
}

.close-game {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: #8fa5a5;
    cursor: pointer;
    transition: color 0.3s;
}

.close-game:hover {
    color: #ff4444;
}

.game-title {
    font-size: 36px;
    color: #b8c8c8;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(180, 200, 190, 0.4);
}

.character-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.character-card {
    background: rgba(20, 40, 35, 0.5);
    border: 2px solid rgba(180, 200, 190, 0.3);
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 10px;
}

.character-card:hover {
    border-color: #b8c8c8;
    box-shadow: 0 0 30px rgba(180, 200, 190, 0.3);
    transform: translateY(-5px);
}

.character-name {
    font-size: 28px;
    color: #b8c8c8;
    margin-bottom: 15px;
    font-weight: bold;
}

.character-description {
    color: #6fa5a5;
    line-height: 1.6;
    font-size: 16px;
}

.game-content {
    display: none;
}

.scene-image-container {
    text-align: center;
    margin-bottom: 30px;
    border: 2px solid #ff4444;
    padding: 10px;
    background: rgba(40, 60, 55, 0.2);
    border-radius: 5px;
    width: 100%;
    max-width: 100%;
    max-height: 250px;
    height: 250px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scene-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    filter: brightness(1.1) contrast(1.1) grayscale(0.1);
}

.story-text {
    color: #8fa5a5;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.choices {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.choice-button {
    padding: 20px;
    background: rgba(20, 40, 35, 0.5);
    border: 2px solid rgba(180, 200, 190, 0.3);
    color: #b8c8c8;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    border-radius: 5px;
}

.choice-button:hover {
    border-color: #b8c8c8;
    background: rgba(40, 60, 55, 0.5);
    box-shadow: 0 0 20px rgba(180, 200, 190, 0.2);
}

.ending-victory {
    color: #4ade80;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.5);
}

.ending-defeat {
    color: #ff4444;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
}

.restart-button {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #b8c8c8;
    color: #b8c8c8;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.restart-button:hover {
    background: #b8c8c8;
    color: #000;
}

.contract-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, #000 0%, #0d1f1f 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    color: #b8c8c8;
    text-shadow: 0 0 20px rgba(180, 200, 190, 0.4);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6fa5a5;
    margin-bottom: 60px;
}

.contract-box {
    background: rgba(20, 40, 35, 0.5);
    border: 2px solid rgba(180, 200, 190, 0.3);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.contract-label {
    font-size: 20px;
    color: #8fa5a5;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.contract-address {
    font-size: 24px;
    color: #b8c8c8;
    font-family: 'Courier New', monospace;
    word-break: break-all;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.coming-soon {
    font-size: 28px;
    color: #ff4444;
    letter-spacing: 3px;
    animation: pulse 2s ease-in-out infinite;
}

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

.copy-button {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #b8c8c8;
    color: #b8c8c8;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.copy-button:hover {
    background: #b8c8c8;
    color: #000;
}

.about-section {
    padding: 100px 40px;
    background: #0d1f1f;
}

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

.feature-card {
    background: rgba(20, 40, 35, 0.5);
    border: 2px solid rgba(180, 200, 190, 0.2);
    padding: 40px;
    border-radius: 10px;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(180, 200, 190, 0.5);
    box-shadow: 0 0 30px rgba(180, 200, 190, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 24px;
    color: #b8c8c8;
    margin-bottom: 15px;
}

.feature-description {
    color: #6fa5a5;
    line-height: 1.8;
}

.tokenomics-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, #0d1f1f 0%, #000 100%);
}

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

.token-stat {
    text-align: center;
    padding: 40px;
    background: rgba(20, 40, 35, 0.5);
    border: 2px solid rgba(180, 200, 190, 0.2);
    border-radius: 10px;
}

.stat-value {
    font-size: 36px;
    color: #b8c8c8;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #6fa5a5;
    letter-spacing: 1px;
}

.community-section {
    padding: 100px 40px;
    background: #000;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.social-link {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(180, 200, 190, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    text-decoration: none;
    color: #b8c8c8;
    transition: all 0.3s;
}

.social-link:hover {
    border-color: #b8c8c8;
    box-shadow: 0 0 30px rgba(180, 200, 190, 0.4);
    transform: scale(1.1);
}

footer {
    padding: 40px;
    text-align: center;
    background: #000;
    border-top: 1px solid rgba(180, 200, 190, 0.2);
    color: #6fa5a5;
}

.disclaimer {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 14px;
    line-height: 1.6;
}

/* Roadmap Section */
.roadmap-section {
    padding: 100px 40px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.roadmap-timeline {
    max-width: 1000px;
    margin: 60px auto 0;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        rgba(180, 200, 190, 0.3) 0%, 
        rgba(180, 200, 190, 0.1) 100%);
}

.roadmap-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

.roadmap-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.roadmap-item:nth-child(even) .roadmap-phase {
    order: 2;
    text-align: left;
}

.roadmap-item:nth-child(even) .roadmap-card {
    order: 1;
}

.roadmap-phase {
    font-size: 20px;
    color: #ff4444;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: right;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.4);
}

.roadmap-card {
    background: rgba(20, 40, 35, 0.5);
    border: 2px solid rgba(180, 200, 190, 0.3);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s;
    position: relative;
}

.roadmap-card::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #b8c8c8;
    border: 3px solid #000;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.roadmap-item:nth-child(odd) .roadmap-card::before {
    right: -51px;
}

.roadmap-item:nth-child(even) .roadmap-card::before {
    left: -51px;
}

.roadmap-card:hover {
    border-color: #b8c8c8;
    box-shadow: 0 0 30px rgba(180, 200, 190, 0.3);
    transform: translateY(-5px);
}

.roadmap-status {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.status-complete {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    border: 1px solid #4ade80;
}

.status-progress {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid #ffa500;
}

.status-upcoming {
    background: rgba(100, 150, 200, 0.2);
    color: #6496c8;
    border: 1px solid #6496c8;
}

.status-mystery {
    background: rgba(138, 43, 226, 0.2);
    color: #8a2be2;
    border: 1px solid #8a2be2;
}

.roadmap-title {
    font-size: 24px;
    color: #b8c8c8;
    margin-bottom: 12px;
    font-weight: bold;
}

.roadmap-description {
    color: #6fa5a5;
    line-height: 1.6;
    font-size: 16px;
}

.roadmap-disclaimer {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 30px;
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 10px;
    text-align: center;
}

.roadmap-disclaimer p {
    color: #8fa5a5;
    line-height: 1.8;
    font-size: 14px;
}

.roadmap-disclaimer strong {
    color: #ff4444;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(180, 200, 190, 0.2);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 24px;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active a {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links.active a:nth-child(1) {
        transition-delay: 0.1s;
    }
    
    .nav-links.active a:nth-child(2) {
        transition-delay: 0.2s;
    }
    
    .nav-links.active a:nth-child(3) {
        transition-delay: 0.3s;
    }
    
    .nav-links.active a:nth-child(4) {
        transition-delay: 0.4s;
    }
    
    .nav-links.active a:nth-child(5) {
        transition-delay: 0.5s;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-tagline {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .character-selection {
        grid-template-columns: 1fr;
    }
    
    .game-container {
        padding: 20px;
        margin: 40px auto;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .roadmap-item {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
        padding-left: 60px;
    }
    
    .roadmap-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .roadmap-phase {
        text-align: left;
        order: 1 !important;
    }
    
    .roadmap-card {
        order: 2 !important;
    }
    
    .roadmap-card::before {
        left: -51px !important;
    }
}