/* ========= ROOT & GLOBAL RESET ========= */
:root {
    --bg: #111;
    --card: #1e1e1e;
    --bar: #1a1a1a;
    --text: #e5e5e5;
    --text-secondary: #aaa;
    --accent: #00f3ff;
    --accent-soft: #00f3ff33;
    --border: #333;
    --focus-ring: #00f3ff22;
    --danger: #cc4444;
    --danger-soft: #441a1a;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--border) var(--bg);
}
*::-webkit-scrollbar { width: 6px; }
*::-webkit-scrollbar-track { background: var(--bg); }
*::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
}

.hidden {
    display: none !important;
}

/* ========= BOOT SCREEN & OVERLAYS ========= */
.boot-screen {
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    cursor: pointer;
    transition: opacity 0.5s ease;
    text-align: center;
    padding: 1rem;
}
.boot-imagery {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

#timer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(2px);
}
.timer-box {
    background: var(--card);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--accent);
    box-shadow: 0 0 30px var(--accent-soft);
    max-width: 90%;
    width: 400px;
}
.timer-box h3 { color: var(--accent); margin-bottom: 1rem; font-size: 1.5rem; }
.timer-box p { margin-bottom: 1.5rem; font-size: 1.1rem; }
.timer-box .timer {
    font-size: 3rem;
    font-weight: bold;
    font-variant-numeric: tabular-nums;
}
.timer-box button {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.timer-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,243,255,0.3);
}

/* ========= APP LAYOUT (MOBILE-FIRST) ========= */
.app-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
}
.main-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.kanban-board {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* ========= STRATEGY BAR ========= */
#strategy-bar {
    padding: 1rem;
    background: var(--bar);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}
.strategy-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}
.strategy-key { font-weight: 600; color: var(--text-secondary); }
.strategy-value {
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}
.strategy-value:hover { background: var(--accent-soft); }
.strategy-input {
    width: 100%;
    padding: 0.4rem 0.6rem;
    background: #2a2a2a;
    border: 1px solid var(--accent);
    border-radius: 6px;
    color: var(--text);
    font-size: 0.9rem;
    outline: none;
    box-shadow: 0 0 0 3px var(--focus-ring);
}
.toggle-axe {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: auto;
}
.toggle-axe:hover { transform: translateY(-1px); box-shadow: 0 2px 8px rgba(0,243,255,0.3); }

/* ========= MILESTONE PROGRESS ========= */
#milestone-progress { width: 100%; font-size: 0.8rem; }
.progress-bar {
    width: 100%;
    height: 8px;
    background: #2a2a2a;
    border-radius: 4px;
    overflow: hidden;
    margin: 0.5rem 0;
}
.progress { height: 100%; background: var(--accent); transition: width 0.3s ease; }
.progress-text { text-align: center; color: var(--text-secondary); }

/* ========= INBOX & COLUMNS ========= */
.inbox-section, .column {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}
.inbox-section h2, .column h3 {
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.column[data-status="doing"] {
    border-color: var(--accent);
    box-shadow: 0 0 12px 2px var(--accent-soft);
    animation: pulseDoing 2s ease-in-out infinite;
}
@keyframes pulseDoing {
    0%, 100% { box-shadow: 0 0 12px 2px var(--accent-soft); }
    50% { box-shadow: 0 0 24px 6px var(--accent-soft); }
}

#new-task-input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
    outline: none;
    transition: all 0.2s ease;
    margin-bottom: 1rem;
}
#new-task-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--focus-ring); }
#new-task-input::placeholder { color: #999; }

.task-list, .inbox-list {
    min-height: 150px;
    flex-grow: 1;
}

/* ========= TASK ITEM ========= */
.task-item {
    background: #2a2a2a;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    cursor: grab;
    transition: all 0.2s ease;
    animation: slideIn 0.3s ease-out;
}
.task-item:hover { border-color: var(--accent); }
.task-item:active { cursor: grabbing; }

