*
{
    transition: all 0.1s ease;
    user-select: none;
}

body
{
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: #121212;
    color: #e6eef8;
    margin: 0;
    padding: 24px;
    min-height: 100vh;
}

header 
{
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 12px;
    margin: 0px;
    padding: 12px;
    white-space: normal;
}

.title
{
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 12px;
    padding: 12px;
    white-space: normal;
}

.screenshots 
{
    transition: all 0.1s ease;
    gap: 12px;
    flex-wrap: wrap;
    margin: 12px 0;
}

.link
{
    padding: 8px;
    background: #242424;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.link:hover
{
    transform: translateY(-3px);
    background: #282828;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.screenshots img 
{
    width: calc(33.333% - 5.333px);
    max-width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.06);
}

.logo:hover
{
    transform: translateX(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    background-color: #162024;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.logo 
{
    background-color: #242424;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.05s ease !important; 
    width: 128px;
    height: 128px;
    object-fit: cover; 
    display: block;
    rotate: 90deg;
}

h1
{
    margin: 0;
    font-size: 24px;
}

.container 
{
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.list 
{
    display: grid;
    gap: 10px;

}

.item 
{

    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 12px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.05s ease !important; 
}

.true:hover
{
    background: #182418;
}

.false:hover
{
    background: #241818;
}

.item:hover
{
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.name
{
    font-size: 16px;
}

.toggle
{
    font-size: 13px;
    color: #9fb6d8;
}

.keys
{
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.02);
    padding: 10px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 13px;
    color: #cfe6ff;
    display: none;
    white-space: pre-wrap;
}

input[type="text"]
{
    flex: 1;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #071022;
    color: #dff0ff;
}

button
{
    padding: 8px 12px;
    border-radius: 8px;
    border: 0;
    background: #2b6cb0;
    color: white;
    cursor: pointer;
}

.small
{
    font-size: 14px;
    color: #aaaaaa;
}

.getLinkBtn
{
    padding: 8px 10px;
    border-radius: 8px;
    border: 0;
    background: #2b6cb0;
    color: #fff;
    cursor: pointer;
}

.getLinkBtn:hover
{
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    background: #3484d9;
}

.downloadBtn
{
    padding: 8px 10px;
    borderRadius: 8px;
    border: 0;
    background: #2b8f44;
    color: #fff;
    cursor: pointer;
}

.downloadBtn:hover
{
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    background: #36b355;
}

a
{
    text-decoration: none;
    color: #aaaaaa
}

a:hover
{
    color: #cccccc;
}

.footer
{
    color: #e6eef8;
    text-align: center;
    margin-top: 36px;
}
/*:D*/