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

body {
    font-family: Georgia, 'Times New Roman', serif;
    background: linear-gradient(135deg, #1a1a3e 0%, #2d1b4e 50%, #1a1a3e 100%);
    color: #f4e4bc;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-attachment: fixed;
}

.container {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.hero {
    padding: 60px 20px;
    background: rgba(45, 27, 78, 0.6);
    border-radius: 20px;
    border: 2px solid #d4af37;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3),
                inset 0 0 20px rgba(212, 175, 55, 0.1);
    margin-bottom: 60px;
    animation: fadeIn 1s ease-in;
}

.title {
    font-size: 3.5rem;
    color: #d4af37;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8),
                 0 0 20px rgba(212, 175, 55, 0.5);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.5rem;
    color: #f4e4bc;
    margin-bottom: 40px;
    font-style: italic;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    color: #1a1a3e;
    background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    border: 2px solid #d4af37;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 220px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                0 0 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #f4e4bc 0%, #d4af37 100%);
}

.btn:active {
    transform: translateY(-1px) scale(1.02);
}

.how-to-play {
    padding: 50px 20px;
    background: rgba(26, 26, 62, 0.7);
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    margin-bottom: 40px;
}

.how-to-play h2 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 40px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

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

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    background: rgba(45, 27, 78, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    background: rgba(45, 27, 78, 0.7);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    color: #1a1a3e;
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.4);
}

.step-content h3 {
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.step-content p {
    color: #f4e4bc;
    line-height: 1.6;
    font-size: 0.95rem;
}

footer {
    padding: 30px 20px;
    color: #f4e4bc;
    font-size: 1.1rem;
    opacity: 0.8;
}

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

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .btn {
        min-width: 100%;
        font-size: 1rem;
        padding: 15px 30px;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .how-to-play h2 {
        font-size: 2rem;
    }
}