.task-content { padding: 0.8rem 1rem; display: flex; align-items: center; gap: 0.5rem; }
.task-text { flex-grow: 1; word-break: break-word; line-height: 1.5; }
.edit-form { flex-grow: 1; }
.edit-input {
    width: 100%;
    background: #333;
    border: 1px solid var(--accent);
    color: var(--text);
    border-radius: 4px;
    padding: 0.25rem;
    font-size: inherit;
    outline: none;
}

.task-actions {
    display: flex;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.task-item:hover .task-actions { opacity: 1; }
.action-btn {
    background: #444;
    color: var(--text);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    transition: all 0.2s;
}
.action-btn:hover { transform: translateY(-1px); }
.action-btn[data-action="add-child"] { background: var(--accent); color: #000; }
.action-btn[data-action="delete-task"] { background: var(--danger); color: white; }
.action-btn[data-action="delete-task"].confirm-delete { box-shadow: 0 0 8px var(--danger); }

/* ========= NESTED TASKS ========= */
.collapse-btn {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-size: 0.8rem;
    padding: 0.2rem 0.4rem;
    margin-right: 0.5rem;
}
.task-children {
    border-left: 2px solid var(--border);
    margin-left: 1rem;
    padding-left: 0.75rem;
    list-style: none;
}
.task-children .task-item { background: #2f2f2f; }
.task-children .task-children { border-left-color: #444; }
.task-children .task-children .task-children { border-left-style: dotted; }

/* ========= DRAG & DROP & DELETE ZONE ========= */
.is-dragging {
    opacity: 0.5 !important;
    background: #4a4a4a !important;
    /* merged style from .task-item.is-dragging & .is-dragging */
}
.drag-over, .column.drag-over, .inbox-list.drag-over {
    background-color: rgba(0,212,255,0.1) !important;
    border: 2px dashed rgba(0,212,255,0.5) !important;
}
.drop-target, .task-item.drop-target {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0,212,255,0.7);
    box-shadow: 0 0 0 2px var(--accent);
    /* both original drop-target styles merged */
}
.delete-zone {
    text-align: center;
    padding: 1rem;
    background: var(--danger-soft);
    border: 2px dashed var(--danger);
    border-radius: 12px;
    color: var(--danger);
    transition: all 0.2s ease;
}
.delete-zone.active { background: var(--danger); color: white; transform: scale(1.02); }

@keyframes slideIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ========= CONFIRM DELETE ========= */
.confirm-delete,
.action-btn[data-action="delete-task"].confirm-delete {
    background-color: #ff4d4d !important;
    color: white !important;
}
.confirm-delete::before {
    content: "Yakin? Klik lagi! ";
}

/* ========= MOTIVATIONAL POPUP ========= */
.motivational-popup {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,212,255,0.95);
    color: #000;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 10000;
    pointer-events: none;
    animation: fadeOut 2.5s forwards;
}
@keyframes fadeOut {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    80% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(-20px); }
}

/* ========= SPRINT TIMER WIDGET ========= */
.sprint-timer-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(20,20,30,0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px;
    z-index: 9998;
    color: white;
    text-align: center;
    width: 300px;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.37);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(200%);
    opacity: 0;
}
.sprint-timer-widget.visible {
    transform: translateY(0);
    opacity: 1;
}
#timer-widget-task-name {
    font-size: 1rem;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#timer-widget-display {
    font-size: 3rem;
    font-weight: bold;
    color: #00d4ff;
    margin-bottom: 15px;
}
#timer-widget-controls button { margin: 0 5px; }

/* ========= SPRINT DIALOG (MODAL) ========= */
.sprint-dialog-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sprint-dialog-content {
    background: rgba(30,30,40,0.95);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* ========= DESKTOP & TABLET LAYOUT ========= */
@media (min-width: 768px) {
    .kanban-board { grid-template-columns: repeat(3, 1fr); }
    .strategy-item { flex-direction: row; align-items: center; gap: 0.5rem; }
    .timer-box .timer { font-size: 5rem; }
}
@media (min-width: 1024px) {
    body { font-size: 16px; }
    .app-container { padding: 1.5rem; }
    .main-content { grid-template-columns: 320px 1fr; }
    .inbox-section { max-height: calc(100vh - 5rem); }
    #milestone-progress { width: 250px; margin-right: 1rem; }
    .strategy-bar { flex-wrap: nowrap; }
}    display: none !important;
}

