body {
    background: #fefefe;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.text-blue {
    color: #007bff;
}

.tip-hint {
    font-size: 1.05rem;
    font-weight: 500; /* semibold */
    display: inline-block;
    margin-top: 0.5rem;
}

.hero-text h2 {
    font-weight: 700;
    font-size: 1.8rem;
}

.hero-text p {
    font-size: 1rem;
    max-width: 720px;
    margin: 0 auto;
}

.action-btn {
    min-width: 160px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
}

    .action-btn i {
        vertical-align: middle;
        font-size: 1.1rem;
    }

.logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.app-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #212529;
}

.upload-wrapper {
    max-width: 500px;
    width: 100%;
}

.upload-box {
    border: 2px dashed #bbb;
    border-radius: 8px;
    padding: 30px;
    background-color: #fafafa;
    transition: border-color 0.3s ease;
    min-height: 240px;
    width: 100%;
}

    .upload-box:hover {
        border-color: #007bff;
    }

#thumbnailPreview img {
    max-width: 90px;
    max-height: 90px;
    border: 2px solid #007bff;
    border-radius: 5px;
}

.stat-section {
    flex-wrap: wrap;
}

.stat-section-bg {
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.stat-box {
    min-width: 120px;
    text-align: center;
    padding: 20px 24px;
    border-radius: 10px;
    background-color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease;
}

    .stat-box:hover {
        transform: translateY(-4px);
    }

    .stat-box h1,
    .stat-box h4 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 5px;
        /*color: #004085;*/
    }

    .stat-box p {
        font-size: 0.95rem;
        margin-top: 0.5rem;
        color: #6c757d;
    }

#ratingStars i {
    cursor: pointer;
    transition: transform 0.2s ease;
}

    #ratingStars i:hover {
        transform: scale(1.3);
    }

.ad-placeholder {
    width: 250px;
    height: 250px;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    color: #888;
    font-size: 0.9rem;
    border-radius: 6px;
}

.adobe-dropzone-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.dropzone-container {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

.dropzone {
    border: 2px dashed #007bff;
    border-radius: 12px;
    padding: 24px 16px;
    background-color: #fefefe;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-height: auto;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

    .dropzone:hover {
        border-color: #ffc107;
        background-color: #f9f9f9;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    }

    .dropzone p {
        font-size: 1.1rem;
        margin-bottom: 12px;
        color: #333;
    }

    .dropzone em {
        font-style: normal;
        color: #007bff;
        text-decoration: underline;
        cursor: pointer;
    }

.button-container .btn-accent {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1rem;
}

.free-plan-widget {
    font-size: 0.95rem;
    color: #555;
}

.plan-widget-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    color: #333;
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 5px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    font-weight: 500;
}

    .plan-widget-tag img {
        width: 14px;
        height: 14px;
    }
