/* Reset căn bản */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5; /* Màu nền phía ngoài desktop */
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

/* Khung giả lập Mobile */
.device-wrapper {
    width: 100%;
    max-width: 420px; /* Độ rộng tiêu chuẩn mobile */
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* Header màu tím đặc trưng */
.wallet-header {
    background-color: #6f4090; /* Màu tím Pi Network */
    color: white;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wallet-title-group {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 500;
}

.pi-logo-small {
    background-color: orange;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

/* Nội dung chính */
.wallet-content {
    padding: 40px 24px;
    text-align: center;
}

.main-heading {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
}

/* Ô nhập liệu Passphrase */
.input-container {
    margin-bottom: 25px;
}

.passphrase-input {
    width: 100%;
    height: 160px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    font-size: 16px;
    resize: none;
    outline: none;
}

.passphrase-input:focus {
    border-color: #6f4090;
}

/* Nhóm nút bấm */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.btn {
    width: 100%;
    padding: 14px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.2s;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #6f4090;
    color: #6f4090;
}

.btn-filled {
    background-color: #6f4090;
    border: none;
    color: white;
}

.btn:active {
    opacity: 0.8;
}

/* Phần văn bản thông báo */
.notice-section {
    text-align: left;
    color: #333;
    font-size: 15px;
    line-height: 1.5;
}

.notice-section p {
    margin-bottom: 20px;
}

/* Responsive cho thiết bị nhỏ hơn */
@media (max-width: 420px) {
    .device-wrapper {
        box-shadow: none;
    }
}