/* Container Styling */
#ffp-form-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-family: sans-serif;
}

/* Hide steps by default */
.ffp-step {
    display: none;
}

.ffp-step.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Grid for Superstar Cards */
.ffp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

/* Card Styling */
.ffp-card {
    cursor: pointer;
    position: relative;
}

.ffp-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.ffp-card-content {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    transition: all 0.3s ease;
    background: #fff;
}

.ffp-card-content img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 8px;
}

.ffp-card input[type="radio"]:checked + .ffp-card-content {
    border-color: #e02020; /* WWE Red */
    background: #fffafa;
    box-shadow: 0 0 10px rgba(224, 32, 32, 0.2);
}

/* Inputs & Buttons */
input[type="text"], input[type="email"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.ffp-navigation {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

button {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.next-step, #ffp-submit {
    background: #e02020;
    color: white;
}

.next-step:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.prev-step {
    background: #eee;
    color: #333;
}

.ffp-input-group {
    margin-bottom: 15px;
}

.ffp-contact-options {
    margin-bottom: 20px;
}

#ffp-message {
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
}