@font-face {
    font-family: 'Sintony';
    src: url('Sintony-Regular.ttf') format('truetype');
    font-weight: 400;
}
@font-face {
    font-family: 'Sintony';
    src: url('Sintony-Bold.ttf') format('truetype');
    font-weight: 700;
}

body {
    background: none;
    font-family: 'Sintony', sans-serif;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url('https://cdn.jsdelivr.net/gh/EvanBenjamin27/cdn-laughtrack/background.gif');
    background-repeat: repeat;
    background-size: 1500px 1500px;
    background-position: center;
    filter: blur(7px);
    z-index: -1;
}

.wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    position: absolute;
    width: 350px;
    height: auto;
    margin-bottom: 75px;
    pointer-events: none;
    bottom: 60vh;
    filter: drop-shadow(0 5px 3px rgba(0,0,0,0.4));
    max-width: 90vw;
}S
@media (max-width: 600px) {
    .logo {
        width: 300px;
        margin-bottom: 20px;
    }
}

.container {
    width: 320px;
    max-width: 90vw;
    padding: 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    color: white;
    box-shadow: 0 6px 28px rgba(0,0,0,0.3);
    z-index: 50;
}

.tab-bar {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.tab-btn {
    padding: 8px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s ease;
    background: rgba(255,255,255,0.18);
    font-weight: 600;
    border: none;
    color: white;
}

.tab-btn.active {
    background: rgba(255,255,255,0.32);
}

.panel {
    display: none;
}

.panel.active {
    display: block;
}

.text-input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    outline: none;
    border: none;
    font-size: 15px;
    margin-bottom: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    color: black;
    background: white;
    box-sizing: border-box;
}

.action-btn {
    width: 100%;
    padding: 10px 14px;
    background: #2563eb;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}

.action-btn:hover {
    background: #1d4ed8;
}

.icons {
    width: 36px;
    height: 36px;
    filter: invert(100%) brightness(100%);
}

#maximumPage {
    position: fixed;
    top: 10px;
    left: 10px;
    cursor: pointer;
    z-index: 999;
}