.gsv-container,
.gsv-container * {
    box-sizing: border-box;
}

.gsv-container {
    margin: 30px auto;
    padding: 24px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    max-width: 100%;
    width: 100%;
    clear: both;
    overflow: hidden;
}

.gsv-header {
    text-align: center;
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 800;
    line-height: 1.3;
}

.gsv-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gsv-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.gsv-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    border: 2px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

.gsv-card-number {
    background: #1e293b;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    flex-shrink: 0;
}

.gsv-card-text {
    font-size: 17px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
    overflow-wrap: break-word;
}

.gsv-done-btn {
    background: #f1f5f9;
    border: none;
    padding: 10px 14px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    color: #64748b;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0 auto;
    font-size: 0.85rem;
    width: 100%;
    max-width: 140px;
}

.gsv-done-btn:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.gsv-card.gsv-card-done {
    background: #f0fdf4;
    border-color: #4ade80;
}

.gsv-card.gsv-card-done .gsv-card-number {
    background: #22c55e;
}

.gsv-card.gsv-card-done .gsv-done-btn {
    background: #22c55e;
    color: #fff;
}

.gsv-floating-btn {
    position: relative;
    margin: 40px auto 10px;
    max-width: 500px;
    width: 100%;
    background: #f59e0b;
    color: #000;
    text-decoration: none;
    padding: 18px 28px;
    border-radius: 14px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 800;
    box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.4);
    z-index: 10;
    text-align: center;
    animation: gsvPulse 2s infinite;
    font-size: 1.1rem;
}

@keyframes gsvPulse {
    0% { transform: scale(1); box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 15px 30px -5px rgba(245, 158, 11, 0.6); }
    100% { transform: scale(1); box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.4); }
}

@media (max-width: 768px) {
    .gsv-container {
        padding: 16px;
    }

    .gsv-header {
        font-size: 1.25rem;
    }

    .gsv-subtitle {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .gsv-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gsv-card {
        min-height: auto;
        padding: 18px;
    }

    .gsv-card-text {
        font-size: 17px;
        margin-bottom: 15px;
    }

    .gsv-floating-btn {
        margin-top: 30px;
        padding: 16px 20px;
        font-size: 1rem;
    }
}
/* [CODE_COMPLETE] */