/* --- Değişkenler ve Temel Ayarlar --- */
:root {
    --bg-color: #0a0a0a; /* Ekran görüntüsündeki gibi çok koyu mat siyah */
    --text-color: #e5e5e5; /* Saf beyaz değil, hafif kırık beyaz */
    --text-muted: #6b7280; /* Koyu gri, alt metinler için */
    --accent-color: #de5ce8; /* Görseldeki neon pembe/mor */
    --border-color: #262626;
}

/* --- Light Mode (Göz Yormayan Beyaz Tonu) --- */
[data-theme="light"] {
    --bg-color: #e5e3de; /* Parlaklığı alınmış daha mat / puslu bir krem-gri */
    --text-color: #1c1c1c; 
    --text-muted: #6a6a6a;
    --accent-color: #ba19c5; /* Rengi biraz daha koyulttuk ki kontrast dengelensin */
    --border-color: #cbc8c0; /* Çerçeveler için uygun daha koyu mat ton */
}

/* --- Theme Toggle Switch --- */
.theme-toggle {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
    padding: 0;
    vertical-align: middle;
}

.theme-toggle:hover {
    color: var(--accent-color);
    transform: rotate(15deg);
}

.theme-toggle .moon-icon {
    display: none;
}
.theme-toggle .sun-icon {
    display: inline;
}

[data-theme="light"] .theme-toggle .moon-icon {
    display: inline;
}
[data-theme="light"] .theme-toggle .sun-icon {
    display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Fira Code', monospace; /* Tüm site için Monospace font */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Navigasyon --- */
.navbar {
    padding: 40px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-color); /* Logo pembe */
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links, .lang-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.lang-links {
    gap: 15px;
}

.nav-divider {
    color: var(--border-color);
    font-size: 0.85rem;
}

.nav-links a, .lang-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px; /* Harfler arası boşluk */
}

.nav-links a:hover, .lang-links a:hover,
.nav-links a.active, .lang-links a.active {
    color: var(--accent-color);
}

/* --- Ana İçerik ve Hero --- */
main {
    flex: 1;
    padding: 60px 0;
}

.top-tag {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.35;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}



.description {
    font-size: 1rem;
    max-width: 650px;
    margin-bottom: 50px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* --- Butonlar --- */
.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    display: inline-block;
    cursor: pointer;
}

/* Pembe çerçeveli ana buton */
.btn-primary {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
}

.btn-primary:hover {
    background-color: rgba(222, 92, 232, 0.1);
}

/* Gri çerçeveli ikinci buton */
.btn-secondary {
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    background: transparent;
}

.btn-secondary:hover {
    border-color: var(--text-color);
    color: var(--text-color);
}

/* --- ŞU AN --- */
.current-status {
    margin-top: 100px;
}

.bottom-tag {
    color: var(--accent-color);
    font-size: 0.85rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.status-card {
    border: 1px solid var(--border-color);
    padding: 30px;
    display: flex;
    gap: 15px;
    max-width: 800px;
}

.status-arrow {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 2px;
}

.status-content h3 {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.status-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* --- Terminal Icon --- */
.terminal-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: var(--bg-color);
}

.terminal-icon:hover {
    border-color: var(--text-color);
    color: var(--text-color);
}

/* --- Blog Sayfası --- */
.blog-header {
    margin-bottom: 60px;
}

.blog-header h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-card {
    border: 1px solid var(--border-color);
    padding: 40px;
    transition: border-color 0.2s ease;
    position: relative;
}

.blog-card:hover {
    border-color: rgba(222, 92, 232, 0.3);
}

.blog-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.badge {
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.badge-pink {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.blog-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--text-color);
}

/* Kartın tamamını tıklanabilir yapmak için hile */
.blog-card h3 a::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.blog-card h3 a:hover {
    color: var(--accent-color);
}

.blog-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 800px;
}

