/* Attractive Advertisement & Donation Section Styles */
.ad-section h2, .donate-section h2 {
    color: #ff9800;
    font-size: 1.3em;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    font-weight: 700;
}
.ad-plugins-list {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.ad-plugin-card {
    background: linear-gradient(120deg, #fff3cd 0%, #f8d7da 100%);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(214,51,51,0.08);
    padding: 20px 18px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-width: 240px;
    flex: 1;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #ffe066;
}
.ad-plugin-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 32px rgba(214,51,51,0.16);
    border-color: #d63333;
}
.ad-plugin-card img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(214,51,51,0.08);
    background: #fff;
}
.ad-plugin-card strong {
    font-size: 1.12em;
    color: #d63333;
    font-weight: 700;
}
.ad-plugin-card p {
    margin: 8px 0 12px 0;
    font-size: 1em;
    color: #333;
}
.btn-ad {
    background: linear-gradient(90deg,#ff9800 60%,#ffd580 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 22px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255,152,0,0.08);
    transition: background 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
}
.btn-ad:hover {
    background: linear-gradient(90deg,#d63333 60%,#ff9800 100%);
    box-shadow: 0 4px 16px rgba(214,51,51,0.12);
    color: #fff;
}

.donate-section {
    text-align: center;
    background: linear-gradient(120deg, #fff3cd 0%, #f8d7da 100%);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(214,51,51,0.08);
    padding: 28px 18px;
    margin-top: 32px;
    border: 1px solid #ffe066;
}
.btn-donate {
    background: linear-gradient(90deg,#ffdd00 60%,#ffe066 100%);
    color: #333;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255,221,0,0.08);
    transition: background 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 14px;
    font-size: 1.08em;
}
.btn-donate:hover {
    background: linear-gradient(90deg,#d63333 60%,#ffdd00 100%);
    color: #fff;
}
.donate-divider {
    height: 1px;
    background: #ffe066;
    margin: 18px auto;
    width: 60%;
    border-radius: 2px;
}
.donate-review {
    color: #d63333;
    text-decoration: underline;
    font-size: 1.08em;
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
    transition: color 0.2s;
}
.donate-review:hover {
    color: #ff9800;
}