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

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --accent-orange: #ff6b35;
    --light-orange: #ff8c42;
    --cosmic-blue: #1e3a8a;
    --star-white: #f8fafc;
    --text-gray: #94a3b8;
    --gradient-cosmic: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #1e3a8a 100%);
    --gradient-orange: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--primary-black);
    color: var(--star-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

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

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.connect-wallet-btn {
    background: var(--gradient-orange);
    color: var(--primary-black);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Exo 2', sans-serif;
}

.connect-wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-cosmic);
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, #fff, transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, #fff, transparent),
        radial-gradient(2px 2px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: twinkle 20s linear infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.saturn {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    animation: float 6s ease-in-out infinite;
}

.saturn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 30% 30%, #ffd700, #ff8c00, #ff6b35);
    border-radius: 50%;
    box-shadow: 
        0 0 50px rgba(255, 107, 53, 0.5),
        inset -20px -20px 50px rgba(0, 0, 0, 0.3);
}

.saturn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 30px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 53, 0.3) 20%, 
        rgba(255, 140, 0, 0.5) 50%, 
        rgba(255, 107, 53, 0.3) 80%, 
        transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.4);
    animation: ringRotate 10s linear infinite;
}

@keyframes ringRotate {
    0% { transform: translate(-50%, -50%) rotateX(60deg) rotateZ(0deg); }
    100% { transform: translate(-50%, -50%) rotateX(60deg) rotateZ(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

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

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 0.9;
}

.title-line {
    display: block;
    color: var(--star-white);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.title-accent {
    display: block;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    margin-top: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

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

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Exo 2', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-orange);
    color: var(--primary-black);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--star-white);
    border: 2px solid var(--accent-orange);
}

.btn-secondary:hover {
    background: var(--accent-orange);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.btn-primary.large, .btn-secondary.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Subscription Form */
.hero-subscription-form {
    margin: 3rem auto 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    max-width: 600px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.hero-subscription-form h3 {
    font-family: 'Orbitron', monospace;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.hero-subscription-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}

.hero-subscription-form .form-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--star-white);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.hero-subscription-form .form-group input:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.hero-subscription-form .form-group input::placeholder {
    color: var(--text-gray);
}

.hero-subscription-form .form-group button {
    padding: 1rem 2rem;
    font-size: 1rem;
    white-space: nowrap;
    min-width: 150px;
}

.hero-subscription-form .form-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
    text-align: center;
}

/* Section Styles */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Game Preview Section */
.game-preview {
    padding: 6rem 0;
    background: var(--secondary-black);
}

.game-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.game-screen {
    background: var(--primary-black);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.game-ui {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.energy-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 0.5rem 1rem;
    position: relative;
    overflow: hidden;
}

.energy-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--gradient-orange);
    border-radius: 15px;
    animation: energyPulse 2s ease-in-out infinite;
}

@keyframes energyPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.energy-text {
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
    font-weight: 600;
}

.score-display {
    text-align: right;
}

.score {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.currency {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.tap-area {
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.tap-area:hover {
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
}

.earthling-character {
    position: relative;
    animation: bounce 2s ease-in-out infinite;
}

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

.character-body {
    width: 60px;
    height: 60px;
    background: var(--gradient-orange);
    border-radius: 50%;
    position: relative;
}

.character-antenna {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 20px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.character-antenna::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.upgrade-panel {
    display: flex;
    gap: 1rem;
}

.upgrade-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.upgrade-name {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.upgrade-level {
    font-family: 'Orbitron', monospace;
    color: var(--accent-orange);
    font-weight: 600;
}

.game-instructions h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-orange);
}

.game-instructions p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 0.5rem 0;
    color: var(--star-white);
    font-size: 1.1rem;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--primary-black);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(30, 58, 138, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: var(--secondary-black);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-orange);
}

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

/* TON Blockchain Section */
.ton-blockchain {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--cosmic-blue) 50%, var(--primary-black) 100%);
    position: relative;
    overflow: hidden;
}

.ton-blockchain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.ton-logo {
    text-align: center;
    margin-bottom: 3rem;
}

.ton-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: tonPulse 2s ease-in-out infinite;
}

@keyframes tonPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.ton-logo h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #007bff;
    margin: 0;
}

.ton-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateX(10px);
    border-color: #007bff;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.benefit-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.benefit-text h4 {
    font-family: 'Orbitron', monospace;
    color: #007bff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.benefit-text p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

.ton-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blockchain-animation {
    position: relative;
    width: 300px;
    height: 200px;
}

.block {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    animation: blockFloat 3s ease-in-out infinite;
}

.block:nth-child(1) {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.block:nth-child(2) {
    top: 20px;
    right: 20px;
    animation-delay: 0.5s;
}

.block:nth-child(3) {
    bottom: 20px;
    left: 20px;
    animation-delay: 1s;
}

.block:nth-child(4) {
    bottom: 20px;
    right: 20px;
    animation-delay: 1.5s;
}

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

.connection-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #007bff, transparent);
    height: 2px;
    animation: connectionFlow 2s ease-in-out infinite;
}

.connection-line:nth-child(5) {
    top: 50px;
    left: 80px;
    width: 140px;
    animation-delay: 0s;
}

.connection-line:nth-child(6) {
    top: 50px;
    left: 80px;
    width: 140px;
    transform: rotate(90deg);
    transform-origin: left center;
    animation-delay: 0.5s;
}

