/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    background: #fff;
    color: #000;
    overflow-x: hidden;
}

#app {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* === VARIABLES === */
:root {
    --yellow: #FFE500;
    --black: #000000;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray: #888888;
    --gray-dark: #333333;
    --red: #FF4136;
    --red-light: #FFEBE9;
}

/* === SCREEN CONTAINER === */
.screen {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 20px;
    padding-bottom: 80px;
    animation: fadeIn 0.3s ease;
}

.screen.no-nav {
    padding-bottom: 20px;
}

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

/* === WELCOME SCREEN === */
.screen-welcome {
    background: var(--yellow);
    justify-content: flex-start;
    padding-top: 60px;
}

.logo-fuxel {
    width: 100px;
    height: 100px;
    margin-bottom: 150px;
}

.logo-fuxel svg {
    width: 100%;
    height: 100%;
}

.welcome-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

/* === FORM SCREENS === */
.screen-form {
    background: var(--white);
    padding-top: 60px;
}

.screen-form.error-mode {
    background: var(--white);
}

.screen-form.error-mode .logo-smile {
    color: var(--red);
}

.screen-form.error-mode .form-title {
    color: var(--red);
}

.screen-form.error-mode .btn-primary {
    background: var(--red);
    color: var(--white);
}

.screen-form.error-mode .btn-primary .arrow {
    color: var(--white);
}

.screen-form.error-mode .form-input {
    border-color: var(--red);
}

.logo-smile {
    width: 80px;
    height: 80px;
    margin-bottom: 40px;
    font-size: 80px;
    line-height: 1;
}

.form-hint {
    font-size: 16px;
    color: var(--gray-dark);
    margin-bottom: 20px;
    line-height: 1.5;
}

.form-hint.error {
    color: var(--red);
}

.form-title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 18px 20px;
    font-size: 18px;
    border: 2px solid var(--black);
    border-radius: 0;
    margin-bottom: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: var(--gray);
}

/* === BUTTONS === */
.btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.1s, opacity 0.2s;
}

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

.btn-primary {
    background: var(--black);
    color: var(--yellow);
}

.btn-primary .arrow {
    font-size: 24px;
    color: var(--yellow);
}

.btn-secondary {
    background: var(--black);
    color: var(--yellow);
    margin-bottom: 10px;
}

.btn-upload {
    margin-top: 20px;
    margin-bottom: 0;
}

.btn-check {
    display: flex;
    align-items: center;
    gap: 15px;
}

.checkbox {
    width: 50px;
    height: 50px;
    border: 2px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
}

/* === DATE PICKER === */
.date-picker {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.date-select {
    flex: 1;
    padding: 18px 15px;
    font-size: 18px;
    border: 2px solid var(--black);
    background: var(--white);
    font-family: inherit;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 40px;
}

/* === PROFILE SCREEN === */
.screen-profile {
    padding-top: 20px;
}

.profile-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.profile-avatar {
    width: 90px;
    height: 90px;
    background: var(--gray-light);
    flex-shrink: 0;
    overflow: hidden;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.profile-stats {
    display: flex;
    gap: 20px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 20px;
    font-weight: 800;
}

.stat-label {
    font-size: 12px;
    color: var(--gray);
}

.profile-bio {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.profile-username {
    font-weight: 700;
    font-size: 14px;
}

.profile-location {
    font-size: 14px;
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.profile-followers {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.followers-avatars {
    display: flex;
}

.followers-avatars .mini-avatar {
    width: 30px;
    height: 30px;
    border: 2px solid var(--white);
    margin-left: -10px;
    background: var(--gray-light);
    overflow: hidden;
}

.followers-avatars .mini-avatar:first-child {
    margin-left: 0;
}

.followers-avatars .mini-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.followers-text {
    font-size: 13px;
}

.followers-text strong {
    font-weight: 700;
}

.profile-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-follow {
    flex: 1;
    padding: 12px 20px;
    background: var(--black);
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.btn-follow.following {
    background: var(--gray-dark);
}

.btn-message {
    width: 50px;
    height: 46px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* === PHOTO GRID === */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 20px;
}

.photo-item {
    aspect-ratio: 1;
    background: var(--gray-light);
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.2s;
}

.photo-item:hover {
    opacity: 0.8;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === UPLOAD SCREEN === */
.screen-upload {
    padding-top: 20px;
}

.upload-title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
}

.folder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.folder-item {
    aspect-ratio: 1;
    border: 2px solid var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    padding: 10px;
}

.folder-item:hover {
    background: var(--gray-light);
}

.folder-icon {
    width: 100%;
    height: 70%;
    background: var(--gray-light);
    margin-bottom: 10px;
}

.folder-name {
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

/* === PHOTO SELECTOR === */
.photo-selector-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-light);
}

.back-btn {
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.photo-selector-title {
    font-weight: 600;
    font-size: 18px;
}

.selectable-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 20px;
}

.selectable-photo {
    aspect-ratio: 1;
    background: var(--gray-light);
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.selectable-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.selectable-photo.selected::after {
    content: attr(data-order);
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

/* === DESCRIPTION SCREEN === */
.description-screen {
    padding-top: 20px;
}

.description-title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-light);
}

.description-textarea {
    width: 100%;
    height: 150px;
    padding: 15px;
    font-size: 16px;
    border: none;
    resize: none;
    font-family: inherit;
    outline: none;
    margin-bottom: 20px;
}

.preview-large {
    width: 100%;
    aspect-ratio: 1;
    background: var(--gray-light);
    margin-bottom: 15px;
    overflow: hidden;
}

.preview-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-thumbnails {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.preview-thumb {
    width: 80px;
    height: 80px;
    background: var(--gray-light);
    border: 2px solid var(--black);
    overflow: hidden;
}

.preview-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === LOCATION INPUT === */
.location-input {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border: 2px solid var(--black);
    margin-bottom: 20px;
}

.location-icon {
    font-size: 24px;
}

.location-input input {
    flex: 1;
    border: none;
    font-size: 18px;
    font-family: inherit;
    outline: none;
}

/* === SEARCH SCREEN === */
.screen-search {
    padding-top: 20px;
}

.search-title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.search-box {
    display: flex;
    align-items: center;
    border: 2px solid var(--black);
    padding: 12px 15px;
    margin-bottom: 30px;
}

.search-box input {
    flex: 1;
    border: none;
    font-size: 18px;
    font-family: inherit;
    outline: none;
}

.search-box button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.search-section-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 5px;
}

.search-result-item:hover {
    background: var(--gray-light);
    margin: 0 -10px;
    padding: 10px;
}

.result-avatar {
    width: 50px;
    height: 50px;
    background: var(--gray-light);
    flex-shrink: 0;
    overflow: hidden;
}

.result-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-info {
    flex: 1;
}

.result-name {
    font-weight: 700;
    font-size: 16px;
}

.result-username {
    font-size: 14px;
    color: var(--gray);
}

.search-section-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gray);
    margin: 15px 0 10px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--gray-light);
}

.search-result-post {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 8px;
}

.search-result-post:hover {
    background: var(--gray-light);
    margin: 0 -10px;
    padding: 12px 10px;
}

.result-post-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--black);
}

