
#patchnote-container {
    margin: 20px auto;
    max-width: 48em;
    height: 15em; 
    overflow: hidden; 
    display: flex;
    padding: 4px;
}

.patchnote-card {
    flex: 1;
    display: flex;
    flex-direction: column;

    overflow: hidden; 

    background: linear-gradient(-25deg, rgba(245,166,35,0.15), rgba(255,255,204,0.1));
    border: 1px solid rgba(245,166,35,0.35);
    padding: 18px 22px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: transform .2s ease, box-shadow .2s ease;
}

.patchnote-card:hover {
    
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}


.patchnote-title {
    display: flex;
    justify-content: space-between;
    font-family: 'bignoodle', Arial, sans-serif;
    font-size: 1.3rem;
    color: #f8ba57;
    text-shadow: 0 0 8px rgba(230,111,32,0.4);
    border-bottom: 1px groove rgba(245,166,35,0.4);
    padding-bottom: 6px;
    margin-bottom: 10px;
}


.patchnote-list {
    flex: 1; 
    overflow-y: auto; 
    padding-left: 20px;
    padding-right: 12px;
    margin: 0;

    color: #ffffcc;
    font-size: 0.95rem;
    font-family: Arial, sans-serif;
}


.patchnote-list::-webkit-scrollbar {
    width: 6px;
}

.patchnote-list::-webkit-scrollbar-thumb {
    background: rgba(245,166,35,0.4);
    border-radius: 4px;
}

.patchnote-list li {
    margin-bottom: 4px;
    list-style: square;
}

.patchnote-list li.sub {
    list-style: circle;
    margin-left: 18px;
    opacity: 0.85;
}



.patchnote-enter {
    opacity: 0;
    transform: translateX(-920px);
}

.patchnote-enter-active {
    opacity: 1;
    transform: translateX(0);
    transition: opacity .35s ease, transform 0.55s ease;
}


.patchnote-nav {
    margin: 20px 0;
    width: 100%;
    text-align: center;
}

.patchnote-btn {
    padding: 8px 14px;
    background: #f5a623;
    color: #3f1b0d;
    border: 1px solid rgba(63,27,13,0.4);
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 10px;
    display: inline-block;
    transition: background .2s ease;
}

.patchnote-btn:hover {
    background: #f8ba57;
}