.mining-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Location Notice Styles */
.location-notice {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.8s ease-out;
}

.notice-icon {
    font-size: 2.5rem;
    color: #ff3333;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.7),
                 0 0 20px rgba(255, 51, 51, 0.5),
                 0 0 30px rgba(255, 51, 51, 0.3);
}

.location-notice h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.location-notice p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.notice-info {
    background: rgba(255, 51, 51, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    border: 1px solid rgba(255, 51, 51, 0.2);
    animation: pulse 2s infinite;
}

.notice-info p {
    color: #ff3333;
    margin: 0;
    text-shadow: 0 0 5px rgba(255, 51, 51, 0.5);
}

/* App Cards Styles */
.app-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.app-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out;
}

.app-card:nth-child(2) {
    animation-delay: 0.2s;
}

.app-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 51, 51, 0.3);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.1);
}

.app-icon {
    font-size: 3rem;
    color: #ff3333;
    margin-bottom: 1.5rem;
    animation: rotateIcon 20s linear infinite;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.7),
                 0 0 20px rgba(255, 51, 51, 0.5),
                 0 0 30px rgba(255, 51, 51, 0.3);
}

.app-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.app-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.coming-soon {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.store-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.store-badges span:hover {
    color: #ff3333;
}

.download-btn {
    background: rgba(255, 51, 51, 0.1);
    color: #ff3333;
    border: 1px solid rgba(255, 51, 51, 0.3);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: not-allowed;
    transition: all 0.3s ease;
    width: 100%;
}

.download-btn:disabled {
    opacity: 0.7;
}

/* Additional Info Styles */
.additional-info {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin-top: 3rem;
    animation: fadeIn 0.8s ease-out;
    animation-delay: 0.4s;
}

.additional-info h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.additional-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

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

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

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 51, 51, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 51, 51, 0);
    }
}

@keyframes rotateIcon {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mining-content {
        padding: 1rem;
    }
    
    .app-cards {
        grid-template-columns: 1fr;
    }
    
    .location-notice h2 {
        font-size: 1.8rem;
    }
    
    .app-card h3 {
        font-size: 1.3rem;
    }
}
