/* Game-specific Hero Section */
.game-hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    width: 200px;
    height: 120px;
    background: linear-gradient(45deg, rgba(233, 69, 96, 0.1), rgba(255, 107, 157, 0.1));
    border-radius: 15px;
    animation: float-cards 15s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 5s;
}

.floating-card:nth-child(3) {
    top: 40%;
    left: 5%;
    animation-delay: 10s;
}

@keyframes float-cards {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-30px) rotate(5deg); opacity: 0.7; }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: left;
}

.game-badge {
    display: inline-block;
    background: linear-gradient(45deg, #e94560, #ff6b9d);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.game-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #e94560);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.game-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.game-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    text-align: left;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    text-align: left;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #e94560;
    line-height: 1;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-investor, .btn-demo {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-investor {
    background: linear-gradient(45deg, #e94560, #ff6b9d);
    color: white;
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
}

.btn-investor:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(233, 69, 96, 0.6);
    color: white;
    text-decoration: none;
}

.btn-demo {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-demo:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

.game-showcase {
    position: relative;
    z-index: 2;
}

.game-frame {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.game-frame iframe {
    border-radius: 15px;
    width: 100%;
    height: 400px;
}

/* Investment Section */
.investment-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #e94560, #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.investment-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(233, 69, 96, 0.1);
}

.investment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.investment-header h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin: 0;
}

.investment-amount {
    text-align: right;
}

.currency {
    font-size: 1.5rem;
    color: #e94560;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #e94560;
}

.goal {
    display: block;
    font-size: 0.9rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.investment-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    border-left: 4px solid #e94560;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #e94560, #ff6b9d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: #7f8c8d;
    margin: 0;
}

/* Features Showcase */
.features-showcase {
    padding: 120px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.feature-showcase-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    height: 100%;
}

.feature-showcase-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.feature-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #e94560, #ff6b9d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 15px 35px rgba(233, 69, 96, 0.3);
}

.feature-showcase-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.feature-showcase-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tech-badge {
    background: rgba(233, 69, 96, 0.2);
    color: #e94560;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(233, 69, 96, 0.3);
}

/* Market Section */
.market-section {
    padding: 120px 0;
    background: white;
}

.market-content h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.market-content .lead {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.market-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.market-stat {
    text-align: center;
}

.market-stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e94560;
    margin-bottom: 0.5rem;
}

.market-stat p {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
}

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

.growth-chart {
    display: flex;
    align-items: end;
    gap: 2rem;
    height: 300px;
}

.chart-bar {
    width: 80px;
    background: linear-gradient(to top, #e94560, #ff6b9d);
    border-radius: 10px 10px 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.3);
}

.bar-label {
    position: absolute;
    bottom: -30px;
    color: #2c3e50;
    font-size: 0.9rem;
}

.bar-value {
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Team Section */
.team-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.team-highlight {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.team-highlight h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.team-highlight p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.expertise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    border: 1px solid rgba(233, 69, 96, 0.1);
}

.expertise-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #e94560, #ff6b9d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.expertise-item span {
    color: #2c3e50;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #e94560);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.btn-investor-large, .btn-demo-large {
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 1.1rem;
}

.btn-investor-large {
    background: linear-gradient(45deg, #e94560, #ff6b9d);
    color: white;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
}

.btn-investor-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(233, 69, 96, 0.6);
    color: white;
    text-decoration: none;
}

.btn-demo-large {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-demo-large:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

.contact-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .game-title {
        font-size: 3rem;
    }
    
    .game-subtitle {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .investment-header {
        flex-direction: column;
        text-align: center;
    }
    
    .investment-amount {
        text-align: center;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .market-stats {
        justify-content: center;
    }
    
    .growth-chart {
        gap: 1rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }

    .hero-content {
        text-align: center;
    }
    
    .game-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .game-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .floating-card {
        width: 100px;
        height: 60px;
    }
    
    .hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .chart-bar {
        width: 60px;
    }
}
