@import url('https://fonts.cdnfonts.com/css/gilroy-bold');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gilroy-Bold', sans-serif;
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
    padding: 20px;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid #ffffff;
}

.header h1 {
    font-size: 3rem;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
    color: #888888;
    text-transform: uppercase;
}

.section {
    margin-bottom: 60px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.section h2 {
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: #ffffff;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 0.85rem;
    color: #888888;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.question {
    margin-bottom: 35px;
}

.question label {
    display: block;
    font-size: 1rem;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.likert {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.likert-option {
    flex: 1;
    text-align: center;
}

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

.likert-option span {
    display: block;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.likert-option span:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.likert-option input[type="radio"]:checked + span {
    background: #ffffff !important;
    color: #000000 !important;
    border-color: #ffffff !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3) !important;
}

.likert-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #888888;
    letter-spacing: 1px;
    margin-top: 5px;
}

.question.open-ended textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #ffffff;
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 0.95rem;
    resize: vertical;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.question.open-ended textarea:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.question.open-ended textarea::placeholder {
    color: #555555;
}

.submit-btn {
    width: 100%;
    padding: 20px;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 4px;
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 40px;
}

.submit-btn:hover {
    background: #000000;
    color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.submit-btn:active {
    transform: scale(0.98);
}

.success-message {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.success-message.show {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.success-content {
    text-align: center;
    padding: 60px 80px;
    background: rgba(255, 255, 255, 0.08);
    border: 3px solid #ffffff;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
    animation: slideUp 0.4s ease;
}

.success-content h2 {
    font-size: 3.5rem;
    letter-spacing: 5px;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.success-content p {
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .section {
        padding: 20px;
    }
    
    .likert {
        gap: 5px;
    }
    
    .likert-option span {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .likert-labels {
        font-size: 0.65rem;
    }
}
