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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(180deg, #0a0b1e 0%, #1a1035 100%);
    min-height: 100vh;
    color: #ffffff;
}

.staking-section {
    padding: 60px 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding: 20px;
}

.section-left-h2 {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    color: #fff;
}

.section-left-img {
    width: 100%;
    height: 50px;
    max-width: 350px;
    height: auto;
    margin: 0 auto;
    display: block;
    /* filter: drop-shadow(0 20px 40px rgba(138, 87, 255, 0.4)); */
    border-radius: 30px;
}

.section-right {
    width: 50%;
    padding: 20px;
}

.container {
    width: 100%;
}

.intro-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #e0e0e0;
    font-weight: 300;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.card {
    background: linear-gradient(135deg, rgba(30, 35, 70, 0.6) 0%, rgba(20, 25, 50, 0.8) 100%);
    border: 1px solid rgba(138, 87, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

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

.card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.card p {
    font-size: 15px;
    line-height: 1.6;
    color: #c0c0d0;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .staking-section {
        flex-direction: column;
        padding: 50px 30px;
    }

    .section-left,
    .section-right {
        width: 100%;
    }

    .section-left-h2 {
        font-size: 52px;
        text-align: center;
    }

    .section-left-img {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .staking-section {
        padding: 40px 20px;
    }

    .section-left-h2 {
        font-size: 42px;
    }

    .intro-text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card {
        padding: 25px;
    }

    .card h2 {
        font-size: 20px;
    }

    .card p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-left-h2 {
        font-size: 36px;
    }

    .section-left-img {
        max-width: 280px;
    }
}