.connection-line:nth-child(7) {
    bottom: 50px;
    left: 80px;
    width: 140px;
    animation-delay: 1s;
}

@keyframes connectionFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Tokenomics Section */
.tokenomics {
    padding: 6rem 0;
    background: var(--secondary-black);
}

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

.token-symbol {
    text-align: center;
    margin-bottom: 2rem;
}

.token-logo {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.token-symbol h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: var(--accent-orange);
}

.token-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--accent-orange);
}

.detail-label {
    color: var(--text-gray);
}

.detail-value {
    font-weight: 600;
    color: var(--star-white);
}

.distribution-chart {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chart-container {
    width: 300px;
    height: 300px;
    position: relative;
    border-radius: 50%;
    background: conic-gradient(
        var(--accent-orange) 0deg 216deg,
        var(--light-orange) 216deg 288deg,
        var(--cosmic-blue) 288deg 324deg,
        var(--text-gray) 324deg 360deg
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-container::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--secondary-black);
    border-radius: 50%;
}

/* Roadmap Section */
.roadmap {
    padding: 6rem 0;
    background: var(--primary-black);
}

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

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-orange);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--secondary-black);
    border: 3px solid var(--accent-orange);
    z-index: 2;
}

.timeline-item.completed .timeline-marker {
    background: var(--accent-orange);
}

.timeline-item.active .timeline-marker {
    background: var(--accent-orange);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.timeline-content h3 {
    font-family: 'Orbitron', monospace;
    color: var(--accent-orange);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--star-white);
}

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

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: var(--gradient-cosmic);
    text-align: center;
}

/* Main Subscription Form */
.main-subscription-form {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
}

.main-subscription-form h3 {
    font-family: 'Orbitron', monospace;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.main-subscription-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}

.main-subscription-form .form-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--star-white);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.main-subscription-form .form-group input:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.main-subscription-form .form-group input::placeholder {
    color: var(--text-gray);
}

.main-subscription-form .form-group button {
    padding: 1rem 2rem;
    font-size: 1rem;
    white-space: nowrap;
    min-width: 150px;
}

.main-subscription-form .form-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

.cta-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--star-white);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.social-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background: var(--secondary-black);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-gray);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--star-white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .hero-subscription-form {
        margin: 2rem auto 3rem;
        padding: 1.5rem;
    }
    
    .hero-subscription-form h3 {
        font-size: 1.3rem;
    }
    
    .hero-subscription-form .form-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-subscription-form .form-group button {
        width: 100%;
    }
    
    .game-demo {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ton-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blockchain-animation {
        width: 250px;
        height: 150px;
    }
    
    .block {
        width: 50px;
        height: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
    
    .main-subscription-form {
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .main-subscription-form h3 {
        font-size: 1.3rem;
    }
    
    .main-subscription-form .form-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-subscription-form .form-group button {
        width: 100%;
    }
    
    .saturn {
        width: 200px;
        height: 200px;
        top: 10%;
        right: 5%;
    }
    
    .saturn::before {
        width: 140px;
        height: 140px;
    }
    
    .saturn::after {
        width: 250px;
        height: 20px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--gradient-cosmic);
    margin: 2% auto;
    padding: 0;
    border: 2px solid var(--accent-orange);
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideIn {
    from { 
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.close {
    color: var(--text-gray);
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--accent-orange);
}

.modal-header {
    background: var(--gradient-orange);
    color: var(--primary-black);
    padding: 1.5rem;
    text-align: center;
    border-radius: 18px 18px 0 0;
    flex-shrink: 0;
}

.modal-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
}

.modal-body {
    padding: 1.5rem;
    text-align: center;
    overflow-y: auto;
    flex: 1;
    max-height: calc(90vh - 120px);
}

/* Custom scrollbar for modal */
.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--light-orange);
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.modal-body h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.modal-body p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.modal-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.modal-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--accent-orange);
    text-align: left;
    font-size: 0.9rem;
}

.modal-feature .feature-icon {
    font-size: 1.2rem;
    min-width: 25px;
}

.modal-feature span:last-child {
    color: var(--star-white);
    font-weight: 500;
}

.modal-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.modal-actions .btn-primary,
.modal-actions .btn-secondary {
    min-width: 100px;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
}

/* Subscription Form Styles */
.subscription-form {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.subscription-form h4 {
    font-family: 'Orbitron', monospace;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.1rem;
}

.form-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.form-group input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--star-white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.form-group input::placeholder {
    color: var(--text-gray);
}

.form-group button {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-width: 400px;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 1rem;
        max-height: calc(85vh - 100px);
    }
    
    .modal-body h3 {
        font-size: 1.1rem;
    }
    
    .modal-body p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .modal-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .modal-features {
        gap: 0.6rem;
        margin-bottom: 1rem;
    }
    
    .modal-feature {
        padding: 0.6rem;
        gap: 0.6rem;
        font-size: 0.85rem;
    }
    
    .modal-feature .feature-icon {
        font-size: 1rem;
        min-width: 20px;
    }
    
    .modal-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }
    
    .modal-actions .btn-primary,
    .modal-actions .btn-secondary {
        width: 100%;
        max-width: 180px;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .form-group button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 3% auto;
        width: 98%;
        max-height: 90vh;
    }
    
    .modal-body {
        max-height: calc(90vh - 80px);
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .modal-body h3 {
        font-size: 1rem;
    }
    
    .modal-body p {
        font-size: 0.85rem;
    }
    
    .modal-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        left: 10px;
        width: 15px;
        height: 15px;
    }
}