.blog-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.tag {
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-link {
    color: var(--accent-color);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* --- Blog Detay Sayfası --- */
.blog-detail-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    font-size: 0.85rem;
}

.back-link {
    color: var(--text-muted);
    letter-spacing: 1px;
}

.back-link:hover {
    color: var(--text-color);
}

.lang-links-inline {
    color: var(--text-muted);
    letter-spacing: 1px;
}

.lang-links-inline a {
    color: var(--text-muted);
}

.lang-links-inline a.active {
    color: var(--accent-color);
}

.lang-links-inline .divider {
    margin: 0 10px;
    color: var(--border-color);
}

.blog-detail-content {
    max-width: 800px;
}

.blog-detail-content h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.blog-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 60px;
}

.markdown-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.markdown-body p {
    margin-bottom: 25px;
    color: var(--text-muted);
}

.markdown-body blockquote {
    border-left: 2px solid var(--text-muted);
    padding-left: 20px;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.markdown-body ul {
    list-style: none;
    margin-bottom: 30px;
}

.markdown-body ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.markdown-body ul li::before {
    content: ">";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.markdown-body h2, .markdown-body h3 {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 50px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- Projeler Sayfası --- */
.page-header {
    margin-bottom: 80px;
}

.page-header h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--text-color);
}

.section-tag {
    color: var(--accent-color);
    font-size: 0.85rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.project-card {
    border: 1px solid var(--border-color);
    padding: 40px;
    transition: border-color 0.2s ease;
    position: relative;
}

.project-card:hover {
    border-color: rgba(222, 92, 232, 0.3); /* Subtle pink hover */
}

.project-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.project-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.3;
}

.project-card h3 a {
    color: var(--text-color);
}

/* Kartın tamamını tıklanabilir yapmak için */
.project-card h3 a::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.project-card h3 a:hover {
    color: var(--accent-color);
}

.project-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 800px;
}

.project-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.project-link {
    color: var(--accent-color);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* --- Proje Detay Sayfası --- */
.project-detail-content {
    max-width: 800px;
}

.project-detail-header {
    margin-bottom: 50px;
}

.project-detail-header h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: -1px;
    color: var(--text-color);
}

.project-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.standard-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.standard-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* --- Hakkımda Sayfası --- */
.about-header {
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-header-text {
    flex: 1;
}

.profile-image-container {
    flex-shrink: 0;
}

.profile-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.02);
}

@media (max-width: 640px) {
    .about-header {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 24px;
    }
    .profile-image {
        width: 130px;
        height: 130px;
    }
}

.about-header h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--text-color);
}

.about-section {
    margin-bottom: 80px;
}

.bio-content {
    max-width: 800px;
}

.bio-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Deneyim & Eğitim Zaman Çizelgesi */
.timeline-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 800px;
}

.timeline-item {
    display: flex;
    gap: 40px;
}

.timeline-date {
    flex: 0 0 120px;
    text-align: right;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 8px;
}

.company-name {
    color: var(--accent-color);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.timeline-bullets {
    list-style: none;
    margin-bottom: 20px;
}

.timeline-bullets li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.timeline-bullets li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

.timeline-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.8rem;
}

/* Yetkinlikler */
.skills-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
}

.skill-category {
    display: flex;
    gap: 40px;
}

.skill-name {
    flex: 0 0 120px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 2.2;
}