/* ========= BOOT SCREEN & OVERLAYS ========= */
.boot-screen {
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    cursor: pointer;
    transition: opacity 0.5s ease;
    text-align: center;
    padding: 1rem;
}

.boot-imagery {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

#timer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(2px);
}
.timer-box {
    background: var(--card);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--accent);
    box-shadow: 0 0 30px var(--accent-soft);
    max-width: 90%;
    width: 400px;
}
.timer-box h3 { color: var(--accent); margin-bottom: 1rem; font-size: 1.5rem; }
.timer-box p { margin-bottom: 1.5rem; font-size: 1.1rem; }
.timer-box .timer { font-size: 3rem; font-weight: bold; font-variant-numeric: tabular-nums; }
.timer-box button {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.timer-box button:hover { transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,243,255,0.3); }

/* ========= APP LAYOUT (MOBILE-FIRST) ========= */
.app-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.kanban-board {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* ========= STRATEGY BAR ========= */
#strategy-bar {
    padding: 1rem;
    background: var(--bar);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}
.strategy-item { display: flex; flex-direction: column; align-items: flex-start; gap: 0.25rem; }
.strategy-key { font-weight: 600; color: var(--text-secondary); }
.strategy-value {
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}
.strategy-value:hover { background: var(--accent-soft); }
.strategy-input {
    width: 100%;
    padding: 0.4rem 0.6rem;
    background: #2a2a2a;
    border: 1px solid var(--accent);
    border-radius: 6px;
    color: var(--text);
    font-size: 0.9rem;
    outline: none;
    box-shadow: 0 0 0 3px var(--focus-ring);
}
.toggle-axe {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: auto;
}
.toggle-axe:hover { transform: translateY(-1px); box-shadow: 0 2px 8px rgba(0,243,255,0.3); }

