/**
 * Enhanced Styles for About Page
 * Matching the reference design with clean white background and modern layout
 */

/* 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;
}

.sc-crrszt.cGlxVe {
    max-width: 1100px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

/* Headings */
.sc-iqHYmW.kHbDpc {
    font-size: 36px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 30px;
    text-align: left;
    font-family: "Poppins", sans-serif;
}

.sc-iqHYmW.fzpZbG {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: left;
    font-family: "Poppins", sans-serif;
}

/* Paragraphs */
.sc-dQoVA.hEiRSt {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
}

.sc-dQoVA.hEiRSt ul {
    margin: 15px 0;
    padding-left: 30px;
}

.sc-dQoVA.hEiRSt li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Highlighted Text */
.sc-bqyKOL.hgIrZj {
    font-weight: 700;
    color: #000000;
}

/* Rare PEEPs Character Cards */
.sc-idOiZg.bDyQJJ.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 16px;
    row-gap: 1rem;
    margin-bottom: 30px;
}

.about-gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    border-radius: 6px;
    overflow: hidden;
}

/* About Gallery Image */
.about-gallery-image {
    width: 200px;
    height: 260px;
    object-fit: contain;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    display: block;
}

/* Empty Placeholder */
.about-gallery-item .empty-placeholder {
    width: 200px;
    height: 260px;
    background-color: #E0E0E0;
}

/* Character Name */
.sc-dIUeWJ.dUepJk {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    font-family: "Poppins", sans-serif;
}

/* Character Chance */
.sc-hHfuMS.cRFLgH {
    font-size: 14px;
    color: #666666;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

/* Disclaimer */
.sc-dmlqKv.fxmJdK {
    font-size: 12px;
    text-align: center;
    color: #999999;
    margin-top: 20px;
    margin-bottom: 50px;
    font-style: italic;
    font-family: "Poppins", sans-serif;
}

/* Features Grid */
.feature-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.sc-pGacB.hpMpgW {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sc-pGacB.hpMpgW:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.sc-pGacB.hpMpgW .title {
    font-size: 20px;
    font-weight: 700;
    color: #666666;
    text-align: center;
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
}

.sc-pGacB.hpMpgW .description {
    font-size: 16px;
    line-height: 1.7;
    color: #000000;
    text-align: left;
    font-family: "Poppins", sans-serif;
}

.sc-pGacB.hpMpgW .description p {
    margin: 10px 0 0 0;
    font-weight: 600;
}

/* Roadmap Timeline */
.sc-fFucqa.fRpJtu {
    position: relative;
    padding: 40px 0;
    min-height: 600px;
}

.sc-fFucqa.fRpJtu .line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        #e0e0e0 0px,
        #e0e0e0 10px,
        transparent 10px,
        transparent 20px
    );
    transform: translateX(-50%);
    z-index: 0;
}

.sc-fFucqa.fRpJtu .event {
    position: relative;
    margin-bottom: 60px;
    z-index: 1;
}

.sc-fFucqa.fRpJtu .first.event {
    margin-left: 0;
    margin-right: auto;
    width: 45%;
}

.sc-fFucqa.fRpJtu .second.event {
    margin-left: auto;
    margin-right: 0;
    width: 45%;
}

.sc-fFucqa.fRpJtu .third.event {
    margin-left: 0;
    margin-right: auto;
    width: 45%;
}

.sc-fFucqa.fRpJtu .fourth.event {
    margin-left: auto;
    margin-right: 0;
    width: 45%;
}

/* Roadmap Event Cards */
.sc-fodVek {
    position: relative;
    border-radius: 10px;
    padding: 20px 25px;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sc-fodVek.foYYEb {
    background-color: #2E7D32; /* Dark green */
}

.sc-fodVek.liBgN {
    background-color: #1976D2; /* Dark blue */
}

.sc-fodVek.gIlYFo {
    background-color: #C62828; /* Dark red */
}

.sc-fodVek .bar {
    position: absolute;
    left: -8px;
    top: 0;
    bottom: 0;
    width: 8px;
    border-radius: 10px 0 0 10px;
}

.sc-fodVek.foYYEb .bar {
    background-color: #66BB6A; /* Light green */
}

.sc-fodVek.liBgN .bar {
    background-color: #64B5F6; /* Light blue */
}

.sc-fodVek.gIlYFo .bar {
    background-color: #EF5350; /* Light red */
}

.sc-fodVek .textwrap {
    position: relative;
    z-index: 1;
}

.sc-fodVek .textwrap > div > div:first-child {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 5px;
}

.sc-fodVek .textwrap .title {
    font-size: 20px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}

/* Ready to go Section */
.sc-crrszt.iprKbO[style*="text-align: center"] {
    text-align: center !important;
    margin-bottom: 50px;
}

.sc-crrszt.iprKbO[style*="text-align: center"] .sc-kEjbQP.fRFGYa {
    margin-top: 20px;
}

/* 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: 1024px) {
    .sc-idOiZg.bDyQJJ {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sc-fFucqa.fRpJtu .first.event,
    .sc-fFucqa.fRpJtu .second.event,
    .sc-fFucqa.fRpJtu .third.event,
    .sc-fFucqa.fRpJtu .fourth.event {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .sc-kstqJO.jYtiBH {
        padding-top: 80px;
    }
    
    .sc-iqHYmW.kHbDpc {
        font-size: 28px;
    }
    
    .sc-iqHYmW.fzpZbG {
        font-size: 24px;
    }
    
    .sc-idOiZg.bDyQJJ {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sc-fFucqa.fRpJtu .first.event,
    .sc-fFucqa.fRpJtu .second.event,
    .sc-fFucqa.fRpJtu .third.event,
    .sc-fFucqa.fRpJtu .fourth.event {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .sc-fFucqa.fRpJtu .line {
        left: 20px;
    }
    
    .sc-gKseQn.jbPSmi {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .sc-gKseQn.jbPSmi .right {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .sc-idOiZg.bDyQJJ {
        grid-template-columns: 1fr;
    }
}