.result-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-post-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.result-post-user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.result-post-avatar {
    width: 24px;
    height: 24px;
    object-fit: cover;
}

.result-post-username {
    font-weight: 600;
    font-size: 14px;
}

.result-post-desc {
    font-size: 14px;
    color: var(--black);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.result-post-location {
    font-size: 12px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 4px;
}

.location-icon-small {
    width: 14px;
    height: 14px;
    display: inline-flex;
}

.location-icon-small svg {
    width: 100%;
    height: 100%;
}

.search-term {
    font-weight: 700;
    font-size: 16px;
    padding: 10px 0;
}

/* === EDIT PROFILE SCREEN === */
.screen-edit-profile {
    padding-top: 10px;
}

.edit-profile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.edit-profile-title {
    font-size: 20px;
    font-weight: 700;
}

.edit-avatar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.edit-avatar-preview {
    width: 100px;
    height: 100px;
    background: var(--gray-light);
    overflow: hidden;
}

.edit-avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gray-light);
}

.edit-avatar-actions {
    display: flex;
    gap: 10px;
}

.btn-avatar-upload,
.btn-avatar-url {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--black);
    background: var(--white);
    cursor: pointer;
    font-family: inherit;
}

.btn-avatar-upload:hover,
.btn-avatar-url:hover {
    background: var(--gray-light);
}

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

.edit-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.edit-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-dark);
}

.edit-input {
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid var(--gray-light);
    background: var(--white);
    font-family: inherit;
    transition: border-color 0.2s;
}

.edit-input:focus {
    outline: none;
    border-color: var(--black);
}

.edit-input::placeholder {
    color: var(--gray);
}

.edit-textarea {
    min-height: 100px;
    resize: vertical;
}

.edit-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-cancel {
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    border: none;
    color: var(--gray-dark);
    cursor: pointer;
    font-family: inherit;
}

.btn-cancel:hover {
    color: var(--black);
}

.edit-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.edit-separator span {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-dark);
}

.btn-change-password {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--gray-dark);
    background: var(--white);
    cursor: pointer;
    font-family: inherit;
    margin-top: 10px;
    transition: background 0.2s, border-color 0.2s;
}

.btn-change-password:hover {
    background: var(--gray-light);
    border-color: var(--black);
}

/* === BOTTOM NAVIGATION === */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: var(--white);
    border-top: 1px solid var(--gray-light);
    z-index: 100;
    box-sizing: border-box;
}

.nav-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 450px;
    margin: 0 auto;
    padding: 0 30px;
}

.nav-item {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    background: none;
    transition: transform 0.2s;
    padding: 0;
}

.nav-item:active {
    transform: scale(0.9);
}

