/* General background */
body {
    background: linear-gradient(135deg, #f7d358 0%, #f7971e 100%);
    min-height: 100vh;
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
}

/* Patch Notes Public Page */
.patch-notes-bg {
    max-width: 900px;
    margin: 220px auto 40px auto;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    padding: 36px 32px 32px 32px;
}

.patch-notes-title {
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 32px;
    letter-spacing: 1px;
    text-align: center;
}

.patch-notes-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.patch-note {
    background: #9dbde7;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(56,135,198,0.07);
    padding: 28px 24px 20px 24px;
    border-left: 8px solid #3887c6;
    transition: box-shadow 0.2s;
}

.patch-note:hover {
    box-shadow: 0 6px 24px rgba(56,135,198,0.13);
}

.patch-note-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.patch-note-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3887c6;
    font-family: 'Oswald', Arial, sans-serif;
    letter-spacing: 0.5px;
}

.patch-note-date {
    font-size: 1rem;
    color: #888;
    font-weight: 500;
    background: #e0f7fa;
    border-radius: 8px;
    padding: 4px 14px;
    margin-left: 12px;
}

.patch-note-content {
    font-size: 1.13rem;
    color: #222;
    white-space: pre-wrap;
}

/* Admin Patch Notes CMS */
.admin-patch-container {
    max-width: 900px;
    margin: 60px auto 40px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    padding: 36px 32px 32px 32px;
}

.admin-patch-container h1 {
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 32px;
    text-align: center;
}

.patch-note-form {
    margin-bottom: 32px;
    background: #f7f7fa;
    border-radius: 12px;
    padding: 18px 16px 10px 16px;
    box-shadow: 0 2px 8px rgba(56,135,198,0.06);
}

.patch-note-form input,
.patch-note-form textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1.08rem;
    font-family: inherit;
    background: #f9f9fc;
    transition: border 0.2s;
}

.patch-note-form input:focus,
.patch-note-form textarea:focus {
    border: 1.5px solid #3887c6;
    background: #fff;
}

.patch-note-form button {
    padding: 10px 28px;
    border: none;
    background: #3887c6;
    color: #fff;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.patch-note-form button:hover {
    background: #2566a6;
}

.patch-note-admin-list {
    margin-top: 32px;
}

.patch-note-admin-item {
    border-bottom: 1px solid #eee;
    padding: 16px 0;
    background: #f7f7fa;
    border-radius: 10px;
    margin-bottom: 18px;
    box-shadow: 0 1px 6px rgba(56,135,198,0.05);
}

.patch-note-admin-item:last-child {
    border-bottom: none;
}

.patch-note-admin-item form {
    margin-bottom: 8px;
}

.patch-note-admin-item input,
.patch-note-admin-item textarea {
    width: 100%;
    margin-bottom: 8px;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: inherit;
    background: #f9f9fc;
    transition: border 0.2s;
}

.patch-note-admin-item input:focus,
.patch-note-admin-item textarea:focus {
    border: 1.5px solid #3887c6;
    background: #fff;
}

.patch-note-admin-actions {
    margin-top: 8px;
    display: flex;
    gap: 12px;
}

.patch-note-admin-actions button {
    padding: 8px 20px;
    border: none;
    background: #3887c6;
    color: #fff;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.patch-note-admin-actions button:hover {
    background: #2566a6;
}

.patch-note-admin-actions button[style*="background:#e74c3c"] {
    background: #e74c3c !important;
}

.patch-note-admin-actions button[style*="background:#e74c3c"]:hover {
    background: #c0392b !important;
}

/* Responsive */
@media (max-width: 700px) {
    .patch-notes-bg,
    .admin-patch-container {
        padding: 12px 2vw 18px 2vw;
        border-radius: 10px;
    }
    .patch-notes-title,
    .admin-patch-container h1 {
        font-size: 1.5rem;
    }
    .patch-note-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .patch-note-title {
        font-size: 1.1rem;
    }
    .patch-note-content {
        font-size: 1rem;
    }
}