/* Survey Page Styles */
.survey-main-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: white;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow-x: hidden;
}

.survey-background-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: backgroundFloat 20s ease-in-out infinite;
}

.survey-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header */
.survey-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 30px;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 25px;
    backdrop-filter: blur(15px);
}

.survey-title {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b35, #ffa500, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.survey-subtitle {
    font-size: 1.4rem;
    color: #ffa500;
    font-weight: 600;
    margin-bottom: 20px;
}

.survey-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Form */
.survey-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.question-group {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.question-group:hover {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.05);
    transform: translateY(-2px);
}

.question-label {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.4;
}

.question-number {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-right: 8px;
}

/* Textarea */
.survey-textarea {
    width: 100%;
    min-height: 120px;
    padding: 20px;
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
}

.survey-textarea:focus {
    outline: none;
    border-color: #ffa500;
    background: rgba(255, 165, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.2);
}

.survey-textarea::placeholder {
    color: #999;
    font-style: italic;
}

/* Radio Groups */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    padding: 15px 20px;
    border: 2px solid rgba(255, 165, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: #e0e0e0;
}

.radio-option:hover {
    border-color: #ffa500;
    background: rgba(255, 165, 0, 0.1);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    min-width: 20px;
    min-height: 20px;
    border: 2px solid #ffa500;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    background: #ffa500;
    border-color: #ff6b35;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.radio-option input[type="radio"]:checked ~ * {
    color: #ffa500;
    font-weight: 600;
}

/* Other Input */
.radio-other {
    align-items: flex-start;
    flex-wrap: wrap;
}

.other-input {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 8px;
    color: white;
    padding: 8px 15px;
    font-size: 0.9rem;
    margin-left: 10px;
    min-width: 150px;
    transition: all 0.3s ease;
}

.other-input:focus {
    outline: none;
    border-color: #ffa500;
    background: rgba(255, 165, 0, 0.1);
}

/* Submit Section */
.submit-section {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    margin-top: 20px;
}

.giveaway-info {
    font-size: 1.2rem;
    color: #ffa500;
    margin-bottom: 15px;
    font-weight: 600;
}

.giveaway-note {
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.5;
    font-style: italic;
}

.survey-submit-btn {
    background: linear-gradient(45deg, #ff6b35, #ffa500);
    color: white;
    padding: 20px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.survey-submit-btn:hover {
    background: linear-gradient(45deg, #ffa500, #ffd700);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.6);
}

.survey-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Thank You Section */
.thank-you-section {
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 107, 53, 0.1);
    border: 3px solid rgba(255, 107, 53, 0.4);
    border-radius: 30px;
    backdrop-filter: blur(20px);
}

.thank-you-animation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 3rem;
}

.thank-you-animation i {
    animation: thankYouFloat 2s ease-in-out infinite;
    color: #ff6b35;
}

.thank-you-animation i:nth-child(2) {
    animation-delay: 0.3s;
    color: #ffa500;
}

.thank-you-animation i:nth-child(3) {
    animation-delay: 0.6s;
    color: #ffd700;
}

.thank-you-title {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 800;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Giveaway Form */
.giveaway-section {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 40px 30px;
    border: 2px solid rgba(255, 165, 0, 0.3);
}

.giveaway-title {
    font-size: 1.4rem;
    color: #ffa500;
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 1.4;
}

.giveaway-inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.input-group {
    width: 100%;
}

.giveaway-input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.giveaway-input:focus {
    outline: none;
    border-color: #ffa500;
    background: rgba(255, 165, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.2);
}

.giveaway-submit-btn {
    background: linear-gradient(45deg, #ffa500, #ffd700);
    color: #000;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.giveaway-submit-btn:hover {
    background: linear-gradient(45deg, #ffd700, #fff176);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}

.skip-section {
    margin-top: 20px;
}

.skip-giveaway {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.skip-giveaway:hover {
    color: #ffa500;
    text-decoration: underline;
}

/* Final Thank You */
.final-thank-you {
    text-align: center;
    padding: 80px 40px;
    background: rgba(34, 197, 94, 0.1);
    border: 3px solid #22c562;
    border-radius: 30px;
}

.success-animation {
    font-size: 5rem;
    color: #22c562;
    margin-bottom: 30px;
    animation: successPulse 2s ease-in-out infinite;
}

.final-title {
    font-size: 2.5rem;
    color: #22c562;
    margin-bottom: 20px;
    font-weight: 800;
}

.final-message {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.home-btn {
    background: linear-gradient(45deg, #22c562, #16a34a);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.home-btn:hover {
    background: linear-gradient(45deg, #16a34a, #15803d);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.4);
}

/* Utility Classes */
.hidden {
    display: none;
}

/* Animations */
@keyframes backgroundFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

@keyframes thankYouFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .survey-content-wrapper {
        padding: 20px 15px;
    }

    .survey-header {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .survey-title {
        font-size: 2.2rem;
    }

    .survey-subtitle {
        font-size: 1.2rem;
    }

    .survey-description {
        font-size: 1rem;
    }

    .question-group {
        padding: 25px 20px;
    }

    .thank-you-section {
        padding: 30px 10px;
    }
}