/* Digital Dunia Premium Dark UI for AdSense Approval Helper Frontend */

.aah-frontend {
    background: #020617;
    color: #cbd5e1;
    font-family: system-ui, -apple-system, sans-serif;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(148, 163, 255, 0.15);
    margin: 32px 0;
}

.aah-frontend h2 {
    color: #fff;
    font-weight: 800;
    font-size: 24px;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.aah-frontend h2::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 18px;
    background: #06b6d4;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.aah-frontend p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 20px;
}

.aah-frontend ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.aah-frontend ul li {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 255, 0.1);
    padding: 16px 20px;
    margin-bottom: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.aah-frontend ul li::before {
    content: "✓";
    color: #06b6d4;
    font-weight: bold;
    background: rgba(6, 182, 212, 0.15);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.aah-frontend ul li:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border-color: rgba(6, 182, 212, 0.3);
}

.aah-frontend strong {
    color: #fff;
}