.nav-item svg {
    width: 32px;
    height: 32px;
}

.nav-item.logo-nav {
    width: 32px;
    height: 32px;
    background: none;
    padding: 0;
}

.nav-item.logo-nav img,
.nav-item.logo-nav svg {
    width: 32px;
    height: 32px;
    object-fit: cover;
}

.profile-icon {
    display: block;
    width: 32px;
    height: 32px;
    background: var(--black);
}

/* === FEED SCREEN === */
.screen-feed {
    padding-top: 20px;
}

.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.feed-logo {
    width: 40px;
    height: 40px;
}

.feed-logo svg {
    width: 100%;
    height: 100%;
}

.feed-post {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--gray-light);
    padding-bottom: 20px;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.post-avatar {
    width: 50px;
    height: 50px;
    background: var(--gray-light);
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}

.post-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-user-info {
    flex: 1;
}

.post-username {
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}

.post-displayname {
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    line-height: 1.2;
}

.post-username-small {
    font-size: 14px;
    color: var(--gray);
    font-weight: 400;
}

.post-location {
    font-size: 12px;
    color: var(--gray);
}

.post-time {
    font-size: 12px;
    color: var(--gray);
}

.post-image {
    width: 100%;
    aspect-ratio: 1;
    background: var(--gray-light);
    margin-bottom: 15px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.post-actions-left {
    display: flex;
    gap: 16px;
}

.post-actions-right {
    display: flex;
}

.post-action {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-action svg {
    width: 26px;
    height: 26px;
}

.post-action:active {
    transform: scale(1.2);
}

.post-action.liked {
    color: var(--yellow);
}

.post-action.liked svg {
    fill: var(--yellow);
    stroke: var(--yellow);
}

.post-action.bookmarked {
    color: var(--black);
}

.post-action.bookmarked svg {
    fill: var(--black);
}

.post-likes-section {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.likes-avatars {
    display: flex;
}

.like-avatar {
    width: 20px;
    height: 20px;
    background: var(--gray-light);
    border: 2px solid var(--white);
    margin-left: -6px;
    overflow: hidden;
}

.like-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.like-avatar:first-child {
    margin-left: 0;
}

.likes-count {
    font-weight: 700;
    font-size: 14px;
    color: var(--black);
}

.post-likes {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
}

.post-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 6px;
    font-weight: 400;
    color: var(--black);
}

.post-desc-username {
    font-weight: 700;
    cursor: pointer;
}

.post-desc-text {
    display: inline;
    font-weight: 400;
}

.post-more {
    color: var(--gray);
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
}

.post-more:hover {
    text-decoration: underline;
}

.post-date {
    font-size: 11px;
    color: var(--gray);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.post-description strong {
    font-weight: 700;
}

.post-comments-link {
    font-size: 13px;
    color: var(--gray);
    margin-top: 6px;
    cursor: pointer;
    font-weight: 400;
}

/* === BACK HEADER === */
.back-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.back-header .back-btn {
    font-size: 28px;
}

/* === PUBLISH PROMPT === */
.publish-prompt {
    background: var(--white);
    padding: 20px;
    margin-top: 20px;
}

.publish-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* === RESPONSIVE === */
@media (min-width: 480px) {
    #app {
        max-width: 480px;
        margin: 0 auto;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }
}

/* === SETTINGS SCREEN === */
.screen-settings {
    padding-top: 20px;
}

.settings-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 30px;
}

.settings-section {
    margin-bottom: 30px;
}

.settings-section-title {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.settings-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-light);
    cursor: pointer;
}

.settings-item:hover {
    background: var(--gray-light);
    margin: 0 -20px;
    padding: 15px 20px;
}

.settings-item-label {
    font-size: 16px;
}

.settings-item-arrow {
    font-size: 20px;
    color: var(--gray);
}

.btn-logout {
    width: 100%;
    padding: 15px;
    background: var(--white);
    border: 2px solid var(--red);
    color: var(--red);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}

/* === HIDDEN === */
.hidden {
    display: none !important;
}

/* === FILE INPUT === */
.file-input-hidden {
    display: none;
}

/* === CODE INPUT === */
.code-inputs {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    max-width: 100%;
}

.code-input {
    width: calc(25% - 6px);
    min-width: 0;
    aspect-ratio: 1.2;
    max-height: 70px;
    font-size: 28px;
    font-weight: 700;
    text-align: left;
    padding: 10px 15px;
    border: 2px solid var(--black);
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
}

.code-input:focus {
    border-color: var(--gray);
}

/* === TOAST NOTIFICATION === */
.toast {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    z-index: 1000;
    animation: toastIn 0.3s ease;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* === MODAL === */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    padding: 20px;
}

.modal {
    background: var(--white);
    width: 100%;
    max-width: 400px;
    padding: 30px;
}

.modal-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.modal-text {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    gap: 10px;
}

.modal-actions .btn {
    flex: 1;
}

.btn-cancel {
    background: var(--gray-light);
    color: var(--black);
}
