@import url('https://fonts.googleapis.com/css2?family=Signika+Negative:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Molle&family=Paytone+One&display=swap');

body {
    background-color: #2E2C39;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    height: 100dvh;
    font-family: 'Signika Negative', sans-serif;
    user-select: none;
    overflow: hidden;
    position: relative;
}

@media (max-width: 768px) {
    body {
        overflow: hidden;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y pinch-zoom;
    }
}

* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

#title {
    width: 100%;
    height: 100px;
}

#title text {
    font-family: 'Paytone One', sans-serif;
    font-size: 96px;
}

@media (max-width: 480px) {
    #title text {
        font-size: 128px;
    }
}

#banner {
    width: 360px;
    pointer-events: none;
    margin-top: -24px;
}

@media (max-width: 768px) {
    #banner {
        width: 280px;
        margin-top: -16px;
    }
}

@media (max-width: 480px) {
    #banner {
        width: 220px;
        margin-top: -12px;
    }
}

.settings-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 14px 16px;
    color: #F2F2F2;
    width: 360px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: fixed;
    bottom: 16px;
}

@media (max-width: 480px) {
    .settings-card {
        width: 80%;
        padding: 10px 12px;
    }
}

.settings-title {
    font-size: 12px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(242, 242, 242, 0.6);
    margin-bottom: 10px;
}

.setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.setting-text {
    display: flex;
    flex-direction: column;
}

.setting-name {
    font-size: 16px;
    color: rgba(242, 242, 242, 0.95);
}

.setting-desc {
    font-size: 12px;
    color: rgba(242, 242, 242, 0.65);
    margin-top: 2px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: .3s;
    border-radius: 999px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #F2F2F2;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: .3s;
}

.switch input:checked+.slider {
    background: rgba(76, 175, 80, 0.3);
    border-color: rgba(76, 175, 80, 0.5);
}

.switch input:checked+.slider:before {
    transform: translate(26px, -50%);
    background-color: #E8F5E9;
}