/* 关于页面生成器前端样式 */
.apg-email-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.apg-email-modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.apg-email-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.apg-email-option {
    padding: 10px;
    background: #ea4335;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apg-email-option:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.apg-email-option[data-service="qq"] {
    background: #12b7f5;
}

.apg-email-option[data-service="163"] {
    background: #e60012;
}

.apg-email-option[data-service="outlook"] {
    background: #0078d4;
}

.apg-email-option[data-service="yahoo"] {
    background: #6001d2;
}

.apg-email-option[data-service="icloud"] {
    background: #007aff;
}

.apg-close-modal {
    padding: 8px 20px;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.apg-email-selector {
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 10px;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.apg-email-selector:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* 动画效果 */
.about-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.about-section.visible {
    opacity: 1;
    transform: translateY(0);
}
