/* Firestick Lead Capture - Frontend Styles */

.fslc-wrapper {
    position: relative;
}

/* Content Area */
.fslc-content {
    display: none;
}

.fslc-content.fslc-unlocked {
    display: block;
    animation: fslcFadeIn 0.5s ease;
}

/* Locker Overlay */
.fslc-locker {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.fslc-locker-content {
    max-width: 380px;
    margin: 0 auto;
}

/* Icon */
.fslc-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 5px 20px rgba(238, 90, 36, 0.4);
}

.fslc-icon svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

/* Title & Description */
.fslc-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px;
    line-height: 1.3;
}

.fslc-description {
    color: #a0a0a0;
    font-size: 16px;
    margin: 0 0 30px;
    line-height: 1.6;
}

/* Form */
.fslc-form {
    text-align: left;
}

.fslc-form-group {
    margin-bottom: 15px;
}

.fslc-input {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.fslc-input::placeholder {
    color: #888;
}

.fslc-input:focus {
    outline: none;
    border-color: #ff6b6b;
    background: rgba(255, 255, 255, 0.1);
}

/* Button */
.fslc-button {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.fslc-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(238, 90, 36, 0.4);
}

.fslc-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Spinner */
.fslc-spinner {
    width: 20px;
    height: 20px;
    animation: fslcRotate 1s linear infinite;
}

.fslc-spinner .path {
    stroke: #fff;
    stroke-linecap: round;
    animation: fslcDash 1.5s ease-in-out infinite;
}

@keyframes fslcRotate {
    100% { transform: rotate(360deg); }
}

@keyframes fslcDash {
    0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
    50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
    100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}

/* Privacy Text */
.fslc-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #777;
    font-size: 12px;
    margin: 20px 0 0;
}

.fslc-privacy svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Message */
.fslc-message {
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}

.fslc-message.fslc-success {
    background: rgba(39, 174, 96, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.fslc-message.fslc-error {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* Fade In Animation */
@keyframes fslcFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
    .fslc-locker {
        padding: 30px 20px;
        margin: 0 -10px;
        border-radius: 0;
    }
    
    .fslc-title {
        font-size: 20px;
    }
    
    .fslc-description {
        font-size: 14px;
    }
}
