* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.5;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: transparent;
}

.back-button {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-button::before {
    content: "←";
    font-size: 26px;
    color: #fff;
}

.menu-button {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-button::before {
    content: "⋮";
    font-size: 24px;
    color: #fff;
}

.container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    padding-bottom: 120px;
}

.top-banner {
    width: 100%;
    display: block;
    margin: 0;
    border-radius: 0;
    height: auto;
}
.banner-wrapper {
    position: relative;
}
.banner-logo {
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 10px;
}
.full-width-image {
    width: 100vw;
    max-width: 100vw;
    display: block;
    height: auto;
    margin-left: calc(50% - 50vw);
}

.instruction {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    font-size: 19px;
    font-weight: bold;
    color: #333;
}

.info-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #e0e0e0;
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #666;
}

.question {
    margin-bottom: 30px;
}

.question-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.option:last-child {
    border-bottom: none;
}

.option-text {
    font-size: 15px;
    color: #333;
    flex: 1;
}

.radio-button {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    position: relative;
    flex-shrink: 0;
}

.radio-button.selected {
    border-color: #ff4757;
    background-color: #ff4757;
}

.radio-button.selected::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
}

.option:focus {
    outline: none;
}

.option:focus .radio-button {
    outline: none;
}

.option {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.privacy-section {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid #e0e0e0;
    border-radius: 3px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
}

.checkbox.checked {
    background-color: #ff4757;
    border-color: #ff4757;
}

.checkbox.checked::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.privacy-text {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.privacy-link {
    color: #007aff;
    text-decoration: none;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: #e0e0e0;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #999;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submit-button:hover {
    background-color: #d0d0d0;
}

.submit-button.active {
    background-color: #ff4757;
    color: white;
}

.submit-button.active:hover {
    background-color: #e63946;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-radius: 12px 12px 0 0;
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
    z-index: 1001;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.modal.show {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    text-align: center;
    flex: 1;
}

.close-button {
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.modal-content {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

.modal-buttons {
    display: flex;
    gap: 8px;
}

.modal-button {
    flex: 1;
    padding: 14px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-button.cancel {
    background-color: #f0f0f0;
    color: #666;
}

.modal-button.cancel:hover {
    background-color: #e0e0e0;
}

.modal-button.confirm {
    background-color: #ff4757;
    color: white;
}

.modal-button.confirm:hover {
    background-color: #e63946;
}

.menu-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-radius: 12px 12px 0 0;
    padding: 20px;
    max-height: 40vh;
    z-index: 1001;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.menu-modal.show {
    transform: translateY(0);
}

.menu-modal-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
}

.menu-close-button {
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.menu-action-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.2s ease;
    min-width: 80px;
}

.menu-action-button:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
}

.menu-action-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #666;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.menu-action-text {
    font-size: 14px;
    color: #666;
    text-align: center;
    font-weight: 500;
}

.report-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #666;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.retry-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #666;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.report-icon svg,
.retry-icon svg {
    width: 28px;
    height: 28px;
}

.menu-action-button:hover .report-icon,
.menu-action-button:hover .retry-icon {
    transform: scale(1.05);
    transition: transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media (min-width: 1024px) {
    .banner-wrapper {
        max-width: 1200px;
        margin: 0 auto;
    }
    .full-width-image {
        width: min(100vw, 1200px);
        max-width: none;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 0;
        margin-right: 0;
    }
}
