@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

body {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    font-family: "Poppins", sans-serif;
    color: #212121;
}

#main-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr;
    gap: 10px;
    border: 3px solid #2196f3;
    outline: 4px solid #1976d2;
    outline-offset: 2px;
    border-radius: 12px;
    margin: 10px;
    padding: 10px;
    background: linear-gradient(145deg, #ffffff 0%, #f5f9ff 100%);
    box-shadow: 0 4px 16px rgba(33, 150, 243, 0.15);
}

#canvas {
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(33, 150, 243, 0.12);
}

#fireworks-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.word-bank-wrapper {
    border-radius: 16px;
    text-align: center;
    margin: 0px;
    padding: 2px;
    width: auto;
    background: #ffffff;
    border: 2px solid #64b5f6;
    box-shadow: 0 2px 12px rgba(33, 150, 243, 0.12);
}

.word-bank-header {
    color: #1976d2;
    font-weight: 600;
    letter-spacing: 0.5px;
}

#word-bank {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #212121;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: flex-start;
    max-height: 60vh;
}

#word-bank span {
    padding: 0 10px;
}

.found-word {
    text-decoration: line-through;
    color: #9e9e9e;
}

.simple-link {
    color: #061d34;
    text-decoration: none;
    margin: 0 10px;
    &:hover {
        /* diagonal */
        transform: translateY(-2px) translateX(-2px);
        transition: all 0.3s ease;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    transition: all 0.3s ease;
}

.button-link {
    display: block;
    background-color: #1976d2;
    border: none;
    color: white;
    padding: 15px 0;
    width: 40vw;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin: 10px;
    box-shadow: 0 12px 12px rgba(0, 0, 0, 0.3);
    &:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 16px rgba(0, 0, 0, 0.25);
        transition: all 0.3s ease;
    }
    transition: all 0.3s ease;
}

.button-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.no-margin {
    margin: 0;
}

.inner-button-wrapper {
    text-align: center;
}

.a-wrapper {
    display: flex;
    justify-content: space-between;
}

.fireworks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.extra-word {
    color: rgb(71, 104, 71);
    text-decoration: line-through;
}
