.template-style-6 {
    display: flex;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #f9f9f9, #e0f7fa);
    font-family: 'Segoe UI', sans-serif;
}
.template-style-6 .quote-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    padding: 30px;
    max-width: 600px;
    position: relative;
    text-align: center;
}
.template-style-6 .quote-mark {
    font-size: 60px;
    color: #00acc1;
    position: absolute;
    top: 20px;
    left: 20px;
}
.template-style-6 .quote-content {
    font-size: 22px;
    font-style: italic;
    margin-top: 20px;
    color: #333;
}
.template-style-6 .quote-author {
    margin-top: 15px;
    font-weight: bold;
    color: #00796b;
}
.template-style-6 .quote-footer {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #eee;
    padding-top: 15px;
    justify-content: center;
}
.template-style-6 .profile-pic {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}
.template-style-6 .source-note {
    font-size: 12px;
    color: #777;
    font-style: italic;
}

/* instgram */
.template-instagram {
    display: flex;
    justify-content: center;
    padding: 20px;
    font-family: Arial, sans-serif;
    background: #fafafa;
}
.template-instagram .insta-card {
    width: 400px;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    background: white;
}
.template-instagram .insta-header {
    display: flex;
    align-items: center;
    padding: 10px;
}
.template-instagram .insta-profile {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 10px;
}
.template-instagram .insta-username {
    font-weight: bold;
}
.template-instagram .insta-content {
    padding: 15px;
    font-size: 18px;
    text-align: center;
    color: #262626;
}
.template-instagram .insta-quote {
    font-style: italic;
}
.template-instagram .insta-author {
    margin-top: 10px;
    color: #999;
}
.template-instagram .insta-footer {
    padding: 10px 15px;
    font-size: 14px;
    color: #555;
}
.template-instagram .source {
    font-size: 12px;
    color: #888;
}

/* twitter */
.template-twitter {
    display: flex;
    justify-content: center;
    font-family: 'Helvetica Neue', sans-serif;
    padding: 20px;
    background-color: #e8f5fd;
}
.template-twitter .twitter-card {
    background: white;
    border: 1px solid #ccd6dd;
    border-radius: 12px;
    width: 500px;
    padding: 20px;
}
.template-twitter .twitter-header {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}
.template-twitter .twitter-profile {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
.template-twitter .handle {
    color: #657786;
    font-size: 14px;
}
.template-twitter .twitter-content {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
}
.template-twitter .twitter-author {
    display: block;
    color: #1da1f2;
    margin-top: 5px;
    font-weight: bold;
}
.template-twitter .twitter-footer {
    font-size: 13px;
    color: #657786;
}
.template-twitter .source {
    font-style: italic;
}