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

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-section {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 800px;
    width: 100%;
}

.icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.game-icon {
    width: 150px;
    height: 150px;
    animation: float 3s ease-in-out infinite, rotate 20s linear infinite;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    transition: transform 0.3s ease;
}

.game-icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
}

.game-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.title-grind {
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.title-lord {
    color: #FF6347;
    text-shadow: 0 0 30px rgba(255, 99, 71, 0.8);
}

.subtitle {
    font-size: 1.2rem;
    color: #87CEEB;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.description {
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.8;
    font-size: 1.1rem;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.description p {
    margin-bottom: 15px;
    color: #E0E0E0;
}

.highlight {
    color: #FFD700 !important;
    font-weight: 500;
    font-size: 1.3rem !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 120px;
}

.feature:hover {
    transform: translateY(-10px);
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    animation: bounce 2s infinite;
}

.feature-text {
    font-weight: 500;
    color: #FFD700;
    font-size: 0.9rem;
}

.cta-section {
    animation: fadeInUp 1s ease-out 1.1s both;
}

.play-button {
    position: relative;
    background: linear-gradient(45deg, #FFD700, #FF6347);
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    font-family: 'Orbitron', monospace;
}

.play-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.play-button:active {
    transform: translateY(-1px);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.play-button:hover .button-glow {
    left: 100%;
}

.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FFD700;
    border-radius: 50%;
    animation: float-particle 8s infinite linear;
    opacity: 0.6;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 7s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 3s;
    animation-duration: 5s;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    100% { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 99, 71, 0.3); }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .game-title {
        font-size: 2.5rem;
    }
    
    .game-icon {
        width: 120px;
        height: 120px;
    }
    
    .features {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .feature {
        min-width: 200px;
    }
    
    .description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .play-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .game-title {
        font-size: 2rem;
    }
    
    .game-icon {
        width: 100px;
        height: 100px;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .description {
        font-size: 0.9rem;
    }
}