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

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #0a0a0a;
    color: #fff;
    min-height: 100vh;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.share-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.share-card {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px;
    max-width: 900px;
    width: 100%;
}

.share-card-img {
    width: 380px;
    min-width: 380px;
    border-radius: 12px;
}

.share-data {
    flex: 1;
    min-width: 0;
}

/* Verdict */
.verdict-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
}

.verdict-label {
    font-size: 18px;
    font-weight: 700;
}

.verdict-label.ai { color: #EA2027; }
.verdict-label.real { color: #ccff00; }
.verdict-label.uncertain { color: #ffa502; }

.verdict-pct {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

/* Breakdown */
.breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.bd-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
}

.bd-name {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    min-width: 70px;
}

.bd-bar-wrap {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    overflow: hidden;
}

.bd-bar {
    height: 100%;
    border-radius: 2px;
}

.bd-val {
    font-size: 12px;
    font-weight: 600;
    min-width: 40px;
    text-align: right;
}

/* CTA */
.share-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    background: #ccff00;
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
}

.share-cta:hover {
    background: #d4ff33;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(204, 255, 0, 0.2);
}

/* Share buttons */
.share-section {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.share-label {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.share-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.share-btn:hover {
    background: #ccff00;
    color: #0a0a0a;
    border-color: #ccff00;
}

.share-btn.copied {
    background: #ccff00;
    color: #0a0a0a;
    border-color: #ccff00;
}

@media (max-width: 700px) {
    .share-card {
        flex-direction: column;
        padding: 20px;
    }
    .share-card-img {
        width: 100%;
        min-width: 0;
    }
    .share-data {
        width: 100%;
    }
    .breakdown {
        grid-template-columns: 1fr;
    }
    .verdict-pct {
        font-size: 22px;
    }
}