/* ========= MILESTONE PROGRESS ========= */
#milestone-progress { width: 100%; font-size: 0.8rem; }
.progress-bar { width: 100%; height: 8px; background: #2a2a2a; border-radius: 4px; overflow: hidden; margin: 0.5rem 0; }
.progress { height: 100%; background: var(--accent); transition: width 0.3s ease; }
.progress-text { text-align: center; color: var(--text-secondary); }

/* ========= INBOX & COLUMNS ========= */
.inbox-section, .column {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}
.inbox-section h2, .column h3 {
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.column[data-status="doing"] {
    border-color: var(--accent);
    box-shadow: 0 0 12px 2px var(--accent-soft);
    animation: pulseDoing 2s ease-in-out infinite;
}
@keyframes pulseDoing {
    0%, 100% { box-shadow: 0 0 12px 2px var(--accent-soft); }
    50% { box-shadow: 0 0 24px 6px var(--accent-soft); }
}

#new-task-input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
    outline: none;
    transition: all 0.2s ease;
    margin-bottom: 1rem;
}
#new-task-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--focus-ring); }
#new-task-input::placeholder { color: #999; }

.task-list, .inbox-list {
    min-height: 150px;
    flex-grow: 1;
}

/* ========= TASK ITEM ========= */
.task-item {
    background: #2a2a2a;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    cursor: grab;
    transition: all 0.2s ease;
    animation: slideIn 0.3s ease-out;
}
.task-item:hover { border-color: var(--accent); }
.task-item:active { cursor: grabbing; }

.task-content { padding: 0.8rem 1rem; display: flex; align-items: center; gap: 0.5rem; }
.task-text { flex-grow: 1; word-break: break-word; line-height: 1.5; }
.edit-form { flex-grow: 1; }
.edit-input { width: 100%; background: #333; border: 1px solid var(--accent); color: var(--text); border-radius: 4px; padding: 0.25rem; font-size: inherit; outline: none; }

.task-actions { display: flex; opacity: 0; transition: opacity 0.2s ease; }
.task-item:hover .task-actions { opacity: 1; }
.action-btn { background: #444; color: var(--text); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 6px; transition: all 0.2s ease; }
.action-btn:hover { transform: translateY(-1px); }
.action-btn[data-action="add-child"] { background: var(--accent); color: #000; }
.action-btn[data-action="delete-task"] { background: var(--danger); color: white; }
.action-btn[data-action="delete-task"].confirm-delete { box-shadow: 0 0 8px var(--danger); }

/* ========= NESTED TASKS ========= */
.collapse-btn { background: none; border: none; color: var(--accent); cursor: pointer; font-size: 0.8rem; padding: 0.2rem 0.4rem; margin-right: 0.5rem; }
.task-children { border-left: 2px solid var(--border); margin-left: 1rem; padding-left: 0.75rem; list-style: none; }
.task-children .task-item { background: #2f2f2f; }
.task-children .task-children { border-left-color: #444; }
.task-children .task-children .task-children { border-left-style: dotted; }

/* ========= DRAG & DROP & DELETE ZONE ========= */
.task-item.is-dragging { opacity: 0.6; transform: rotate(2deg); }
.column.drag-over, .inbox-list.drag-over { background-color: var(--accent-soft); }
.task-item.drop-target { box-shadow: 0 0 0 2px var(--accent); }
.delete-zone {
    text-align: center;
    padding: 1rem;
    background: var(--danger-soft);
    border: 2px dashed var(--danger);
    border-radius: 12px;
    color: var(--danger);
    transition: all 0.2s ease;
}
.delete-zone.active { background: var(--danger); color: white; transform: scale(1.02); }

@keyframes slideIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ========= DESKTOP & TABLET LAYOUT ========= */
@media (min-width: 768px) {
    .kanban-board {
        grid-template-columns: repeat(3, 1fr);
    }
    .strategy-item {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
    .timer-box .timer { font-size: 5rem; }
}

@media (min-width: 1024px) {
    body { font-size: 16px; }
    .app-container { padding: 1.5rem; }
    .main-content { grid-template-columns: 320px 1fr; }
    .inbox-section {
        max-height: calc(100vh - 5rem); /* Adjust based on header/footer */
    }
    #milestone-progress { width: 250px; margin-right: 1rem; }
    .strategy-bar { flex-wrap: nowrap; }
}


    /* REFACTOR: Styles moved from JS to CSS for better separation of concerns */
    .is-dragging {
        opacity: 0.5;
        background: #4a4a4a;
    }
    .drag-over {
        background-color: rgba(0, 212, 255, 0.1);
        border: 2px dashed rgba(0, 212, 255, 0.5);
    }
    .drop-target {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.7);
    }
    .hidden {
        display: none !important;
    }
    .confirm-delete {
        background-color: #ff4d4d !important;
        color: white !important;
    }
    .confirm-delete::before {
        content: "Yakin? Klik lagi! ";
    }
    .motivational-popup {
        position: fixed;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 212, 255, 0.95);
        color: #000;
        padding: 12px 24px;
        border-radius: 50px;
        font-weight: bold;
        font-size: 1.2rem;
        z-index: 10000;
        pointer-events: none;
        animation: fadeOut 2.5s forwards;
    }
    @keyframes fadeOut {
        0% { opacity: 1; transform: translateX(-50%) translateY(0); }
        80% { opacity: 1; transform: translateX(-50%) translateY(0); }
        100% { opacity: 0; transform: translateX(-50%) translateY(-20px); }
    }
    
    /* REFACTOR: New Timer UI styles */
    .sprint-timer-widget {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: rgba(20, 20, 30, 0.9);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 20px;
        z-index: 9998;
        color: white;
        text-align: center;
        width: 300px;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform: translateY(200%);
        opacity: 0;
    }
    .sprint-timer-widget.visible {
        transform: translateY(0);
        opacity: 1;
    }
    #timer-widget-task-name {
        font-size: 1rem;
        margin-bottom: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    #timer-widget-display {
        font-size: 3rem;
        font-weight: bold;
        color: #00d4ff;
        margin-bottom: 15px;
    }
    #timer-widget-controls button {
        margin: 0 5px;
    }

    /* REFACTOR: Sprint completion modal */
    .sprint-dialog-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        z-index: 9999;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .sprint-dialog-content {
        background: rgba(30, 30, 40, 0.95);
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        max-width: 400px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
