/**
 * Enhanced Styles for Buy Page
 * Matching the reference design with clean white background
 */

/* Base Styles */
body {
    background: #ffffff;
    color: #000000;
    font-family: "Poppins", sans-serif;
}

#root {
    background: #ffffff;
    min-height: 100vh;
}

/* Main Container */
.sc-kstqJO.jYtiBH {
    padding-top: 90px;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 50px;
}

/* Section Container */
.sc-crrszt.iprKbO {
    margin-bottom: 50px;
    text-align: left;
}

/* Headings */
.sc-iqHYmW.kHbDpc {
    font-size: 36px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 30px;
    text-align: left;
    font-family: "Poppins", sans-serif;
}

/* Paragraphs */
.sc-dQoVA.hEiRSt {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 30px;
    font-family: "Poppins", sans-serif;
}

/* Footer */
.sc-gKseQn.jbPSmi {
    background-color: #353535;
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-top: 50px;
}

.sc-gKseQn.jbPSmi .right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sc-gKseQn.jbPSmi .sc-bdfBQB.fRUpFr.discord,
.sc-gKseQn.jbPSmi .sc-gsTEea.bUpIAL.twitter {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.sc-gKseQn.jbPSmi .sc-bdfBQB.fRUpFr.discord:hover,
.sc-gKseQn.jbPSmi .sc-gsTEea.bUpIAL.twitter:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .sc-kstqJO.jYtiBH {
        padding-top: 80px;
    }
    
    .sc-iqHYmW.kHbDpc {
        font-size: 28px;
    }
    
    .sc-gKseQn.jbPSmi {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .sc-gKseQn.jbPSmi .right {
        justify-content: center;
    }
}

