* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: bold;
}

body {
    background-image: url('assets/wallpapers/everestbg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    font-family: 'Montserrat', Arial, sans-serif;
    color: white;
    position: relative;
    overflow-x: hidden;
}

.topbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(30, 60, 114, 0.6);
    backdrop-filter: blur(10px);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    border: 0;
    display: flex;
    align-items: center;
}

.topbar nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0;
    align-items: center;
}

.topbar nav a {
    color: white;
    text-decoration: none;
    padding: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.topbar nav a img {
    width: 28px;
    height: 28px;
    filter: none;
}

.topbar nav a img[src*="everest.gif"] {
    width: 48px;
    height: 48px;
}

.topbar nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem 2rem 100px 2rem;
    gap: 2rem;
}

.everest-title {
    font-size: 5rem;
    font-weight: 700;
    text-transform: lowercase;
    background: linear-gradient(45deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    margin: 0;
}

.phrases {
    font-size: 1.2rem;
    color: #b0b0b0;
    text-align: center;
    max-width: 600px;
    line-height: 1.4;
    margin-top: -1rem;
    transition: opacity 0.5s ease-in-out;
}

.search-container {
    width: 100%;
    max-width: 500px;
    margin: 1rem 0;
}

.search-bar {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-bar::placeholder {
    color: rgba(255, 255, 255, 0.6);
    text-transform: lowercase;
    font-weight: bold;
}

.search-bar:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.game-icons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.game-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}

.game-icon:hover {
    transform: translateY(-5px);
}

.game-icon.most-played {
    order: -1;
}

.most-played-divider {
    width: 100%;
    order: -2;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    to { box-shadow: 0 0 30px rgba(255, 215, 0, 0.6); }
}

.game-icon img {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.game-icon span {
    font-size: 0.9rem;
    color: #d0d0d0;
    text-transform: lowercase;
}

.taskbar {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 60, 114, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    min-width: 300px;
}

.taskbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.taskbar-time, .taskbar-weather {
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
}

.settings-container {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    max-width: 1000px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.setting-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    flex: 1;
    min-width: 280px;
    max-width: 450px;
}

.setting-card h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 0 1rem 0;
    text-transform: lowercase;
}

.setting-option {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.setting-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.setting-option label:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.setting-option input[type="radio"],
.setting-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #007acc;
}

.setting-option input[type="radio"]:checked + span,
.setting-option input[type="checkbox"]:checked + span {
    color: #007acc;
    font-weight: bold;
}

body.useawp {
    background-color: rgb(15, 25, 18);
    background-image: none;
}

body.useawp .topbar {
    background-color: rgb(25, 40, 32);
    border: 1px solid rgb(70, 120, 85);
    backdrop-filter: none;
}

body.useawp .topbar nav a {
    color: rgb(225, 240, 230);
}

body.useawp .topbar nav a img {
    filter: none;
}

body.useawp .everest-title {
    color: rgb(225, 240, 230);
    background: none;
    -webkit-text-fill-color: rgb(225, 240, 230);
    text-shadow: none;
}

body.useawp .phrases {
    color: rgb(225, 240, 230);
}

body.useawp .search-bar {
    background-color: rgb(35, 60, 45);
    border: 1px solid rgb(70, 120, 85);
    color: rgb(225, 240, 230);
}

body.useawp .search-bar::placeholder {
    color: rgb(130, 170, 140);
}

body.useawp .search-bar:focus {
    background-color: rgb(50, 85, 60);
    border-color: rgb(100, 150, 110);
}

body.useawp .taskbar {
    background: rgba(25, 40, 32, 0.8);
    border: 1px solid rgba(70, 120, 85, 0.6);
    backdrop-filter: blur(15px);
}

body.useawp .setting-card {
    background-color: rgb(25, 40, 32);
    border: 1px solid rgb(70, 120, 85);
    backdrop-filter: none;
}

body.useawp .setting-card h3 {
    color: rgb(225, 240, 230);
}

body.useawp .setting-option label {
    color: rgb(225, 240, 230);
    background-color: rgb(35, 60, 45);
    border: 1px solid rgb(70, 120, 85);
}

body.useawp .setting-option label:hover {
    background-color: rgb(50, 85, 60);
    border-color: rgb(100, 150, 110);
}

body.useawp .setting-option input[type="radio"]:checked + span,
body.useawp .setting-option input[type="checkbox"]:checked + span {
    color: rgb(130, 170, 140);
}

body.cherryblossom {
    background-image: url('assets/wallpapers/cherryblossombg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

body.cherryblossom .topbar {
    background: rgba(255, 182, 193, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 182, 193, 0.5);
}

body.cherryblossom .topbar nav a {
    color: rgb(139, 69, 101);
}

body.cherryblossom .topbar nav a img {
    filter: sepia(0.5) hue-rotate(320deg) saturate(1.5);
}

body.cherryblossom .everest-title {
    color: rgb(255, 255, 255);
    background: rgba(139, 69, 101, 0.8);
    -webkit-text-fill-color: rgb(255, 255, 255);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

body.cherryblossom .phrases {
    color: rgb(255, 255, 255);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background: rgba(139, 69, 101, 0.6);
    padding: 8px 16px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

body.cherryblossom .search-bar {
    background: rgba(139, 69, 101, 0.6);
    border: 1px solid rgba(255, 182, 193, 0.4);
    color: rgb(255, 255, 255);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

body.cherryblossom .search-bar::placeholder {
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

body.cherryblossom .search-bar:focus {
    background: rgba(139, 69, 101, 0.7);
    border-color: rgba(255, 182, 193, 0.6);
}

body.cherryblossom .taskbar {
    background: rgba(139, 69, 101, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 182, 193, 0.6);
}

body.cherryblossom .taskbar-time,
body.cherryblossom .taskbar-weather {
    color: rgb(255, 255, 255);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background: rgba(139, 69, 101, 0.6);
    padding: 4px 8px;
    border-radius: 6px;
}

body.cherryblossom .setting-card {
    background: rgba(139, 69, 101, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 182, 193, 0.4);
}

body.cherryblossom .setting-card h3 {
    color: rgb(255, 255, 255);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

body.cherryblossom .setting-option label {
    color: rgb(255, 255, 255);
    background: rgba(139, 69, 101, 0.5);
    border: 1px solid rgba(255, 182, 193, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

body.cherryblossom .setting-option label:hover {
    background: rgba(139, 69, 101, 0.6);
    border-color: rgba(255, 182, 193, 0.5);
}

body.cherryblossom .setting-option input[type="radio"]:checked + span,
body.cherryblossom .setting-option input[type="checkbox"]:checked + span {
    color: rgb(255, 182, 193);
    font-weight: bold;
}

.custom-dropdown {
    position: relative;
    width: 200px;
    margin-left: 10px;
    flex-shrink: 0;
}

.dropdown-selected {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    min-width: 0;
}

.dropdown-selected:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.dropdown-selected.active .dropdown-arrow {
    transform: rotate(180deg);
}

#selected-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    margin-right: 8px;
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 30, 40, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    margin-top: 4px;
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    min-width: 100%;
    box-sizing: border-box;
}

.dropdown-options.show {
    max-height: 250px;
    opacity: 1;
    overflow-y: auto;
}

.dropdown-option {
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-option.selected {
    background: rgba(100, 150, 255, 0.2);
    color: rgb(150, 180, 255);
}

.dropdown-option[data-value="custom"] {
    color: rgb(150, 200, 255);
    font-weight: 500;
}

.setting-option {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

.setting-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

.setting-option label span:first-child {
    flex-shrink: 0;
    min-width: fit-content;
}

.custom-tab-cloak {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    margin-top: 15px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.custom-tab-cloak.show {
    max-height: 500px;
    opacity: 1;
    overflow: visible;
}

.custom-header h4 {
    color: rgb(150, 180, 255);
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-inputs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 10px 12px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(150, 180, 255, 0.5);
    box-shadow: 0 0 0 2px rgba(150, 180, 255, 0.2);
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.button-group {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
}

.save-btn {
    background: linear-gradient(135deg, rgba(100, 150, 255, 0.2), rgba(150, 180, 255, 0.1));
    border: 1px solid rgba(150, 180, 255, 0.3);
    border-radius: 8px;
    padding: 12px 20px;
    color: white;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.save-btn:hover {
    background: linear-gradient(135deg, rgba(100, 150, 255, 0.3), rgba(150, 180, 255, 0.2));
    border-color: rgba(150, 180, 255, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(100, 150, 255, 0.3);
}

.save-btn:active {
    transform: translateY(0);
}

.save-btn.success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.3), rgba(129, 199, 132, 0.2));
    border-color: rgba(76, 175, 80, 0.5);
}

.save-btn.error {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.3), rgba(239, 83, 80, 0.2));
    border-color: rgba(244, 67, 54, 0.5);
}

body.useawp .custom-dropdown .dropdown-selected {
    background: rgba(50, 85, 60, 0.3);
    border-color: rgba(100, 150, 110, 0.4);
}

body.useawp .custom-dropdown .dropdown-selected:hover {
    background: rgba(50, 85, 60, 0.4);
    border-color: rgba(100, 150, 110, 0.6);
}

body.useawp .custom-dropdown .dropdown-options {
    background: rgba(25, 40, 32, 0.95);
    border-color: rgba(100, 150, 110, 0.4);
}

body.useawp .custom-dropdown .dropdown-option:hover {
    background: rgba(70, 120, 85, 0.3);
}

body.useawp .custom-dropdown .dropdown-option.selected {
    background: rgba(130, 170, 140, 0.3);
    color: rgb(130, 170, 140);
}

body.useawp .custom-tab-cloak {
    background: rgba(50, 85, 60, 0.1);
    border-color: rgba(100, 150, 110, 0.2);
}

body.useawp .custom-header h4 {
    color: rgb(130, 170, 140);
}

body.useawp .input-group input:focus {
    border-color: rgba(130, 170, 140, 0.5);
    box-shadow: 0 0 0 2px rgba(130, 170, 140, 0.2);
}

body.useawp .save-btn {
    background: linear-gradient(135deg, rgba(130, 170, 140, 0.2), rgba(160, 190, 170, 0.1));
    border-color: rgba(130, 170, 140, 0.3);
}

body.useawp .save-btn:hover {
    background: linear-gradient(135deg, rgba(130, 170, 140, 0.3), rgba(160, 190, 170, 0.2));
    border-color: rgba(130, 170, 140, 0.5);
    box-shadow: 0 4px 12px rgba(130, 170, 140, 0.3);
}

body.cherryblossom .custom-dropdown .dropdown-selected {
    background: rgba(139, 69, 101, 0.3);
    border-color: rgba(255, 182, 193, 0.4);
}

body.cherryblossom .custom-dropdown .dropdown-selected:hover {
    background: rgba(139, 69, 101, 0.4);
    border-color: rgba(255, 182, 193, 0.6);
}

body.cherryblossom .custom-dropdown .dropdown-options {
    background: rgba(139, 69, 101, 0.95);
    border-color: rgba(255, 182, 193, 0.4);
}

body.cherryblossom .custom-dropdown .dropdown-option:hover {
    background: rgba(255, 182, 193, 0.2);
}

body.cherryblossom .custom-dropdown .dropdown-option.selected {
    background: rgba(255, 182, 193, 0.3);
    color: rgb(255, 182, 193);
}

body.cherryblossom .custom-tab-cloak {
    background: rgba(139, 69, 101, 0.2);
    border-color: rgba(255, 182, 193, 0.3);
}

body.cherryblossom .custom-header h4 {
    color: rgb(255, 182, 193);
}

body.cherryblossom .input-group input:focus {
    border-color: rgba(255, 182, 193, 0.5);
    box-shadow: 0 0 0 2px rgba(255, 182, 193, 0.2);
}

body.cherryblossom .save-btn {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(255, 200, 210, 0.1));
    border-color: rgba(255, 182, 193, 0.3);
}

body.cherryblossom .save-btn:hover {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.3), rgba(255, 200, 210, 0.2));
    border-color: rgba(255, 182, 193, 0.5);
    box-shadow: 0 4px 12px rgba(255, 182, 193, 0.3);
}

.proxy-controls {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: auto;
}

.proxy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 8px 12px;
    color: white;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.proxy-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.proxy-btn:active {
    transform: translateY(0);
}

.proxy-btn.active {
    background: rgba(76, 175, 80, 0.3);
    border-color: rgba(76, 175, 80, 0.5);
    color: rgb(129, 199, 132);
}

.proxy-icon {
    font-size: 14px;
}

.proxy-text {
    font-size: 12px;
    white-space: nowrap;
}

body.useawp .proxy-btn {
    background: rgba(50, 85, 60, 0.3);
    border-color: rgba(100, 150, 110, 0.4);
}

body.useawp .proxy-btn:hover {
    background: rgba(50, 85, 60, 0.4);
    border-color: rgba(100, 150, 110, 0.6);
    box-shadow: 0 4px 12px rgba(100, 150, 110, 0.3);
}

body.useawp .proxy-btn.active {
    background: rgba(130, 170, 140, 0.3);
    border-color: rgba(130, 170, 140, 0.5);
    color: rgb(160, 190, 170);
}

body.cherryblossom .proxy-btn {
    background: rgba(139, 69, 101, 0.3);
    border-color: rgba(255, 182, 193, 0.4);
}

body.cherryblossom .proxy-btn:hover {
    background: rgba(139, 69, 101, 0.4);
    border-color: rgba(255, 182, 193, 0.6);
    box-shadow: 0 4px 12px rgba(255, 182, 193, 0.3);
}

body.cherryblossom .proxy-btn.active {
    background: rgba(255, 182, 193, 0.3);
    border-color: rgba(255, 182, 193, 0.5);
    color: rgb(255, 200, 210);
}

.open-buttons {
    display: flex;
    gap: 10px;
    margin-left: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.open-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 8px 12px;
    color: white;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.open-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.open-btn:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 14px;
    flex-shrink: 0;
}

.btn-text {
    font-size: 13px;
    white-space: nowrap;
}

body.useawp .open-btn {
    background: rgba(50, 85, 60, 0.3);
    border-color: rgba(100, 150, 110, 0.4);
}

body.useawp .open-btn:hover {
    background: rgba(50, 85, 60, 0.4);
    border-color: rgba(100, 150, 110, 0.6);
    box-shadow: 0 4px 12px rgba(100, 150, 110, 0.3);
}

body.cherryblossom .open-btn {
    background: rgba(139, 69, 101, 0.3);
    border-color: rgba(255, 182, 193, 0.4);
}

body.cherryblossom .open-btn:hover {
    background: rgba(139, 69, 101, 0.4);
    border-color: rgba(255, 182, 193, 0.6);
    box-shadow: 0 4px 12px rgba(255, 182, 193, 0.3);
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.95), rgba(20, 40, 80, 0.98));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

body.useawp #loading-screen {
    background: rgb(15, 25, 18);
}

body.cherryblossom #loading-screen {
    background: linear-gradient(135deg, rgba(139, 69, 101, 0.95), rgba(100, 50, 80, 0.98));
}

#loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

body.useawp .loading-spinner {
    border-color: rgba(70, 120, 85, 0.2);
    border-top-color: rgb(130, 170, 140);
}

body.cherryblossom .loading-spinner {
    border-color: rgba(255, 182, 193, 0.3);
    border-top-color: rgb(255, 182, 193);
}

.loading-text {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: lowercase;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

#sj-frame {
	border: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #111;
}

#sj-error {
	color: #ff6666 !important;
	white-space: pre-wrap;
}

#sj-error-code {
	font-size: 12px;
	color: #fff;
	font-family: "Courier New", Courier, monospace;
}

#sixsevenyari {
    margin-top: 60px;
}