.skill-tags {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Diller */
.languages-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.language-card {
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.lang-name {
    color: var(--text-color);
    font-size: 0.95rem;
}

.lang-level {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* --- Footer --- */
.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 100px;
    padding-top: 40px;
    padding-bottom: 50px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-top: 1px solid var(--border-color);
}

.footer-left {
    color: var(--text-muted);
}

.footer-right {
    color: var(--accent-color);
}

/* --- İletişim Sayfası --- */
.contact-header {
    margin-bottom: 60px;
}

.contact-links-list {
    display: flex;
    flex-direction: column;
    max-width: 600px;
}

.contact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    border: 1px solid var(--border-color);
    margin-bottom: -1px; /* Borders collapse */
    transition: all 0.2s ease;
    text-decoration: none;
}

.contact-row:hover {
    border-color: rgba(222, 92, 232, 0.5);
    z-index: 1; /* Bring border above collapsed adjacent borders */
}

.contact-platform {
    flex: 0 0 120px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.contact-text {
    flex: 1;
    color: var(--text-color);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.contact-row:hover .contact-text {
    color: var(--accent-color);
}

.contact-arrow {
    color: var(--text-muted);
    font-size: 1rem;
    transition: color 0.2s ease;
}

.contact-row:hover .contact-arrow {
    color: var(--accent-color);
}

/* --- Ana Sayfa Eklentileri --- */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    max-width: 800px;
}

.section-header-flex .section-tag {
    margin-bottom: 0;
}

.view-all-link {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.view-all-link:hover {
    color: var(--text-color);
}

.featured-project-section {
    margin-top: 80px;
}

.featured-card {
    max-width: 800px;
}

.stack-section {
    margin-top: 80px;
    max-width: 800px;
}

.stack-category-block {
    margin-bottom: 40px;
}

.stack-category-title {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

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

.stack-item {
    border: 1px solid var(--border-color);
    padding: 15px 20px;
    color: var(--text-color);
    font-size: 0.9rem;
    transition: border-color 0.2s ease;
}

.stack-item:hover {
    border-color: rgba(222, 92, 232, 0.3);
}

@media (max-width: 768px) {
    .stack-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .stack-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Dil Seçici Butonları --- */
.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: inherit;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0;
}

.lang-btn:hover {
    color: var(--text-color);
}

.lang-btn.active {
    color: var(--accent-color);
}

/* --- Chatbot Penceresi --- */
.chatbot-window {
    position: fixed;
    bottom: 90px;
    right: 40px;
    width: 380px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    font-family: 'Fira Code', monospace;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.chatbot-window.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.chatbot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.chatbot-title {
    color: var(--text-color);
    font-weight: 500;
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s;
}

.chatbot-close:hover {
    color: var(--text-color);
}

.chatbot-body {
    padding: 20px;
    min-height: 250px;
}

.chatbot-message {
    border: 1px solid var(--border-color);
    padding: 20px;
    color: var(--text-color);
    font-size: 0.85rem;
    line-height: 1.6;
}

.chatbot-footer {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
}

.chatbot-footer input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
    outline: none;
}

.chatbot-footer input::placeholder {
    color: var(--text-muted);
}

.enter-icon {
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* ── Contact Links ── */
.contact-links-section {
    margin-bottom: 60px;
}

.contact-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 16px;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-primary);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.contact-row:hover {
    color: var(--accent-color);
    padding-left: 24px;
}

.contact-platform {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 140px;
}

.contact-text {
    flex: 1;
    font-size: 1rem;
}

.contact-arrow {
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: color 0.2s, transform 0.2s;
}

.contact-row:hover .contact-arrow {
    color: var(--accent-color);
    transform: translateX(4px);
}

/* ── Contact Form ── */
.contact-form-section {
    margin-top: 20px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.contact-form {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-group label {
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s;
}

.form-group.focused label {
    color: var(--accent-color);
}

.contact-form input,
.contact-form textarea {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    color: var(--text-primary);
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    resize: none;
    width: 100%;
    box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 1px var(--accent-color);
}

.form-submit {
    display: flex;
    justify-content: flex-start;
    padding-top: 8px;
}

.btn-send {
    min-width: 180px;
    transition: opacity 0.2s, transform 0.15s;
}

.btn-send:hover {
    transform: translateY(-1px);
}

/* ── Toast Popup ── */
.toast {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    border-radius: 2px;
    font-family: 'Fira Code', monospace;
    font-size: 0.83rem;
    border-left: 2px solid;
    animation: toastIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    max-width: 300px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.toast-success {
    background: #081209;
    border-color: #3ecf6a;
    color: #3ecf6a;
}

.toast-error {
    background: #120808;
    border-color: #ff5050;
    color: #ff5050;
}

.toast-icon {
    font-size: 0.9rem;
    font-weight: bold;
    flex-shrink: 0;
    opacity: 0.9;
}

.toast-hide {
    animation: toastOut 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

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

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

