:root {
    --fc-gold: #f1c349;
    --fc-gold-light: #fef9e7;
    --fc-green: #2e7d32;
    --fc-green-light: #f0faf0;
    --fc-green-border: #c8e6c9;
    --fc-dark: #1a1a2e;
    --fc-text: #333;
    --fc-text-light: #666;
    --fc-border: #e5e7eb;
    --fc-radius: 12px;
}

.tvs-fc-wrap {
    max-width: 620px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--fc-text);
}

/* Logo */
.tvs-fc-logo {
    text-align: center;
    margin: 0 auto 24px;
    width: 100%;
}
.tvs-fc-logo img {
    max-width: 180px;
    height: auto;
    display: inline-block;
}

/* Header */
.tvs-fc-header {
    text-align: center;
    margin-bottom: 32px;
}
.tvs-fc-header h1 {
    font-size: 26px;
    font-weight: 700;
    color: var(--fc-dark);
    margin: 0 0 12px;
    line-height: 1.3;
}
.tvs-fc-gold {
    color: var(--fc-gold);
}
.tvs-fc-header p {
    font-size: 16px;
    color: var(--fc-text-light);
    margin: 0;
    line-height: 1.6;
}

/* Reason Cards */
.tvs-fc-reasons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.tvs-fc-reason-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border: 2px solid var(--fc-border);
    border-radius: var(--fc-radius);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-family: inherit;
    font-size: 15px;
    color: var(--fc-text);
    width: 100%;
    position: relative;
}

.tvs-fc-reason-card:hover {
    border-color: var(--fc-gold);
    background: var(--fc-gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(241, 195, 73, 0.15);
}

.tvs-fc-reason-card.selected {
    border-color: var(--fc-gold);
    background: var(--fc-gold-light);
    box-shadow: 0 4px 12px rgba(241, 195, 73, 0.2);
}

.tvs-fc-reason-text {
    flex: 1;
    text-align: center;
}
.tvs-fc-reason-text strong {
    display: block;
    font-size: 15px;
    color: var(--fc-dark);
    margin-bottom: 2px;
}
.tvs-fc-reason-text span {
    font-size: 13px;
    color: var(--fc-text-light);
}

.tvs-fc-reason-check {
    font-size: 18px;
    font-weight: 700;
    color: var(--fc-gold);
    opacity: 0;
    transition: opacity 0.2s;
    flex-shrink: 0;
}
.tvs-fc-reason-card.selected .tvs-fc-reason-check {
    opacity: 1;
}

/* Comment Section */
.tvs-fc-comment-section {
    margin-bottom: 20px;
    animation: fcFadeIn 0.3s ease;
}

.tvs-fc-comment-section label,
.tvs-fc-email-section label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--fc-dark);
    margin-bottom: 8px;
}

.tvs-fc-optional {
    font-weight: 400;
    color: var(--fc-text-light);
    font-size: 13px;
}

.tvs-fc-comment-section textarea,
.tvs-fc-email-section input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--fc-border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--fc-text);
    transition: border-color 0.2s;
    resize: vertical;
    box-sizing: border-box;
}

.tvs-fc-comment-section textarea:focus,
.tvs-fc-email-section input:focus {
    outline: none;
    border-color: var(--fc-gold);
}

/* Email Section */
.tvs-fc-email-section {
    margin-bottom: 20px;
    animation: fcFadeIn 0.3s ease;
}

/* Phone Section */
.tvs-fc-phone-section {
    margin-bottom: 20px;
    animation: fcFadeIn 0.3s ease;
}
.tvs-fc-phone-section input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--fc-border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--fc-text);
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.tvs-fc-phone-section input:focus {
    outline: none;
    border-color: var(--fc-gold);
}
.tvs-fc-phone-section label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--fc-dark);
    margin-bottom: 8px;
}

.tvs-fc-required {
    color: #e74c3c;
    font-weight: 700;
}

/* Submit */
.tvs-fc-submit-wrap {
    text-align: center;
    margin-top: 8px;
    animation: fcFadeIn 0.3s ease;
}

.tvs-fc-submit-btn {
    display: inline-block;
    background: var(--fc-gold);
    color: #ffffff;
    border: none;
    padding: 16px 48px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.3px;
}
.tvs-fc-submit-btn:hover {
    background: #d9a825;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(241, 195, 73, 0.35);
}
.tvs-fc-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.tvs-fc-privacy {
    font-size: 13px;
    color: var(--fc-text-light);
    margin-top: 12px;
}

/* Thank You State */
.tvs-fc-thanks-state {
    text-align: center;
    padding: 40px 20px;
    animation: fcFadeIn 0.4s ease;
}

.tvs-fc-thanks-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.tvs-fc-thanks-state h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--fc-dark);
    margin: 0 0 12px;
    text-align: center;
}

.tvs-fc-thanks-state p {
    font-size: 16px;
    color: var(--fc-text-light);
    line-height: 1.6;
    margin: 0 0 24px;
    text-align: center;
}

.tvs-fc-thanks-cta {
    background: var(--fc-green-light);
    border: 1px solid var(--fc-green-border);
    border-radius: var(--fc-radius);
    padding: 24px;
    margin: 24px 0;
    text-align: center;
}
.tvs-fc-thanks-cta p {
    font-size: 15px;
    color: var(--fc-text);
    margin: 0 0 16px;
    text-align: center;
}

.tvs-fc-btn {
    display: inline-block;
    background: var(--fc-gold);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s;
}
.tvs-fc-btn:hover {
    background: #d9a825;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

.tvs-fc-thanks-footer {
    margin-top: 24px;
    font-size: 14px;
    color: var(--fc-text-light);
    text-align: center;
}
.tvs-fc-thanks-footer a {
    color: var(--fc-gold);
    text-decoration: none;
    font-weight: 600;
}

/* Animation */
@keyframes fcFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 480px) {
    .tvs-fc-wrap { padding: 12px; }
    .tvs-fc-header h1 { font-size: 22px; }
    .tvs-fc-reason-card { padding: 14px; gap: 10px; }
    .tvs-fc-reason-emoji { font-size: 20px; width: 28px; }
    .tvs-fc-submit-btn { width: 100%; padding: 16px; }
}
