@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    background: #0e0e0e;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin: 30px 0;
    color: #ffcc00;
    text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff6600;
}

.earning-guide {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.guide-card {
    background: linear-gradient(145deg, #1a1a1a, #121212);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 5px 5px 15px #000, -5px -5px 15px #222;
    transform: perspective(1000px) rotateX(0deg);
    transition: all 0.4s ease;
}

.guide-card:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg) scale(1.02);
    box-shadow: 10px 10px 25px #000, -10px -10px 25px #222;
}

h2 {
    color: #ff9900;
}

ul, ol, p, table {
    margin: 10px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    padding: 10px;
    border: 1px solid #444;
}

th {
    background: #ff9900;
    color: #000;
}

td {
    background: #1f1f1f;
}

@media (max-width: 768px) {
    .guide-card {
        padding: 15px;
    }
}
