body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
    color: #ecf0f1;
    line-height: 1.6;
}

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

.hero {
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 2.8em;
    color: #ecf0f1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2em;
    color: #bdc3c7;
    max-width: 800px;
    margin: 0 auto 30px;
}

.features {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
    max-width: 800px;
    backdrop-filter: blur(10px);
}

.feature-item {
    margin: 15px 0;
    padding-left: 30px;
    position: relative;
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.3s;
    color: #ecf0f1;
}

.feature-item:hover {
    transform: translateX(10px);
    color: #3498db;
}

.feature-item.animated {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.gameplay {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
    max-width: 800px;
    backdrop-filter: blur(10px);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    background: linear-gradient(45deg, #c0392b, #e74c3c);
}

.game-preview {
    margin: 40px auto;
    text-align: center;
    position: relative;
}

.game-preview img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.tower-container {
    display: inline-block;
    margin: 20px;
    perspective: 1000px;
}

.tower {
    width: 60px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    transform-style: preserve-3d;
    animation: towerPulse 3s ease-in-out infinite;
}

.tower-base {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-radius: 0 0 10px 10px;
}

.u-preview {
    display: flex;
    padding: 0;
    justify-content: center;
}

.u-preview li {
    list-style-type: none;
    margin-right: 20px;
}

.u-preview li:last-child {
    margin-right: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes towerPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(231, 76, 60, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(231, 76, 60, 0.5);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }

    .features, .gameplay {
        padding: 20px;
    }

    .tower {
        width: 40px;
        height: 70px;
    }
} 